diff --git a/M02_MasterTemplete/M02_MasterTemplete_UI_Side.ts b/M02_MasterTemplete/M02_MasterTemplete_UI_Side.ts index f3ed0083..4150ba47 100644 --- a/M02_MasterTemplete/M02_MasterTemplete_UI_Side.ts +++ b/M02_MasterTemplete/M02_MasterTemplete_UI_Side.ts @@ -11,6 +11,7 @@ import { showConfirmDialog, showToast, } from "@ui/ui_template_elements"; +import { attachCollapsible } from "@ui/ui_template_collapsible"; import { t as L } from "@ui/ui_template_locale"; import { openModal } from "@ui/ui_template_modal"; import { @@ -24,6 +25,8 @@ import { } from "./M02_MasterTemplete_Api_Fetch"; import { canEdit, type Selection } from "./M02_MasterTemplete_UI_Main"; +/** 서버 종류 추가 전까지 `Kind` 에 없음 — 목록 응답에 있을 때만 그림 */ +const STRUCTURE = "structure" as Kind; const KINDS: { kind: Kind; label: () => string }[] = [ { kind: "table", label: () => L("M02_KindTable") }, { kind: "drawing", label: () => L("M02_KindDrawing") }, @@ -55,6 +58,8 @@ export interface SideOptions { export interface SideHandle { root: HTMLElement; refresh: () => Promise; + /** 좌측 고름 표시만 옮김 — 화면은 열지 않음 */ + select: (kind: Kind, name: string) => void; } /** 서버 이름 규칙과 같게 — 화면에서 먼저 막음 */ @@ -70,7 +75,31 @@ export function buildSide(opt: SideOptions): SideHandle { let items: TemplateInfo[] = []; let seq = 0; - const listHost = el("div", { className: "m02-side__lists" }); + let picked: { kind: Kind; name: string } | null = null; + + const section = (title: string, body: HTMLElement, ...more: HTMLElement[]): HTMLElement => + el("section", { + className: "m02-side__group ui-collapsible ui-sidebar-section", + children: [el("h3", { className: "ui-collapsible__title", text: title }), body, ...more], + }); + const bodies = new Map( + [...KINDS.map((k) => k.kind), STRUCTURE].map((k) => [ + k, + el("div", { className: "m02-side__items" }), + ]), + ); + const listHost = el("div", { + className: "m02-side__lists", + children: [ + section(L("M02_KindTable"), bodies.get("table")!), + section( + L("M02_KindDrawing"), + bodies.get("drawing")!, + section(L("M02_KindStructure"), bodies.get(STRUCTURE)!), + ), + ], + }); + attachCollapsible(listHost); const btnNew = createButton({ label: L("M02_New"), variant: "filled" }); const btnCopy = createButton({ label: L("M02_Copy"), variant: "ghost" }); @@ -80,6 +109,7 @@ export function buildSide(opt: SideOptions): SideHandle { const root = el("div", { className: "m02-side", children: [listHost, editRow] }); const isOpen = (info: TemplateInfo): boolean => { + if (picked) return picked.kind === info.종류 && picked.name === info.이름; const cur = opt.getOpen(); return !!cur && cur.layer === layer && cur.kind === info.종류 && cur.name === info.이름; }; @@ -90,28 +120,22 @@ export function buildSide(opt: SideOptions): SideHandle { }; function paintList(): void { - listHost.replaceChildren( - ...KINDS.map(({ kind, label }) => { - const mine = items.filter((i) => i.종류 === kind); - return el("div", { - className: "m02-side__group", - children: [ - el("h4", { text: label() }), - ...(mine.length - ? mine.map((info) => { - const b = el("button", { - className: `m02-side__item${isOpen(info) ? " is-active" : ""}`, - text: info.이름, - attrs: { type: "button", title: info.수정일 }, - }); - b.addEventListener("click", () => void select(info)); - return b; - }) - : [el("p", { className: "m02-side__empty", text: L("M02_NoTemplates") })]), - ], - }); - }), - ); + for (const [kind, body] of bodies) { + const mine = items.filter((i) => i.종류 === kind); + body.replaceChildren( + ...(mine.length + ? mine.map((info) => { + const b = el("button", { + className: `m02-side__item${isOpen(info) ? " is-active" : ""}`, + text: info.이름, + attrs: { type: "button", title: info.수정일 }, + }); + b.addEventListener("click", () => void select(info)); + return b; + }) + : [el("p", { className: "m02-side__empty", text: L("M02_NoTemplates") })]), + ); + } } function paintButtons(): void { @@ -123,6 +147,7 @@ export function buildSide(opt: SideOptions): SideHandle { async function select(info: TemplateInfo): Promise { if (!isOpen(info) && !(await opt.confirmLeave())) return; + picked = null; opt.onOpen({ layer, projectId: null, kind: info.종류, name: info.이름 }); paintList(); paintButtons(); @@ -218,5 +243,12 @@ export function buildSide(opt: SideOptions): SideHandle { }); void refresh(); - return { root, refresh }; + return { + root, + refresh, + select: (kind, name) => { + picked = { kind, name }; + paintList(); + }, + }; } diff --git a/M02_MasterTemplete/M02_MasterTemplete_UI_Style.css b/M02_MasterTemplete/M02_MasterTemplete_UI_Style.css index 545eda43..b3c80cb2 100644 --- a/M02_MasterTemplete/M02_MasterTemplete_UI_Style.css +++ b/M02_MasterTemplete/M02_MasterTemplete_UI_Style.css @@ -12,10 +12,10 @@ gap: var(--spacing-4); } -.m02-side__group h4 { - margin: 0; - color: var(--color-text-muted); - font-size: var(--text-body-sm); +.m02-side__items { + display: flex; + flex-direction: column; + gap: var(--spacing-4); } .m02-side__item { diff --git a/resources/master_template/drawing/01_template_Longitudinal_Yaxis_scale.json b/resources/master_template/drawing/01_template_Longitudinal_Yaxis_scale.json deleted file mode 100644 index 1ed04829..00000000 --- a/resources/master_template/drawing/01_template_Longitudinal_Yaxis_scale.json +++ /dev/null @@ -1,123367 +0,0 @@ -{ - "format": 6, - "source": "01_templete_Longitudinal_Yaxis_scale.dxf", - "entities": [ - { - "id": "ce14d1c9-c7a8-588e-b5f3-ac0ec1bc294a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2464.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2464.164981814357 - } - } - }, - { - "id": "0fc20bbc-3881-50fd-a884-03260963c484", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2464.164981814357 - }, - "endPoint": { - "x": 59.19871930318277, - "y": -2599.164981814357 - } - } - }, - { - "id": "2dfa55a2-a513-5b6d-ab0a-77ed1d5ead83", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2599.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2599.164981814357 - } - } - }, - { - "id": "ced57931-d98a-5389-afa7-d72abcb25bd5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19873907897943, - "y": -2599.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2464.164981814357 - } - } - }, - { - "id": "f95e35c6-229d-5f91-97c1-1656e6e2faf8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2584.164981814357 - } - } - }, - { - "id": "4ea4f493-b06d-5818-8e3b-76978d4de62d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2569.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2569.164981814357 - } - } - }, - { - "id": "cac47e5c-02d1-5fc3-b9ae-16b9d613316b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2554.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2554.164981814357 - } - } - }, - { - "id": "31146df4-4f4a-5bfa-a861-4c07c695213f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2539.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2539.164981814357 - } - } - }, - { - "id": "c0e0490d-ef94-5907-8876-0c956048cc92", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2524.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2524.164981814357 - } - } - }, - { - "id": "7a0fd0c8-160f-59b1-b95f-27f07a2bad6a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2509.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2509.164981814357 - } - } - }, - { - "id": "8c4cb968-ca88-5455-b5de-914a691bc37c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2494.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2494.164981814357 - } - } - }, - { - "id": "d59fc6cd-0da5-5f27-8bd1-053f34b4a07c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2479.164981814357 - } - } - }, - { - "id": "725123bb-0dab-50ec-bc3e-4fa21a50a0ab", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "곡 선", - "basePoint": { - "x": 69.198729, - "y": -2591.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e3487ceb-7748-5274-9c88-1634a9c6f391", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "측 점", - "basePoint": { - "x": 69.198729, - "y": -2576.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "45592748-bdcc-5dcd-a1a6-7caa36f1d887", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "거 리", - "basePoint": { - "x": 69.198729, - "y": -2561.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "af4ec1a2-8629-5f61-8ae5-87be09fe5e7d", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "누가거리", - "basePoint": { - "x": 69.198729, - "y": -2546.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a2584a95-2be7-5b65-8aa6-66bb1dc574c7", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "지반고", - "basePoint": { - "x": 69.198729, - "y": -2531.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "de9c91a4-1595-5986-9e2c-529e78fe93a0", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "계획고", - "basePoint": { - "x": 69.198729, - "y": -2516.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "767e8a42-e8f0-5998-9a38-cde5c8913107", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "성토고", - "basePoint": { - "x": 69.198729, - "y": -2501.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "93d5c427-dbab-5418-bbf1-974c26aadcfc", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "절토고", - "basePoint": { - "x": 69.198729, - "y": -2486.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4f1949e7-e672-5258-a197-1ad86588fd4a", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "구 배", - "basePoint": { - "x": 69.198729, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "195e56bf-40c3-5aca-bc78-f336a24dbf56", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 54.19871930318277, - "y": -2606.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2606.164981814357 - } - } - }, - { - "id": "08f01112-862d-52f3-bce0-1b16e2de407b", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H= 1 : 1000", - "basePoint": { - "x": 67.698719, - "y": -2605.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 2.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c987f238-0984-50e5-99e9-d4898fc7622b", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 54.19871930318277, - "y": -2606.164981814357 - }, - "endPoint": { - "x": 54.19871930318277, - "y": -2581.164981814357 - } - } - }, - { - "id": "45a6bde4-d9b4-5698-af8e-b7a1494eaceb", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "V= 1 : 200", - "basePoint": { - "x": 53.698719, - "y": -2592.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 2.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "79925413-f982-5737-98e4-1b43ec0789e5", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "1107d5cd-ac90-50aa-9c76-e214849556a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2599.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2464.164982 - } - } - }, - { - "id": "24f02c33-8b12-55b1-ae5c-a0cc87db9836", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2464.164982 - }, - "endPoint": { - "x": 704.198719, - "y": -2464.164982 - } - } - }, - { - "id": "2527c24a-06f2-52e6-9ba2-3d76e6622d66", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 704.198719, - "y": -2464.164982 - }, - "endPoint": { - "x": 704.198719, - "y": -2599.164982 - } - } - }, - { - "id": "bdb69063-9dfd-5627-99b8-e85df2757740", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 704.198719, - "y": -2599.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2599.164982 - } - } - } - ] - }, - { - "id": "db689eb9-10a6-5d96-bb0d-6f7b49646bed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2584.164981814357 - } - } - }, - { - "id": "0ee62eba-3948-5629-9c3d-5a547dd9decf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2569.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2569.164981814357 - } - } - }, - { - "id": "c1f7664d-274b-5871-88ba-4dd7565bdf4a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2554.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2554.164981814357 - } - } - }, - { - "id": "612eec6e-c2f4-5ce7-a98b-ac3faa0ea232", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2539.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2539.164981814357 - } - } - }, - { - "id": "dae86f40-0181-5daf-83d9-c62b0dbcc372", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2524.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2524.164981814357 - } - } - }, - { - "id": "6a6d75d2-ebc6-5bb9-ae04-aeafb01a8ee8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2509.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2509.164981814357 - } - } - }, - { - "id": "5f27ede6-2fea-5b16-8691-4c00372be7a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2494.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2494.164981814357 - } - } - }, - { - "id": "eb1a12e3-0563-51e9-91d7-cf669e08ccdc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "9cea0319-0f17-59fd-942a-9eef085a6aec", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2297.364981814358 - } - } - }, - { - "id": "133e80e5-746e-5b15-bbaa-f4d4ff697108", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2583.664981814357 - } - } - }, - { - "id": "b9f5dad2-6f3c-5e84-9c64-1d850ac05fa9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.120", - "basePoint": { - "x": 89.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cca70b77-14f2-5bf8-8247-b0e46a725c62", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2568.664981814357 - } - } - }, - { - "id": "ebed72ea-6694-5f74-95d3-a9624f117c14", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2553.664981814357 - } - } - }, - { - "id": "2bc62510-4e30-57eb-afbd-7777fa23342d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2400.00", - "basePoint": { - "x": 89.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "353ff874-1cdf-5483-b24f-47aca536022c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2538.664981814357 - } - } - }, - { - "id": "9c2cd65c-39e8-5c78-8381-00e851c3b68f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "410.36", - "basePoint": { - "x": 89.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "99a3ad76-15c7-5a50-a0b8-779cd9381863", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2523.664981814357 - } - } - }, - { - "id": "333ad301-b1e7-5e9b-be10-8e5c4a438697", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "409.96", - "basePoint": { - "x": 89.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fae32b89-7e09-58e1-89ac-106582c3cbb9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2508.664981814357 - } - } - }, - { - "id": "0888ce32-410e-5fec-9766-ec282218e29a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2493.664981814357 - } - } - }, - { - "id": "c3ba2a8e-accc-5d47-8d16-5d07cec11a6e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.40", - "basePoint": { - "x": 89.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4ba7fe87-ad88-5505-a7ce-ea3a003b87e1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2479.164981814357 - } - } - }, - { - "id": "4b1f52ca-bdd8-51c8-8530-2b3f8c61bfb4", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2306.864981814358 - } - } - }, - { - "id": "56f657b3-747e-5371-8052-7a3b650321f0", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2297.364981814358 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2306.864981814358 - } - } - }, - { - "id": "66e1ab68-1875-5e07-aaa6-4505fcf875c4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "7170c6f8-ea8d-518d-b455-1a43ac3aeba3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+18", - "basePoint": { - "x": 107.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9f53f7e1-88bf-5bb7-8972-b287c3cfc9b9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "495b68d4-bbb2-5596-9743-0fdfa02a6a21", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "18.00", - "basePoint": { - "x": 107.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c9d9bcad-7535-5ec9-9ca7-3e2b2d1e8fde", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "d2047ac5-3863-58ae-9bbc-17cab107988f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2418.00", - "basePoint": { - "x": 107.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "49428352-c273-5e2e-afd0-1c157f995d9e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "cc66783c-2a06-55c1-91c4-53e8a22245d7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "408.46", - "basePoint": { - "x": 107.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c724a1d3-306f-5a03-b916-43178507bd51", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "941f8971-5907-5f06-8d32-e0671c91e1df", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "409.10", - "basePoint": { - "x": 107.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "90260ce9-aac5-5d5f-a5e3-1561b39255ca", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "680cb664-2961-5954-88f2-b986d62f477f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.64", - "basePoint": { - "x": 107.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f962ddad-2161-540f-be5b-94c24b93f667", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "bb97c89a-260a-53cf-b256-02aa49e5eb9c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "6e495236-60fe-5e44-b57f-d38b81f1619e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2306.814981814357 - } - } - }, - { - "id": "fa49b5c9-1b7e-572d-88cc-7d6af8d07c26", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2306.864981814358 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2306.814981814357 - } - } - }, - { - "id": "9c001617-cc04-5963-a675-53aebfd91a33", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "bcf002aa-83e4-5c4a-8d98-c633643f1c6f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.121", - "basePoint": { - "x": 109.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e59e1761-ca6d-50da-8f49-27c3cb175bd5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "23e29b8e-808d-5d4b-82b5-8b2892901ca7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.00", - "basePoint": { - "x": 109.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "def1b402-f44f-5028-878c-686bcf358c8c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "c2f928d7-9560-51da-b279-88b6ad1d4a76", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2420.00", - "basePoint": { - "x": 109.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b7f0ceba-db69-586f-9b59-b49f694e0a53", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "9e274bf3-cbe6-5f52-8984-14d823b29b2b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "408.47", - "basePoint": { - "x": 109.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e630d6f2-f111-5cf7-a5bb-523e83af239f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "bde4b16b-b7e7-5151-83fa-e502957f66db", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "409.01", - "basePoint": { - "x": 109.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "66b75405-192d-55fc-bcd5-69538aea7cc6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "342440a8-f4b5-540e-bbd2-0340ef192476", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.54", - "basePoint": { - "x": 109.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "72e9b6f7-3f1f-5078-9a9b-e6acfbe4d705", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "270dc157-4930-545a-9f03-89835ca43d1b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "e71ed92e-5a8e-53ad-b17c-bff2fc94e7c7", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2303.364981814358 - } - } - }, - { - "id": "4f709095-4c6e-5800-af9b-3f86560fbc9e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2306.814981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2303.364981814358 - } - } - }, - { - "id": "81bdaf2a-ad97-5dc6-92bc-7ac5671b30ed", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "2b7e3928-6425-525b-bed9-67aa137a7db2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.122", - "basePoint": { - "x": 129.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1b5cbc2d-f8b8-53eb-89ab-9ef6a4579d21", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "9f15443b-4ab8-58d8-92d4-866b2795ee7a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 129.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c41ec567-1f18-558a-ba6c-ce1c353d7a8f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "611f4f7b-a49e-51f5-8de1-0fb6625ef004", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2440.00", - "basePoint": { - "x": 129.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6dff891b-1931-54f0-aee4-c51ef51253f1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "799bf0b4-ea96-5116-b47a-674d13b587b9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "409.16", - "basePoint": { - "x": 129.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "05dbac61-267c-56a6-9f4e-cbdf3eba2e09", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "8dafb2b8-e79c-5909-8733-c6389af5138f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "408.05", - "basePoint": { - "x": 129.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "413d84a2-79a0-5a45-832b-0441bdf957af", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "3fbca227-1fcc-5a17-a36e-a9a776061c63", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "8e9f0972-62f7-55b3-b620-84c0c771fa1e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.11", - "basePoint": { - "x": 129.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6fa7c011-0ac7-5738-8973-9d6d5040839a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "3960fde6-fcfd-558c-901f-2c8057e016c8", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2307.814981814357 - } - } - }, - { - "id": "e5531b02-09ce-55bf-b213-aedbcc4f3412", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2303.364981814358 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2307.814981814357 - } - } - }, - { - "id": "f657ac3e-a837-551b-8d6b-4aa66750f313", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "3ba6f22c-20dc-578a-976a-278f0b35ad37", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.123", - "basePoint": { - "x": 149.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b59bad34-5176-5dcf-9609-d0ec90362105", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "046b4565-2865-5024-91aa-43881f040b27", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 149.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f1059b04-ce7f-538b-b19c-5b4f83d1a3c9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "e262262e-aa16-588a-bc66-d0f308826acc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2460.00", - "basePoint": { - "x": 149.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "be027273-1815-59b3-b1cf-1b83ce17eaa6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "d32f4f65-0755-57c3-ad91-3ca45d497158", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "408.27", - "basePoint": { - "x": 149.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "75d65d84-538b-5853-b344-eb7c6a18252d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "95a5d37e-fc4b-51b6-91df-8c08404dc3ea", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "407.10", - "basePoint": { - "x": 149.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "baffb0c6-32d6-5058-99a3-ffa4273378ba", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "f35c8a4e-5f8c-5369-8cc3-ae5cc0d39a7c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "eaf6dc88-5ed2-5fe2-bfaf-6c8409ebf61e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.17", - "basePoint": { - "x": 149.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f2f05dac-6012-53d8-a1f5-29546e9af945", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "4175aeb1-c122-5bf8-a09b-092e0660f1e6", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2312.314981814357 - } - } - }, - { - "id": "33817b3e-41de-5188-848c-d133617d0398", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2307.814981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2312.314981814357 - } - } - }, - { - "id": "51b996cf-957e-5868-a478-2928beca392a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "a5904595-f568-5a4d-9b3d-e6d0a38a4c39", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.124", - "basePoint": { - "x": 169.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7bb77fb6-7f1b-5ddd-a05f-3630f094c1ab", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "18763bef-2229-5a39-9aa4-e384e9a832bb", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 169.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a847481e-22f9-5b1c-a026-06728cb9dae0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "431a9a98-133d-5682-8f1a-b7d3b4aa68d6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2480.00", - "basePoint": { - "x": 169.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "17588d65-039f-5acc-9be7-29f883e9b12a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "66f26c55-f692-5cd0-b011-fe35404a3e08", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "407.37", - "basePoint": { - "x": 169.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "930eee80-e072-55b7-9f27-1d53312f1026", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "f09318a9-e23e-5ebc-865d-2ecd2ad7c2a2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "406.12", - "basePoint": { - "x": 169.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1ea9fddc-1eda-5f10-8f93-4718c6ef1f65", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "a97eb13b-0d38-52e8-b319-14a350a1176f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "d1607905-0112-50ab-9e4d-db9f821fc12f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.25", - "basePoint": { - "x": 169.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ad926301-6e44-5b27-a960-8a4b62f89241", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "94320cca-2f0d-558b-8b66-4d206fb57f46", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2316.814981814357 - } - } - }, - { - "id": "753c2f96-d857-5941-b535-37a9a01e8635", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2312.314981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2316.814981814357 - } - } - }, - { - "id": "a86c25e8-408a-519c-8b72-078724a59a81", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "41686c03-0317-5c92-85be-95db352cc8f9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.125", - "basePoint": { - "x": 189.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "64a5cdaa-d489-5fdd-a4d8-a064be5e85d8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "1b4b03ec-5ea4-5892-bdf8-37b8d65f4b21", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 189.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c5eda67e-0a62-58a3-88e0-231398ff309a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "da3c41ef-c460-5fa3-b240-4f50438308a6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2500.00", - "basePoint": { - "x": 189.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "33bea98a-194a-5582-b979-dfaa3c3e590f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "a7448140-7015-51d4-ab5b-7b557b58351a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "406.47", - "basePoint": { - "x": 189.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3daa2030-1f04-50f6-bb8c-61831340a060", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "008cd64c-cc17-5e4c-ad54-0774dce71b0d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "405.17", - "basePoint": { - "x": 189.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "88419a7c-f8c0-596d-9b2d-b53d52183bc4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "53fbab71-2569-5a0b-8aa0-ac4a0b8dfd18", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "dc369f80-5408-5c4e-97b7-8f6c21aa227c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.30", - "basePoint": { - "x": 189.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2b33c5b3-7f1c-51db-91b3-646ce5319c1b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "832c1f10-83f1-51a8-847d-a32889321ad2", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2336.714981814358 - } - } - }, - { - "id": "ed5e7c84-9c64-5450-b051-e7616f16b433", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2316.814981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2336.714981814358 - } - } - }, - { - "id": "52e1ab5b-02e4-5a80-9120-4509f3b02682", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "f6e727bf-991f-59de-ac4f-fb23f6257bde", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+15", - "basePoint": { - "x": 204.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2aaba4ff-2551-54bf-b327-adbb08a29813", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "9c1f1c76-16b5-5ca1-8e64-347bafd132ca", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "15.00", - "basePoint": { - "x": 204.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c0d57b7d-3aa3-50b2-8cfe-9a3b46a31b0f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "bd2e5e45-ec2c-5e59-90b3-3631153284f9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2515.00", - "basePoint": { - "x": 204.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6d99de9a-4355-5a3a-a64a-82847506053d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "d4e1b881-b7bd-5060-baf6-0463ccc27ab5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "402.49", - "basePoint": { - "x": 204.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "80af8059-feed-5af0-939b-15ae0648975c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "15e69a7b-13c9-59bf-b08f-87e9b095d4a2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "404.96", - "basePoint": { - "x": 204.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b605e35b-74d1-5c34-b626-5211d0e83ede", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "c85e8b4d-4b67-5bcc-97d2-4ca2520bac17", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.47", - "basePoint": { - "x": 204.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "887f8164-e175-582f-a3ac-1aa760773e84", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "d1acecdd-2f69-5acf-82aa-d9be9900d739", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "db2fb44a-ea53-5b81-b1dd-fceaeb4f0cde", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2314.464981814357 - } - } - }, - { - "id": "8e8f5327-7b4f-504f-bbb5-3e02e0f91684", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2336.714981814358 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2314.464981814357 - } - } - }, - { - "id": "8d8d6afd-a854-5aa4-b899-6b71ffc22f4b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "0e9b76df-71c6-511b-ae31-1b44e932e7f7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.126", - "basePoint": { - "x": 209.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b8cbd2fe-65a7-56fe-8a9f-57a68a38e11e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "d4187061-d9df-5a97-a386-bccbe3e94739", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "5.00", - "basePoint": { - "x": 209.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b4eecfe7-dc74-5b56-9a29-65f120f79dee", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "306efae0-663c-5cc4-a7ac-8c9cf893aa7c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2520.00", - "basePoint": { - "x": 209.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "004f229e-38f3-566d-a27b-c8119e898879", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "8accc9c5-99d8-5efb-a895-3a8dd838642d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "406.94", - "basePoint": { - "x": 209.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e7d9fa55-ae49-58d4-88d9-e77b5521c1d4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "e391f660-a7b4-5533-94ef-f08f26801c45", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "405.02", - "basePoint": { - "x": 209.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bd2732c0-f39e-547b-830c-57fe500b883e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "0c84432e-57fa-5b25-b281-47ed55b144bc", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "75c547bf-6445-552a-a230-19eeca8d861b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.92", - "basePoint": { - "x": 209.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "96e35b93-e8c6-5c35-b510-e2afbb7ee6b8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "7fac202e-8b80-5588-af54-cb2a125d7caf", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2324.364981814358 - } - } - }, - { - "id": "58ce7323-e65b-5734-8c49-6a1078d3eaf6", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2314.464981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2324.364981814358 - } - } - }, - { - "id": "64fdb397-cabc-50ab-83ca-addb9051be90", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "e01e8695-68f4-5ddc-b2a5-d4c2abb81a85", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+12", - "basePoint": { - "x": 221.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b5d84f29-dcfc-51b1-8dbf-7be3c2b56b2b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "e972bf0d-7c4b-57dc-926a-bc26c7ee02b7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "12.00", - "basePoint": { - "x": 221.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "66241523-7949-5117-aa06-bc9c4b222c66", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "7dc59dfb-e889-5a2e-b62e-dea9ad235264", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2532.00", - "basePoint": { - "x": 221.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6553a1aa-188e-575a-8011-84e7204ee6d6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "31e01f81-1f65-5164-9554-ad5e8d38e0b3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "404.96", - "basePoint": { - "x": 221.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "772dec9d-fd07-54f3-92a0-34a14460d927", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "564b3cf4-dc4d-5a31-ae6e-8b0573cfb1ab", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "405.47", - "basePoint": { - "x": 221.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2e167b0a-78b3-52de-9584-2b09c7a8d1df", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "c151fa3c-de45-5ee6-821c-583f3b00938f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.51", - "basePoint": { - "x": 221.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2b2a5e15-b823-5056-a225-678badec23f1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "b4b1a52f-6bef-5021-88b8-9523567327c1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "b6155ffe-23b5-5869-b3dc-e4b819d9c70f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2316.914981814357 - } - } - }, - { - "id": "a025672c-c748-5a4b-a916-8a5b2f48a38b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2324.364981814358 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2316.914981814357 - } - } - }, - { - "id": "5aa4e28c-39d7-50da-935f-45d6e0e5c93a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "021e0e56-e96c-51d6-a0c5-fe656a91c10b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.127", - "basePoint": { - "x": 229.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d139c4e0-e278-57af-92f4-fbe29c59c770", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "dcd51bbf-9fca-5093-a8a2-704108bedd02", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "8.00", - "basePoint": { - "x": 229.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8f26a802-3f3a-53d0-a3d4-4e22da41e2d6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "54b546bc-9770-580e-bf2d-3c24ee439d71", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2540.00", - "basePoint": { - "x": 229.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b88213d2-b1f0-5a5b-ab6a-a08e843e169c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "57555baf-004d-5906-9e6b-6833c341b30a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "406.45", - "basePoint": { - "x": 229.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f0f35a71-33cc-5a53-87ea-30bd87298748", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "24a28e0b-8eca-52cc-b153-9bc1e27f4761", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "405.96", - "basePoint": { - "x": 229.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "073e4412-125c-554d-9f8b-c843047812ff", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "d7796650-aef5-5df0-98d3-5cb8b4e302d6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "65b146a8-2446-550d-a378-92a26403e288", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.49", - "basePoint": { - "x": 229.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "99d565e0-7d64-511d-9a2d-d675575410ab", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "0ed26f0e-d747-56f2-ac9b-ca68b1c4c22e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2298.814981814357 - } - } - }, - { - "id": "f96ec89e-82ab-5375-9b6a-6adc6cf1d4cb", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2316.914981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2298.814981814357 - } - } - }, - { - "id": "43578894-2802-5088-a3a7-eb45a8a8edb7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "3084e2e2-0ad3-504c-9ec3-6257674cab86", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.128", - "basePoint": { - "x": 249.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a10779cd-6597-5548-8da2-459cfabd2e06", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "270647a3-4d19-593d-9c51-a5fc262746c0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 249.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8b229188-4685-5ab6-aab0-116eb8f35653", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "0a276f03-4aee-5f6e-9ff7-260d7613086c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2560.00", - "basePoint": { - "x": 249.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "31bfd269-112c-5e66-bb30-0288a6483e2c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "4a166c64-253a-5594-aa5e-a8e9041f1308", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "410.07", - "basePoint": { - "x": 249.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7fae5074-4f38-5aa3-9235-86cc4009ac9e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "ec4af81a-5f50-5728-a3f4-193ef272e415", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "406.45", - "basePoint": { - "x": 249.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "50ba1a25-069a-5505-9f5d-722c9caa4635", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "3a061570-1fbe-55ef-aa1f-1f1beae9b936", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "fdbed166-41c7-573d-b1ab-9f37a1f16f89", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.62", - "basePoint": { - "x": 249.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9e20d65d-11dc-5ee6-b994-097f59ba1def", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "3d09742a-286c-56ae-8fcf-e7ae16f247f8", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2311.464981814357 - } - } - }, - { - "id": "47799469-6f88-51a8-a1f5-fa2aa586a1fd", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2298.814981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2311.464981814357 - } - } - }, - { - "id": "6094011a-ed20-5e04-afce-948bda36c168", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "228c61d9-b58d-5494-a0ac-970428f9c5f5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.129", - "basePoint": { - "x": 269.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d111351f-019b-5ce8-b62f-99d6fccc8e8b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "50448234-1f05-5846-97d6-150c07f29d60", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 269.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c5bb45c6-efa8-5a76-974d-eb9c810f0351", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "9d4da29a-b6c7-5fbb-98eb-d5874b08ff3b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2580.00", - "basePoint": { - "x": 269.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "219d326e-f70c-5b66-932a-3c6f206f1193", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "b3770ff0-77ec-51dc-8442-949c4c20fd6d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "407.54", - "basePoint": { - "x": 269.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2411f89b-4e06-5f04-bcdf-063e4cc9ba0f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "854ed8ea-c9fe-5702-9323-4f0dabea5c66", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "405.43", - "basePoint": { - "x": 269.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "57c03e48-7b17-5200-b689-d086aafb6af7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "e1f4b273-7775-5afe-9aed-6e90a376c80a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "27d07e8e-6e1e-5e8f-8c2d-6e7b4ffcc711", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.11", - "basePoint": { - "x": 269.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "50638fc6-6de4-593e-b9cb-e08ac98ea57d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "85c48796-fc34-56e6-8570-bddb0120f90b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2326.064981814357 - } - } - }, - { - "id": "9fbdea8b-49fa-5284-bb30-90ce2fc96b52", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2311.464981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2326.064981814357 - } - } - }, - { - "id": "6b33ef93-1c87-50e9-b235-7a96b84bb816", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "24499e47-b055-51be-8c19-137f840ca415", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.130", - "basePoint": { - "x": 289.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f88eff9a-9acc-5b2a-9b18-35677477d0e5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "5e061d52-b55c-53e4-ac49-7f3d82c4ee5b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 289.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "728881f9-4fcc-5c9d-ba76-3970d8828e8e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "a4fd5de7-a12a-5852-a5ca-87353e2e7b7e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2600.00", - "basePoint": { - "x": 289.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "63061e66-d378-5876-8587-ad3f5f95dfd2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "cf92a764-a24a-5626-bd56-bddc691287b5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "404.62", - "basePoint": { - "x": 289.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "03529b9b-daa8-51d3-a6c7-e28553275887", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "efd36fc9-7f19-50da-a38b-b27c33ee81d4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "403.67", - "basePoint": { - "x": 289.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cc7de56a-02ec-52e5-bdc2-3b9d5cf6d892", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "7559728b-6b0b-58d9-928d-ef7268b08e65", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "0a7a3e02-4d48-5858-9c62-bea203436f5f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.95", - "basePoint": { - "x": 289.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f80beda0-3284-5543-ac40-55a3b5fa5fd4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "e178ae0a-713c-5209-8f18-c1ef064b0865", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2334.414981814357 - } - } - }, - { - "id": "56a09026-668c-5a50-8e85-5bb2d40225d5", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2326.064981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2334.414981814357 - } - } - }, - { - "id": "04fe4e53-5e34-54ac-a006-ca07636d03df", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "d71858fa-78f6-506d-9ee0-42a85f9509a8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.131", - "basePoint": { - "x": 309.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cf524f83-e116-59c7-b4b6-c3ccde43f358", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "7a02eefd-447f-5e7a-88f1-76a68e977ab4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 309.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ba3f92f4-023d-58e2-9a04-77d36a668ad2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "26b2fd49-0bd7-57d4-9cbb-421355470e59", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2620.00", - "basePoint": { - "x": 309.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8b2aaa6b-ec47-579b-821e-2b5f4a597b88", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "64867d49-d7f3-599e-8d35-9d1af8c59a65", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "402.95", - "basePoint": { - "x": 309.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "10159c92-d87b-539a-af65-3a149204d2ac", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "60a9a3ea-f47a-58de-b21a-ddb8a1d56e1f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.90", - "basePoint": { - "x": 309.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a2f732a7-baf4-55d5-b71a-0a0402c77692", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "f6654079-9e18-5945-998c-a66ac34b3d6f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "7f123837-5d48-5f5a-8932-4050983e7540", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.05", - "basePoint": { - "x": 309.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ccd8bd9c-3857-5d16-a9a5-e05b46446538", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "9bd4022d-91fc-5b3d-b3e5-63259f09b1e6", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2340.364981814358 - } - } - }, - { - "id": "bacc0a15-5aeb-58db-9abe-8c73a827444a", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2334.414981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2340.364981814358 - } - } - }, - { - "id": "fcb7a344-ab26-58ec-b23b-69644aeae07d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "a690de09-1b0a-5e9c-984a-8ab145300a8e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.132", - "basePoint": { - "x": 329.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "065acf64-8e0e-5a53-a296-43445e037d46", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "fc2a2cf2-7d3c-545f-b0a1-cee2c061703d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 329.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c07e776e-241c-580d-8a1e-2b25c30c36fc", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "c763c2ae-c174-5810-b10c-1a52404f9af2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2640.00", - "basePoint": { - "x": 329.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "20191a2d-a2a7-5714-aa08-a15ffff3b338", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "c70a651a-55a4-5b05-bc98-7770656240bd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.76", - "basePoint": { - "x": 329.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c6cb4b91-2a00-5f57-9eec-5ead8a1c4c2b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "f7c53ca2-cfb9-5662-a3c7-3b49c0667a13", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.86", - "basePoint": { - "x": 329.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "203e459b-67bf-5b1b-83d8-26bee4b4b2e9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "b1d8f1c0-3d67-5336-b414-3578d36eb7c2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "1c3591fc-8680-54a3-9b90-7fa8daec1c34", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.90", - "basePoint": { - "x": 329.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4b8d5ea6-8b78-52db-a2f9-3b8c3712b279", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "c123123d-ebb7-52d3-8c4f-75354b4c9129", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2350.364981814358 - } - } - }, - { - "id": "82313f43-0bf9-5b84-a347-76818026773c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2340.364981814358 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2350.364981814358 - } - } - }, - { - "id": "a5e0f5e4-6bd4-5812-8bd0-25cbe9f1dc24", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "6ac36baf-c548-5599-bbdc-f8b2cfb3408e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.133", - "basePoint": { - "x": 349.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "dd0065e8-0f29-512b-9fac-3a749aae9287", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "8a545f30-5ed9-56cc-91d9-1d3e772b82c1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 349.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "40a9d0af-d032-5f3d-b4dc-43b830787078", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "2a5de228-2d85-5ea6-bf20-7de3b19e40d3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2660.00", - "basePoint": { - "x": 349.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "aad26415-db16-5f53-a44c-3eb6d55d154a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "418543c5-c2b8-5658-9a07-478e52068ad0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.76", - "basePoint": { - "x": 349.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c233664a-b7ac-5ef5-8179-4a52e9d8f69d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "c2fed71f-35c5-53ca-a997-9d72b65326ea", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "397.81", - "basePoint": { - "x": 349.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "80369008-a8b5-562f-8cc9-f96b74117ccd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "9f29bf9b-a8f0-5fcf-aced-586f9e727f2a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "f596d4b7-49d7-581a-8a5b-607c334d1161", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.95", - "basePoint": { - "x": 349.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f75948b2-307f-532b-99ac-2668ed46a3e7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "f836296f-0baf-57b0-9949-2e99fb0d5b7d", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2364.414981814357 - } - } - }, - { - "id": "d85de7ae-b251-5404-9daf-2d27d7c97702", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2350.364981814358 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2364.414981814357 - } - } - }, - { - "id": "9e8d9125-b577-5341-a2b0-47f09d5c9638", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "66c7d463-31be-5cc9-8b0c-344f405daf37", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.134", - "basePoint": { - "x": 369.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "646abc7b-0489-590d-9333-0901d0836765", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "4ca334ad-6ee6-51cd-bafe-ecf342434ebf", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 369.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "89474f44-4528-5b00-a0f1-e27f723dd3f7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "fa643c92-f05f-59c6-aafc-7e2a05f1fb17", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2680.00", - "basePoint": { - "x": 369.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "36f20c11-9054-5eec-8d8b-12f2f71a5b23", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "8aec21ce-dfdd-5ade-bfcc-ce8c582f8292", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.95", - "basePoint": { - "x": 369.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "40f9b5cd-e0bf-5e41-9502-2833d8bc4405", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "3752592f-39fe-5080-828a-151302679a07", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "395.77", - "basePoint": { - "x": 369.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "019ef090-c62a-5d33-b097-63f7de6478d1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "e459feb8-7f92-5abf-8f00-d112914c797c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "ae1d595e-a5f0-5645-939f-c97037e0b9b1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.18", - "basePoint": { - "x": 369.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "55a67780-7710-5855-97f9-0031881eded9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "ffc76b44-13ea-51de-ae55-243389922c47", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2380.364981814358 - } - } - }, - { - "id": "74aee69d-480b-5ca4-be4f-23b4240ddb69", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2364.414981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2380.364981814358 - } - } - }, - { - "id": "a7f0151c-4f0f-5567-927d-0446e185a408", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "ed72f0b1-7202-5b49-8cb2-9cb701ca0367", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.135", - "basePoint": { - "x": 389.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2e4a4791-4271-5acb-b7f0-391f309d73d3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "dac241e8-c5ca-5f66-97a3-8e47ab99f77c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 389.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ef7c71f6-e240-596d-8312-2ddb7551daec", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "c3141600-f8a9-56ab-9dc4-0e2c39dd7ddd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2700.00", - "basePoint": { - "x": 389.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "906f6b2e-df29-5eb2-ba8d-82d657144901", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "c96377e9-95cc-5a14-9831-0928dd8af613", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.76", - "basePoint": { - "x": 389.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "434579b5-f791-5dac-bc85-815d62568522", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "63b31397-81da-5b4c-9108-983fe5a47432", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.73", - "basePoint": { - "x": 389.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d773a03a-80a3-5b61-aff0-ef86c9eb9808", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "b5e4f0c6-1b4f-54a4-b4bc-da1ae869f12b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "429695b0-73be-5b34-9e05-afbcae1bf4e1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.03", - "basePoint": { - "x": 389.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3a540ce7-9f91-5ee5-af84-9489a6d815b9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "070c670a-3aa8-555b-9dfa-8e27339b16cc", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2413.664981814357 - } - } - }, - { - "id": "8501ed86-b4bc-5d06-b63c-014fd4532b0b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2380.364981814358 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2413.664981814357 - } - } - }, - { - "id": "0ce6f5cb-52a2-5371-afc9-34043812b491", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "8706bc8f-112e-5019-84c4-9091eabe2176", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+14", - "basePoint": { - "x": 403.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d05a76f3-a2ad-5831-b5cc-e685b6734b29", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "4afdd72d-786f-5f48-a233-a3436067e64e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "14.00", - "basePoint": { - "x": 403.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f2cfc492-4c5b-58ab-84bf-c1f5d51c99c9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "de6cdff7-accb-5775-b876-a6013b102115", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2714.00", - "basePoint": { - "x": 403.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2d6feede-d30a-549c-b088-41274258e1dd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "7ecb0af7-dde2-5e4e-b1fc-e677772b2447", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "387.10", - "basePoint": { - "x": 403.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c2994832-219e-5f15-99e8-6d6c3e0ef8f9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "d43eb21c-65d5-519a-a4b9-64e16747613b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.30", - "basePoint": { - "x": 403.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b15ec89a-2ed9-5d51-931f-71bc1cb26a77", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "6559e75b-743e-58b7-8fee-dae514ef2d6f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "5.20", - "basePoint": { - "x": 403.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "11a56eb4-64c2-5e63-9ded-1601cde6f863", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "ee5e6d03-a990-5e65-b62c-21664ff158b6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "88b6d560-1753-532e-9d92-f9c28bb0fcdc", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2406.464981814358 - } - } - }, - { - "id": "e9d07432-66be-5a94-9064-bca34a627f2e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2413.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2406.464981814358 - } - } - }, - { - "id": "f2d5fc78-7479-5b1e-8674-8701a19f0b6e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "8b1754b1-f8af-5a74-ab4a-a3cc94a25635", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.136", - "basePoint": { - "x": 409.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fca306d8-2ce4-55c0-8593-ad5091dd3e4b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "a79f009f-4c78-50ad-b56b-3ad2c9fe3696", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "6.00", - "basePoint": { - "x": 409.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "32e909b4-2a97-5184-affa-382350b5c235", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "cdb25d25-bc46-56ac-8506-f944dbf823c6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2720.00", - "basePoint": { - "x": 409.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f3e23f9b-05ee-5e8e-b9d6-e4e5cc04fe6d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "6181ef71-79f4-5943-924d-65509e21ab35", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "388.54", - "basePoint": { - "x": 409.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "72fad8ec-dc73-569c-9109-5f3d7e87ae48", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "0cfae504-737e-52df-b336-08f9d4e8f150", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.70", - "basePoint": { - "x": 409.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9357401d-0045-5d7f-b634-c4e6b971de3c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "3f22fc9d-7049-5d3f-893e-390268c259bf", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.16", - "basePoint": { - "x": 409.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "aea139de-096c-59e9-988f-b6caca7c5a9c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "c391fe98-590f-5cc2-8d7b-5c3119ab594f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "108812af-b2ec-52b6-95d3-5029aad49382", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2411.414981814357 - } - } - }, - { - "id": "68c75cf0-fd8e-5d7e-b366-6a8c8d958c7b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2406.464981814358 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2411.414981814357 - } - } - }, - { - "id": "9dd4fc5a-a0cf-5edd-9890-1d127d1742f1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "6dcec84a-bb19-5826-bc08-bec19b8b5202", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+13", - "basePoint": { - "x": 422.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "62d49fa9-bfb2-59f2-ab8a-187037f13ecd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "7b10f764-74dd-5e0c-8a1f-57ba556e9174", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "13.00", - "basePoint": { - "x": 422.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9b082a05-72e3-5af5-ad84-2daefd982b94", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "8830657f-37a3-5a48-90a9-7b924e34d896", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2733.00", - "basePoint": { - "x": 422.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b3329502-211f-5e29-9573-328caa983d17", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "badd81de-03c6-5cff-81ca-d4802566be8e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "387.55", - "basePoint": { - "x": 422.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7538a44e-dd6d-5d81-af8e-a39c7b019c5f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "f2f9eeae-c75f-5b73-b951-293e7897dda5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.40", - "basePoint": { - "x": 422.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8b4f95f5-f9a3-5323-b617-365af38ac97d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "d2530ce5-e53b-5a33-9974-e6c34a94735e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.85", - "basePoint": { - "x": 422.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6ff24c09-06ba-500a-bdd5-20a8cd3162b9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "5b73665e-d33d-5452-b893-66789bdf3945", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "8af5d02a-5486-59c3-983f-e87051a88be6", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2396.814981814357 - } - } - }, - { - "id": "22dfa1a2-66bd-5e95-968e-a9be39e1fd4f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2411.414981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2396.814981814357 - } - } - }, - { - "id": "ebff620b-c877-5e7d-8b52-14ececaf38cf", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "dddb9e63-daf5-5429-95d8-f023354de22d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.137", - "basePoint": { - "x": 429.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8d5b9106-879b-54dc-a1f0-a9f008b20e72", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "d69270e7-3866-585d-a32b-fcc8084f633f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "7.00", - "basePoint": { - "x": 429.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "26288ca5-93f0-5b87-8a7b-c55995fc8fd4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "1e38e782-ac8a-5c57-ae7f-0ad86916cc05", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2740.00", - "basePoint": { - "x": 429.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ad89a247-9028-5174-ad19-c19770fbb342", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "80058da9-9c33-5ce3-a616-71e2f4c01965", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.47", - "basePoint": { - "x": 429.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "890c1e3f-ab7f-59e4-8928-d92aa8483852", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "570d2b75-4b51-548d-afdf-e7daf4dd0de1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "389.70", - "basePoint": { - "x": 429.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "35b97684-e19f-5858-a91a-64432dd95baa", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "cc9f4309-c5e6-558e-93be-55c6ae3170bf", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "f3d7672a-4a04-5eb7-bdc9-06b1c490cdb4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.77", - "basePoint": { - "x": 429.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4ec85506-7a24-577c-bce1-25df9ad9a8bb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "a1f0e97f-9554-5e37-bd60-5df341f5bbe7", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2386.814981814357 - } - } - }, - { - "id": "454a9403-5e9a-51a3-9aa0-43e16cc24677", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2396.814981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2386.814981814357 - } - } - }, - { - "id": "052b9079-062b-560f-bd74-d5eaf7aedd1d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "7618c79d-ca9f-5b36-8d32-c2c93bbcb9e4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.138", - "basePoint": { - "x": 449.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "24d1c76d-c390-5220-99b7-59db0a389874", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "7f246469-66ad-5760-a7eb-1032cc7acb4e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 449.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f7e0d1d5-179f-5848-9d5d-c699ab2a94b5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "64c51043-cfa7-5de3-b95c-5c3631628d02", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2760.00", - "basePoint": { - "x": 449.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "236b9f85-100b-55f8-b831-bd602b78d0d5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "c088e90b-0126-5ab5-aee6-f7a355d02fb6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.47", - "basePoint": { - "x": 449.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b055f1a3-0f5e-5d9d-a2b5-4e78cec581b7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "9b4b18af-591f-5dd3-aec1-e7db26b5d72f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "387.72", - "basePoint": { - "x": 449.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "85b45515-590b-5946-8db9-d2ac169f3498", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "95694d39-180a-5b7f-8ebb-cb4e87f6653b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "c539f8f2-355e-5e86-a1a2-cad4c3d231ea", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "4.75", - "basePoint": { - "x": 449.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7fb6072b-e9c5-5ea3-bb71-967813ab8d40", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "ce9a36b3-8139-5a10-8dae-600f7a2b4a06", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2422.814981814357 - } - } - }, - { - "id": "7c2c041d-6f56-54ec-8579-45c050b60eaa", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2386.814981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2422.814981814357 - } - } - }, - { - "id": "19ff1951-c4a0-5ee9-afd7-87b104c30873", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "f9196048-1dcf-534a-8b68-0a96d5f770ec", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+17", - "basePoint": { - "x": 466.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "69986745-c5cf-5059-a76c-f1d9061c0bb4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "cce8458f-0710-578b-9cfd-ca6f9e70ce91", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "17.00", - "basePoint": { - "x": 466.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5145ffd7-c505-5b70-867f-e8c88029da9a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "9110a4de-fe5f-51a7-bbae-0bb1171761b3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2777.00", - "basePoint": { - "x": 466.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8533ae06-a86f-5e13-87ee-3c1a6f60985d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "48c73d2d-f123-5c58-af48-226ab6621ba4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "385.27", - "basePoint": { - "x": 466.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1712df87-e73d-58a6-9baf-329fb85be0f5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "2fb89880-0020-54bd-877a-8d49e00ba2a3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "386.73", - "basePoint": { - "x": 466.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2a9d25f7-e8c4-5277-84a4-41f06956d0e1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "86782cec-efb4-5821-a70d-1c685824e3d8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.46", - "basePoint": { - "x": 466.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3a04898e-ca8f-5543-b83b-845ce5fd1264", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "055a0d16-aa07-522b-8320-07112ed02221", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "46729e16-6569-5a96-8904-9bcd69b6c25a", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2421.314981814357 - } - } - }, - { - "id": "49fb49eb-2d6e-5945-9ded-54394de6842f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2422.814981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2421.314981814357 - } - } - }, - { - "id": "6f1ac63e-3adb-5d90-859e-6d471c262f63", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "cc687322-f508-5b4c-a9c1-c97db459fe5d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.139", - "basePoint": { - "x": 469.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9f0a4ec4-c103-51f9-9bcc-72723b4b25a8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "5c0a6cb6-a851-5833-828b-270001e8626b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.00", - "basePoint": { - "x": 469.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a766e7d9-98c7-5f72-9279-3d27ec410b7a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "8e8b6fec-7310-5df9-b16a-010fcad1a5eb", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2780.00", - "basePoint": { - "x": 469.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "92133926-8c79-5300-884d-344e62032a30", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "47b93031-d3d8-5cec-9b1a-a2b38ed72ba2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "385.57", - "basePoint": { - "x": 469.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ff7bf2f8-ec56-54e8-bb5d-18faaf062de1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "2076f3ed-c33f-5a45-b167-1e4481c07629", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "386.67", - "basePoint": { - "x": 469.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0a0c3503-1c4b-599d-8ec3-75d02fc8453d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "74e324bc-b54d-50c9-af75-dab0897cbb32", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.10", - "basePoint": { - "x": 469.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "891d8262-caba-5719-acef-3a3be09e6b1d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "35423917-42dd-58aa-a3ca-825ca19e3d1c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "d1eaf496-f4cb-5ee8-80ce-27800f1b99ba", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2408.664981814357 - } - } - }, - { - "id": "0f5151c5-801d-501d-94b0-28f53024aca7", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2421.314981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2408.664981814357 - } - } - }, - { - "id": "891a1b63-35e4-54ab-a85b-5d08bf4b4e44", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "01b51a24-72dd-5216-a852-6153b053739b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.140", - "basePoint": { - "x": 489.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8aada897-f7e0-5030-907f-d97216e2edf0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "a794e325-0ee6-5e8a-9626-2b7623cf0553", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 489.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0daa8e5b-3af3-5e78-8fdb-3512004b59d2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "54443a26-7de9-5614-ad50-af6638580533", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2800.00", - "basePoint": { - "x": 489.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2d08e076-450a-516c-a09c-71714b9bbb8c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "f9a54ba8-0f9c-5e13-8513-b55bb48844a4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "388.10", - "basePoint": { - "x": 489.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d8655044-d983-5b16-8284-bd55031e2950", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "c2158a6a-3572-5991-a9bf-54b4b99ec296", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "387.08", - "basePoint": { - "x": 489.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5224881d-f309-5ead-86d1-fc2fd376dff5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "e12a6fe0-65c3-5a69-a565-cefdbb2d4051", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "3a97f8d9-e724-592c-ab45-dfa5330aa8e9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.02", - "basePoint": { - "x": 489.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "00eb9b4d-ef01-5854-a771-74870470591a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "ff718159-ca35-5f06-8ae1-7a6ca2c0e53a", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2399.514981814357 - } - } - }, - { - "id": "fb190baf-4528-502a-a904-600649d5f279", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2408.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2399.514981814357 - } - } - }, - { - "id": "b87a60cb-11d0-5dba-8179-986f8198ad02", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "f2a80318-b8f5-510c-a0fc-83a58b881713", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.141", - "basePoint": { - "x": 509.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "12cc9850-f5b4-586d-9605-92fd0d37e40e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "dd1130d0-945f-59f4-a0fd-bc3d005114ad", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 509.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "920529f4-7151-5b80-a206-23be9bb868a5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "d1836922-d9d7-51c4-a1e8-721523c73c89", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2820.00", - "basePoint": { - "x": 509.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e636db34-e1ed-5b42-b0ca-6ec842dbb091", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "c6d79ce0-76cb-5761-a393-2b8a9910a89d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "389.93", - "basePoint": { - "x": 509.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6f1972bf-3f87-51ea-9dcf-6747c05c8a16", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "05c5e94d-e6cc-5f3e-8221-c9b5fde9b7f9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "388.02", - "basePoint": { - "x": 509.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "925e62fe-0cc0-504f-be8e-50851372810d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "6cdd37a1-62fe-50d6-92e2-b9628d076524", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "225af985-9869-501d-b947-791855c5fc52", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.91", - "basePoint": { - "x": 509.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "110faaaf-ad81-565a-8e13-2ccc8acca18b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "b32b25c3-5ebc-50ea-818a-aa9bfa79590e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2394.514981814357 - } - } - }, - { - "id": "fcaa6067-377d-557a-a914-7296baa9a344", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2399.514981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2394.514981814357 - } - } - }, - { - "id": "31598a55-f1a6-55e9-ab60-79c8d50d8adc", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "2ecaa91f-ccb6-573a-8a67-7592d8d48e75", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.142", - "basePoint": { - "x": 529.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "01aa5903-880f-5e60-a450-066f05f666b9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "fce9371f-502a-520a-859b-6a8539da44bd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 529.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fd350fd0-621b-558b-88b5-6fbae7a6a848", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "c71debc1-7d1f-5c28-90ef-99dd3f9c1d15", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2840.00", - "basePoint": { - "x": 529.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3c9a8d8b-3006-5380-8cdc-71ebe730510c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "7bc13b0c-32eb-59e3-b125-56178a03bd5f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.93", - "basePoint": { - "x": 529.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a4551792-b7d7-5375-90c0-c9385924110f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "6fa0e48d-eee2-5fca-81a8-93a4bbbb27a4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "388.96", - "basePoint": { - "x": 529.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "941ee331-7b97-5db9-8c4c-b80a67446ea0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "8df9ec1a-bfe3-5181-8e85-fdd6bd407fbb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "e9a09e73-8f94-5aa1-9b50-14c412e1bdc0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.97", - "basePoint": { - "x": 529.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "75553147-fcba-55d9-930c-6864a36e8e14", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "dcf577d9-85bd-56ca-bd10-de85246cf19b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2382.264981814357 - } - } - }, - { - "id": "50117119-6918-59ac-af3d-938a8c4223b9", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2394.514981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2382.264981814357 - } - } - }, - { - "id": "7b0d9eb8-6424-5896-b835-cd6f0c53d25b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "3ea7750c-d0bc-50bf-8124-6e9de1f096c6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.143", - "basePoint": { - "x": 549.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ff3477df-6b6c-5c3e-904b-dffbc13d124b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "666cc1a5-6735-52ee-8094-b818d40e49f1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 549.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "89a2213c-6a42-5609-91d2-78a08f7b658a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "61e62c50-b708-5c9d-8bd5-2cc8dd7cef9c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2860.00", - "basePoint": { - "x": 549.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1cc9f9fd-8af3-5048-a956-3c6e0f7de666", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "16e915eb-684d-5e1f-9890-b014b3f3a12d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.38", - "basePoint": { - "x": 549.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a290bfaa-a527-5056-85e3-f5ebe5a42c7b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "973bae54-197b-5c50-a922-99c292c6e9b2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "389.90", - "basePoint": { - "x": 549.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8c9d1f38-edc9-5c18-b4c2-74b4f24e61c5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "8bfd49ac-85ed-5ea1-b39c-33d971918699", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "d8904d92-58fc-5b58-a060-25d5162bccf6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.48", - "basePoint": { - "x": 549.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6f918597-8d09-55c4-9b8e-61c83505a419", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "3e670898-c518-568b-9f7e-417ab54ced37", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2386.814981814357 - } - } - }, - { - "id": "ac3f5101-0f53-53e1-aad8-fca4c6c78449", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2382.264981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2386.814981814357 - } - } - }, - { - "id": "52c4a02a-64eb-50cc-9426-513ddbba8a05", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "f0c39aa7-b35f-54bc-98d3-3e6c903fe174", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+10", - "basePoint": { - "x": 559.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "19625708-1204-5959-b654-79d1c2dc7fd4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "2fa930a3-2a81-59cb-b52e-48bac84099a8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 559.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "36ff594b-1f87-5b40-bd22-d0fce1fd90e7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "caa627bb-ea8b-5f4d-8071-6d11d984216c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2870.00", - "basePoint": { - "x": 559.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b2e6918a-51fa-503b-bf62-30520973e799", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "4e78721e-28bf-5dfb-ba3f-32a58ac5cfdf", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.47", - "basePoint": { - "x": 559.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0c614e85-c381-5ef4-a7e4-8d1a010a55aa", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "c8866bad-7949-5cf0-8c56-178a68526eea", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.42", - "basePoint": { - "x": 559.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7c1d5e11-ff44-5582-bf31-215e6cf80187", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "918de6c5-8cb1-58cb-8c33-5801f74914e3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "c595e3f7-04da-56c5-9a4b-63bf882f0087", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.05", - "basePoint": { - "x": 559.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1a4a7bf0-9bf0-582e-8f0f-322332724fc9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "7300e912-1c88-513b-af9c-f3c7bf8273a9", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2376.414981814357 - } - } - }, - { - "id": "37d2b7d4-72aa-59df-8281-8b063d3524e0", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2386.814981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2376.414981814357 - } - } - }, - { - "id": "d0da212b-fbdf-51ea-8fd7-8db14226dcb9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "91371231-7a87-51d4-9590-3fadf02687ed", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.144", - "basePoint": { - "x": 569.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e13d89ff-ac86-506d-9db9-bdb2b56a4260", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "7cda232b-a463-5f60-997f-55b40b29f41c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 569.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "eb9f8198-ee0c-58dc-a431-38a654c627a6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "1693942c-0bde-506c-9087-51e110ecca2e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2880.00", - "basePoint": { - "x": 569.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "26c8254e-4509-540e-b311-642bb549c4fe", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "0d985d12-5d2c-53a6-90f8-11ea084de7b1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.55", - "basePoint": { - "x": 569.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9b9e86d2-ed79-536d-90c4-4a67eb4eddf2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "74afa3b7-8fd2-58f7-a337-a9f4836d2c95", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.93", - "basePoint": { - "x": 569.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "48dc8edb-d9eb-58dc-aa7f-fb80b5b38166", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "6ed7a332-7e18-57e7-9931-ca9a7a742925", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "32c37311-6547-5868-8c1a-3fd104cee15d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.62", - "basePoint": { - "x": 569.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "71b6d15c-09f5-5cad-97e0-d59f7aa25d3d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "ed92b268-8d67-5d51-a739-0c837f08e03f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2382.114981814358 - } - } - }, - { - "id": "afc90e99-252f-5235-9207-0fa45c29a6ff", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2376.414981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2382.114981814358 - } - } - }, - { - "id": "6571a70f-7baa-54b7-92dd-2a87368fc9be", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "742a21b4-240c-5eaa-91ba-ec292fceeb6e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+10", - "basePoint": { - "x": 579.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d52236f3-2199-5919-a33c-645892718689", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "fbec941f-64e9-51ff-9826-4c4131113ebd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 579.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "08b1dd22-9d02-58fa-b521-458006018eef", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "db5db531-af0f-5f5f-b9bf-a82d84071961", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2890.00", - "basePoint": { - "x": 579.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "17d6221e-f8d1-57a1-96f9-3b2f76820bdb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "ecaaae73-aea4-5904-a0dc-80fcb38103ca", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.41", - "basePoint": { - "x": 579.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1451535e-638e-5355-9ece-875dc9abed61", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "a65ff2a1-a522-5f89-8726-49ce237cdc4e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.45", - "basePoint": { - "x": 579.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bc8e1c4f-71db-558a-89d1-061dec018735", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "2e0040b5-0338-57dd-9e4f-a7ee10472250", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "97786834-b9aa-5c95-83e2-c8bd935cda25", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.96", - "basePoint": { - "x": 579.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "019638b1-8136-5165-906e-a487e5440c4c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "02505edf-020c-5604-b558-e3e247b44ec0", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2376.964981814358 - } - } - }, - { - "id": "8f4ad64b-082e-5b9a-933f-f7fcf778a627", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2382.114981814358 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2376.964981814358 - } - } - }, - { - "id": "3ac924ec-52c4-545c-b6f3-19222fa2ac6f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "55547cdf-8a88-5d70-a434-f312cb649f86", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.145", - "basePoint": { - "x": 589.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5a29ed6a-24fc-55bc-a838-333907a61791", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "e89260c4-341f-5353-86f0-ef6744ee8173", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 589.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cfb871e6-7310-5179-9583-e56268a3f5c3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "e4f47a0f-ca99-5e7a-b615-f635080d3fef", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2900.00", - "basePoint": { - "x": 589.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d26f2a32-aff9-52c3-8d5a-350f2abf3198", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "923a9c4f-7cfb-528c-8931-892aee0343ad", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.44", - "basePoint": { - "x": 589.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "80a2ef80-0418-5f82-9661-6154808bab85", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "39b1adc2-a80c-5829-91f6-7cecb89ad144", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.97", - "basePoint": { - "x": 589.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5ea4c8dd-d2b6-51cf-a331-c71fa1ef34e7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "ddf99848-32c1-5349-b7c4-31c73465c2d2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "8aa3e65d-7ac4-5184-a6be-91388af2709e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.47", - "basePoint": { - "x": 589.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7e3e4613-40a9-57fa-9a0a-580dec144b9a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "541b9fc5-4ea4-5b44-9fe1-dbc286a05758", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2374.414981814357 - } - } - }, - { - "id": "b042f9d9-4d3b-5f83-a8d7-25b5657e1f8a", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2376.964981814358 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2374.414981814357 - } - } - }, - { - "id": "9acf70d1-be94-5648-b510-216b7da76a4c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "022f97bf-2cca-5471-91a8-fd571ac11a6a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.146", - "basePoint": { - "x": 609.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "907bfb73-6721-5e03-9e67-c6d870b3f5c0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "5928027f-4843-5182-8f7a-17413b0521b1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 609.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "49312dda-4519-5570-bdf5-b9c27fe3bbec", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "df263e92-9f5f-5b66-8764-38f87290bed4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2920.00", - "basePoint": { - "x": 609.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "afed2ade-b0a7-5691-bcd4-dca9f0f0c1e6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "f2a3811a-aae6-59f0-bb58-29aa65fad3be", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.95", - "basePoint": { - "x": 609.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b329497b-7de5-592a-9455-27e1f697fd7d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "f853db34-3ca6-5dfc-8a65-e847be894a2e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.00", - "basePoint": { - "x": 609.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "442c4ed6-402b-5b7a-a8a1-3a6183dfbc7c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "4554b341-6172-5301-950b-d4892486212c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "7bd048e6-face-57bf-828e-f9a30c02410d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.95", - "basePoint": { - "x": 609.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0b34348a-7362-55ca-921b-931b53b31298", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "affb3998-fec0-59a7-a3f4-97c59b3ed676", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2371.764981814357 - } - } - }, - { - "id": "974a912a-4412-5dbf-960b-18d63d1a2787", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2374.414981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2371.764981814357 - } - } - }, - { - "id": "16d70817-9d1d-5295-ae52-21f601ca1b76", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "78ddf521-0bda-5a21-9502-3ea616c2ea2a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.147", - "basePoint": { - "x": 629.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d7eca9ce-718d-5019-80c4-3e4d5a95df7e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "b13b9aa6-38a8-5c84-9adf-51ba97bd0fe4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 629.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2088b830-2dff-57ee-ba81-db99bfc60c8e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "50d7c755-2aed-5207-9a80-1adf8e7bad38", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2940.00", - "basePoint": { - "x": 629.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "40fd61e9-5fa9-55c4-a5a1-20b1341d5995", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "693f4067-111a-57ae-b3d8-f40b5cc31295", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "395.48", - "basePoint": { - "x": 629.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "28806125-c5a6-5717-aa04-7fd3c4fa9bd5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "2645c493-40bc-5593-86af-cce16e9b3ada", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.98", - "basePoint": { - "x": 629.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7af3af87-ad96-5207-9bcb-8ba7aa4bc07d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "038262a5-c69e-5cdd-a5c6-f991ace7ab7e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "e7459720-2156-5155-8b76-75948ac117b9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.50", - "basePoint": { - "x": 629.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7c0a9787-401d-5819-b0ad-3dddfc439145", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "7ef434f4-16e5-5223-96a6-ab99439e6b55", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2368.314981814357 - } - } - }, - { - "id": "525250a8-8638-5484-8dd2-2d271cb5eccf", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2371.764981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2368.314981814357 - } - } - }, - { - "id": "17a1b36e-4809-54eb-a941-241c5a60fc16", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "ff0c5c11-4bd3-5e22-a7bd-93001cb00351", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.148", - "basePoint": { - "x": 649.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a66b2a6b-821b-5972-a674-21707e86f8c6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "ca76db7c-9d64-5be3-9aa7-c14aa61f63d4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 649.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "77d52831-caeb-5830-a3bb-d2ea55131746", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "5120beff-bcff-5d5e-a507-4d22b1b4bc43", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2960.00", - "basePoint": { - "x": 649.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f18a4050-805f-520f-80f3-b70850314fb4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "0ab5a6c6-2c22-58f1-8387-195dac83d978", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.17", - "basePoint": { - "x": 649.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d5059129-4c8f-5953-948c-28dbb58c19c7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "c07957bd-ce85-59bc-90ad-2fbf51d4bb18", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.95", - "basePoint": { - "x": 649.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "49ef74b8-53ba-503f-8759-87bf289c3b2d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "5c814dd7-7115-5493-968b-9a6a781d37cb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "1903fa3f-4fee-586c-96eb-c604ef21566c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.22", - "basePoint": { - "x": 649.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2999ff64-07f3-5bf1-9172-fcfd17c01198", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "4c27abe2-92db-5ac5-b2a9-bc17da8c5f98", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2360.814981814357 - } - } - }, - { - "id": "c9df9300-e416-5300-94a0-7842cc89cc23", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2368.314981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2360.814981814357 - } - } - }, - { - "id": "1afb6314-8878-541b-aa47-c47a8aa6f676", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "5b6b81e4-a038-5dee-b697-bbf1cb7b473b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.149", - "basePoint": { - "x": 669.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "63c8d0c6-f69f-57f3-963d-cb7dfe3e0bc0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "6a5a0305-f031-50aa-9696-f9282818e9b5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 669.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b78e9732-3115-50c4-95e8-095a95ca8b8c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "64a41f32-4ca7-504b-a1c2-9c34c126754c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2980.00", - "basePoint": { - "x": 669.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "be100079-ab29-593b-bd03-d883173793f7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "23057d3a-bb01-5ef6-be53-b28bc47e0880", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "397.67", - "basePoint": { - "x": 669.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fd1a3d35-52f0-57fe-842e-b5b6c2530b89", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "b55c89b7-6189-591b-baca-b6028f52fcb4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "395.93", - "basePoint": { - "x": 669.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "179df363-3f02-5d49-8caf-c8385e7a5b5c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "b26f8bca-1f59-54eb-8ceb-7c28adb767f2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "c2583bcd-e2d6-53bf-87d4-e7413abd28f8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.74", - "basePoint": { - "x": 669.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "48b251fd-f2dd-5131-bdf4-1d8b9c1e8dca", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "361b786c-d365-58a3-a556-97f01f2e86c8", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2350.064981814357 - } - } - }, - { - "id": "a7671446-10b7-5b8b-8ba5-6afaf7b62622", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2360.814981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2350.064981814357 - } - } - }, - { - "id": "5610e455-beb1-5af7-bbc3-a081f6fd407f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "6da5be99-7af3-5f19-b5b5-d8c3d9e90122", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+10", - "basePoint": { - "x": 679.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "dcf3302a-274e-5d61-a178-b09bfd50a379", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "01f946cf-dc2a-554b-bb33-59832dcfa021", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 679.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3b3907fe-e1ef-57b6-bbb9-5a9698705c58", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "5dde9865-7ee7-540d-b600-da0bb147ae67", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2990.00", - "basePoint": { - "x": 679.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "66ddeedc-c6f0-5c7e-9ccf-45b04c59d4e0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "83af441b-3a41-5b6a-81f2-96f7f5c9abfd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.82", - "basePoint": { - "x": 679.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a37f95df-6c53-5d85-8dfa-2bc991058010", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "68c199e6-81b4-533f-9248-5d4a260c9ad5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.41", - "basePoint": { - "x": 679.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3fe422c4-057c-5c09-ae99-cbd27207c4d3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "b158726d-eb9d-5743-90b5-0bb1afcab849", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "895f1459-cf1d-51c3-beac-a9b6e45ff75e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.41", - "basePoint": { - "x": 679.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b4e677c4-8d62-569a-9374-b926c04ffbf7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "e9958315-114a-50d2-b9f1-8d8ab08dfa31", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2359.864981814358 - } - } - }, - { - "id": "fa920df1-cfed-5c25-89fa-82c72908659c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2350.064981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2359.864981814358 - } - } - }, - { - "id": "54788924-ee37-553c-b73f-c4479f3089ea", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "ca6e3200-3c2b-5153-aff9-fbc88ae93809", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.150", - "basePoint": { - "x": 689.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "31a8c235-0ed9-5acf-8af2-f9a9f0c20df1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "821c2076-d722-5e72-851f-4c1326c2b98d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 689.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e2fb5f93-753e-55bc-b1ad-fc1fef4afad0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "40bb16d9-6083-5ef9-851a-a61e8d926a36", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3000.00", - "basePoint": { - "x": 689.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "89110125-9d03-55b3-9237-98aab27a9b5d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "457027c0-5909-5252-b265-5b8a9c292f80", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "397.86", - "basePoint": { - "x": 689.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "848d1c5e-86e4-5314-8d3d-c3d7a5989d38", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "68ee2c67-ed0b-5bf5-acd6-f65baadc5947", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.90", - "basePoint": { - "x": 689.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "10457150-d749-5e41-ab42-520234b1e368", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "46bd8073-8e03-5fb7-ab3d-19643d2a667e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "5c869891-a93e-5491-a8fc-2b8edb60ec6e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.96", - "basePoint": { - "x": 689.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f581ab62-ba7c-522b-8a2b-1501e3696561", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "9b282207-00f1-5279-a42f-414128dd0443", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2454.164981814357 - } - } - }, - { - "id": "0f5aa436-3d72-5efd-b48a-0391b738aa5f", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.03", - "basePoint": { - "x": 189.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5553b1b1-0b40-5d39-9f2c-ac7084bae4a3", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.56", - "basePoint": { - "x": 204.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7365d4e6-b263-53c9-af6d-6b362b4f6b64", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.31", - "basePoint": { - "x": 209.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "20f3f245-174b-54c9-babd-03bb03f95a96", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.01", - "basePoint": { - "x": 221.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "279af816-7943-5ec8-8f50-527aed53aa80", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "-0.75", - "basePoint": { - "x": 249.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3ce50d46-106f-5061-9e3f-d0744f925105", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.02", - "basePoint": { - "x": 449.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "39a617d6-709d-5d96-8a1e-219ee1992d8c", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.73", - "basePoint": { - "x": 466.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e2155537-5b43-5cac-831c-5143665f6fd1", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.53", - "basePoint": { - "x": 469.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "020ac0c4-4333-5587-88d4-843af7bf89bc", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 184.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 224.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "679d2287-e364-5602-8563-f98cb7056f34", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 184.1987193031828, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 184.1987193031828, - "y": -2428.364981814357 - } - } - }, - { - "id": "2b6bb2c9-cbcd-58d2-a5c6-efb40d94a3a7", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 188.498719303183, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 184.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "c81ae606-ca40-5f2d-a40d-39059f296511", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 184.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 188.498719303183, - "y": -2441.964981814357 - } - } - }, - { - "id": "79f04423-5d01-50d6-98f4-6cf04cd7f34a", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 224.1987193031828, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 224.1987193031828, - "y": -2428.364981814357 - } - } - }, - { - "id": "c1ca58d8-de0d-5879-8e6c-0489ef313238", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 219.8987193031826, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 224.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "f1c27b30-c75b-5699-a559-b4f7f7037cc2", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 224.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 219.8987193031826, - "y": -2441.964981814357 - } - } - }, - { - "id": "62424eee-0b9e-5c54-93dc-251c7a46fab3", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "L=40.00", - "basePoint": { - "x": 204.198719, - "y": -2443.364982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d8ba13c9-c195-55e6-8a1d-d92b64a9be34", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "K=3.59", - "basePoint": { - "x": 204.198719, - "y": -2446.864982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c856ef89-c691-596a-84c1-6f394ba158e7", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "BVC= No124+15 (EL=405.38)", - "basePoint": { - "x": 186.448719, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2d645cbe-f721-5ac4-9521-e1e7e8c79a9a", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "EVC= No126+15 (EL=405.65)", - "basePoint": { - "x": 221.948719, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7f157cbf-4c1a-5b4d-93b5-c83d8b8effbb", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "d856aa34-302d-5bdc-8873-62ed0307ccf3", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2428.364981814357 - } - } - }, - { - "id": "976fca8a-19d9-596c-83a5-590b01ad6bca", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 233.498719303183, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "fbdc3201-704a-5cf8-8974-6600df72d928", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 233.498719303183, - "y": -2441.964981814357 - } - } - }, - { - "id": "9737f3c7-ddc8-5b98-9500-8137d101bc5d", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2428.364981814357 - } - } - }, - { - "id": "e78c7d68-66e4-50ed-a775-a979a0c151df", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 264.8987193031826, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "baf9c523-84d7-5db1-8517-e8fe3c2859c3", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 264.8987193031826, - "y": -2441.964981814357 - } - } - }, - { - "id": "3f4ba863-64ab-59c4-8cdc-d4b7b9817f64", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "L=40.00", - "basePoint": { - "x": 249.198719, - "y": -2443.364982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "00d8fb34-708c-5e44-949f-ed0bfa2a8c1b", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "K=2.66", - "basePoint": { - "x": 249.198719, - "y": -2446.864982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "73d8d401-a914-5f02-bbb4-5992c117c2fc", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "BVC= No127 (EL=405.96)", - "basePoint": { - "x": 231.448719, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5c5093f1-378b-5495-80b2-44b0f461adc3", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "EVC= No129 (EL=405.43)", - "basePoint": { - "x": 266.948719, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "940c64ad-df2d-5cba-96b6-7eb1e4443ba6", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 446.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 486.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "39fe02d3-e428-5615-91a3-e901f5f1611d", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 446.1987193031828, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 446.1987193031828, - "y": -2428.364981814357 - } - } - }, - { - "id": "56f4a00e-8cb3-536c-9573-86bb59a5d447", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 450.498719303183, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 446.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "bba9d5d2-351e-5839-b727-93f46535f196", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 446.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 450.498719303183, - "y": -2441.964981814357 - } - } - }, - { - "id": "51dacb84-772c-5474-9aa5-b1fb0a2f4cbf", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 486.1987193031828, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 486.1987193031828, - "y": -2428.364981814357 - } - } - }, - { - "id": "e4aaa570-3151-5138-81e9-5a7fc00addc7", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 481.8987193031826, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 486.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "52ddd7c3-8896-5735-901c-7ca95d94b650", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 486.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 481.8987193031826, - "y": -2441.964981814357 - } - } - }, - { - "id": "527bb7e9-19ad-5518-832c-706e8a0f57b8", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "L=40.00", - "basePoint": { - "x": 466.198719, - "y": -2443.364982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "caac2373-55aa-5810-a5d2-8d7cab7b24f8", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "K=2.72", - "basePoint": { - "x": 466.198719, - "y": -2446.864982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d60dec6f-49f9-52e6-bc24-e793158d5be3", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "BVC= No137+17 (EL=388.00)", - "basePoint": { - "x": 448.448719, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b43a6f67-9a32-5b92-95c5-46f88cc33a3e", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "EVC= No139+17 (EL=387.02)", - "basePoint": { - "x": 483.948719, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3004cf79-f612-5f4f-9587-d6d6deecc20b", - "type": "Arc", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 89.19871930318277, - "y": -2471.664981814357 - }, - "radius": 7.5, - "startAngle": 4.71238898038469, - "endAngle": 1.5707963267948966, - "counterClockwise": true - } - }, - { - "id": "96347b20-727f-597e-9607-4135991e7da7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "409.96", - "basePoint": { - "x": 89.698719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "046d2a26-117a-53ff-9d07-f672ce53b5c5", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2464.164981814357 - } - } - }, - { - "id": "696d754a-a160-5d44-8370-2184c46877ec", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 149.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "344cbba9-ca47-5e69-925d-d7b17b9a1932", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "407.10", - "basePoint": { - "x": 149.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bcaff3ed-916b-563d-b693-b61aa3ea0630", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 204.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "3c64e0f9-40e9-51a6-850e-f361d4ab7273", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "404.40", - "basePoint": { - "x": 204.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ab0597ef-cba1-5ad4-b6c3-45f1b6e44ba1", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 249.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "9ac3b360-77bc-5c2c-be5a-bfc178a7206b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "407.20", - "basePoint": { - "x": 249.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8b8fca15-d255-5d6b-83e1-a4780189db7c", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 309.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "7a92e82b-44ef-5720-ac51-34a0e95efde6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.90", - "basePoint": { - "x": 309.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f2a15674-4645-5635-a65c-fe25b3ea2d45", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 403.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "57863172-2f26-5bb2-9d0e-4e2f27198679", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.30", - "basePoint": { - "x": 403.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "752ad7ff-c8b7-5b7a-845a-2ffc449c7be7", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 466.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "32851023-30d7-57a0-82d2-212292c4c1d9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "386.00", - "basePoint": { - "x": 466.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5643a886-eb98-5ab4-ab67-a818bf19e62f", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 549.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "2969d7b4-f693-528c-a0ae-dab3503ef1bb", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "389.90", - "basePoint": { - "x": 549.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7677aa9c-0e47-53e9-a45a-e93015a54d35", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 609.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "81c4bd84-1ff1-5123-88ec-b646e84eb792", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.00", - "basePoint": { - "x": 609.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ab574fef-b9b9-5c1a-a74c-d957b55a6d58", - "type": "Arc", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 689.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5, - "startAngle": 1.5707963267948966, - "endAngle": 4.71238898038469, - "counterClockwise": true - } - }, - { - "id": "68d5e8da-4e62-527b-a33a-64029f29ed83", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.90", - "basePoint": { - "x": 688.898719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "74e1b5ab-b5f3-5833-993d-186cf468036f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2464.164981814357 - } - } - }, - { - "id": "3920e4e3-1f6f-5f90-aa2e-58673a7a2008", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 92.00826930318271, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 146.3891693031828, - "y": -2478.618861814357 - } - } - }, - { - "id": "f0fa40b0-b82a-53a7-8a26-a6fbe71bb946", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=60.00m", - "basePoint": { - "x": 119.19872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "10f029c7-7b60-56ca-9955-4239ce55e16f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-2.86m", - "basePoint": { - "x": 119.19872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d597ff00-462c-517c-acbf-7d2c1e4d7810", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-4.77%", - "basePoint": { - "x": 119.19872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4ec494c7-8603-55db-a490-0a331116ebc2", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 152.0082693031827, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 201.3891693031828, - "y": -2478.618861814357 - } - } - }, - { - "id": "643573f1-56df-594c-b318-0e5370b66c66", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=55.00m", - "basePoint": { - "x": 176.69872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ae03cfe6-5dfa-5997-8058-b849c1903cc8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-2.70m", - "basePoint": { - "x": 176.69872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1cd6f393-23ba-5866-a5e8-e42fdc36368b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-4.91%", - "basePoint": { - "x": 176.69872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4dc86c07-6c63-5a28-a8fa-1a54e54d5162", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 207.0082693031827, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 246.3891693031828, - "y": -2464.711101814357 - } - } - }, - { - "id": "1ee7b28b-9c73-53be-9df7-d98941e391e2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=45.00m", - "basePoint": { - "x": 226.69872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "55c8de28-6925-57e7-b954-a61d0c3c64cb", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=2.80m", - "basePoint": { - "x": 226.69872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "47d9db2c-4173-5b7d-8821-e8b20b302f39", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=6.22%", - "basePoint": { - "x": 226.69872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "87f255e0-db85-571a-a25d-32eeddba6ed8", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 252.0082693031827, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 306.3891693031828, - "y": -2478.618861814357 - } - } - }, - { - "id": "6e932707-0f18-596f-8c1d-1f5df8a4bff3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=60.00m", - "basePoint": { - "x": 279.19872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9647244e-29cd-5488-ae0d-1cb6a91ead25", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-5.30m", - "basePoint": { - "x": 279.19872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "888f8a0f-fa1f-5ea6-884f-007d696e1fff", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-8.83%", - "basePoint": { - "x": 279.19872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fc0ac3cc-574c-5539-a136-b5fca76dafe3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 312.0082693031827, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 400.3891693031828, - "y": -2478.618861814357 - } - } - }, - { - "id": "405a58a2-96a1-5e92-bd07-e820a14b10d3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=94.00m", - "basePoint": { - "x": 356.19872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c583df16-7122-56d0-887c-50acb96ee20b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-9.60m", - "basePoint": { - "x": 356.19872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fba8ee5a-e924-5ca2-9208-34512e4cc570", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-10.21%", - "basePoint": { - "x": 356.19872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1beab606-0e66-56fa-afe8-eacc51a5e9b6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 406.0082693031827, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 463.3891693031828, - "y": -2478.618861814357 - } - } - }, - { - "id": "0a0a1ccf-6039-59d6-97e1-cd155ac1c4d9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=63.00m", - "basePoint": { - "x": 434.69872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e4830e78-bd8a-5cea-a4a9-d7699fb6088f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-6.30m", - "basePoint": { - "x": 434.69872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "da8e326a-645e-580e-9591-ff6ff170920e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-10.00%", - "basePoint": { - "x": 434.69872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d5b3a305-8b19-52fa-a631-10d777d3657f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.0082693031827, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 546.3891693031828, - "y": -2464.711101814357 - } - } - }, - { - "id": "06c14ebc-02af-5d9c-8dd4-5b3477785145", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=83.00m", - "basePoint": { - "x": 507.69872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b00d5cad-a807-5816-9f1c-1bd9c89bcf71", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=3.90m", - "basePoint": { - "x": 507.69872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "89f3dcbd-1d22-5a2d-86b6-b2ff22b2895d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=4.70%", - "basePoint": { - "x": 507.69872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e7aafdbc-e702-566d-aafc-dec751462a65", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 552.0082693031827, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 606.3891693031828, - "y": -2464.711101814357 - } - } - }, - { - "id": "e562f47b-d812-5668-852d-783e418a9f3b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=60.00m", - "basePoint": { - "x": 579.19872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cc0b66f9-1c78-593a-be4f-801414794324", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=3.10m", - "basePoint": { - "x": 579.19872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "70000b97-479f-5443-99b8-c101075475fb", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=5.17%", - "basePoint": { - "x": 579.19872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b62ce86c-4def-56d8-9211-aad6ac2b12c3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 612.0082693031827, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 686.3891693031828, - "y": -2464.711101814357 - } - } - }, - { - "id": "c0845bb5-2b72-554c-a130-5608681cf6b1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=80.00m", - "basePoint": { - "x": 649.19872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "496e79ef-b0b6-50ff-8745-42356a0744bd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=3.90m", - "basePoint": { - "x": 649.19872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fa139f20-ccca-5dca-b48d-5f54dd9d85cc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=4.87%", - "basePoint": { - "x": 649.19872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "561c5fbe-3663-56a8-8fce-e39396abc824", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "d5835aad-ee08-50f3-8f0d-45522766c2cf", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2454.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2294.164982 - } - } - }, - { - "id": "1c2ccc94-fc13-5875-92d6-d4c70a167a6b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2294.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2294.164982 - } - } - }, - { - "id": "5f659474-6841-5c1a-a67e-f723803d4650", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2294.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2454.164982 - } - } - }, - { - "id": "40fca32d-06d0-5e11-8e89-b387911d2597", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2454.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2454.164982 - } - } - } - ] - }, - { - "id": "88b78acb-a690-513e-a2b0-6436cdbf6dae", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 75.19871930318277, - "y": -2454.164981814357 - } - } - }, - { - "id": "ceeb0de4-2938-5102-8fe3-7827865f37d9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "379.00", - "basePoint": { - "x": 59.198729, - "y": -2453.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "18f4f986-f9e5-5989-900f-933251607536", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2449.164981814357 - }, - "endPoint": { - "x": 75.19871930318277, - "y": -2449.164981814357 - } - } - }, - { - "id": "b8be1e4f-ee78-530e-8b01-8145c272d002", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "380.00", - "basePoint": { - "x": 59.198729, - "y": -2448.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "20f83c07-1bf7-5d2c-8d6d-eac5a7061d46", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2399.164981814357 - }, - "endPoint": { - "x": 75.19871930318277, - "y": -2399.164981814357 - } - } - }, - { - "id": "7222fcba-af6b-5ff1-9182-7c80a35ca20f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.00", - "basePoint": { - "x": 59.198729, - "y": -2398.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5be56ff1-b288-54a9-9b56-2a781a1e36a6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2349.164981814357 - }, - "endPoint": { - "x": 75.19871930318277, - "y": -2349.164981814357 - } - } - }, - { - "id": "620851d5-bbaf-5c21-bd2d-11db25f90ad1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "400.00", - "basePoint": { - "x": 59.198729, - "y": -2348.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6ab8f24b-1cf2-526b-9ac1-b0ce907627f4", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2299.164981814357 - }, - "endPoint": { - "x": 75.19871930318277, - "y": -2299.164981814357 - } - } - }, - { - "id": "b17ee57a-f4a9-592c-a96f-add539661960", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "410.00", - "basePoint": { - "x": 59.198729, - "y": -2298.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "940102c1-51ff-5794-98d2-73a20f1638bf", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2294.164981814357 - }, - "endPoint": { - "x": 75.19871930318277, - "y": -2294.164981814357 - } - } - }, - { - "id": "de5e8165-2b28-5d5c-8fe1-b9f428377e89", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "411.00", - "basePoint": { - "x": 59.198729, - "y": -2293.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "dcf02f72-f502-52d9-ba47-a9652776cafd", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2449.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2449.164981814357 - } - } - }, - { - "id": "7b23822b-8124-5a51-97aa-9a8b5915d9c0", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2439.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2439.164981814357 - } - } - }, - { - "id": "0edf2d97-59fd-5e88-a77c-4a5647b8612f", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "cfdfa8ad-01b7-58f4-808f-fedaa47b3473", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2449.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2439.164982 - } - } - }, - { - "id": "9ec43c0f-5d2f-5a6d-a9df-45bf3ad93fd5", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2439.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2439.164982 - } - } - }, - { - "id": "24af1aa8-9568-5d78-a188-bc29399393a9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2439.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2449.164982 - } - } - }, - { - "id": "f42e33c9-cab9-55dc-8dba-b61ff1ae2a7e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2449.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2449.164982 - } - } - } - ] - }, - { - "id": "e882f32f-c8d2-54bc-8be5-c9ba183e0324", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "6cc2ff18-a8c4-514f-976d-abbda863c450", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2449.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2439.164982 - } - } - }, - { - "id": "49b19c63-856a-523b-b9c5-2a0639061794", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2439.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2439.164982 - } - } - }, - { - "id": "de78b26d-586e-53e1-ae26-9d8af317bcaa", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2439.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2449.164982 - } - } - }, - { - "id": "0e776411-0746-5c3e-9b3d-12e6f1a04be9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2449.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2449.164982 - } - } - } - ] - }, - { - "id": "c813b4a3-0a77-5c3e-a464-67dbc713234a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2429.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2429.164981814357 - } - } - }, - { - "id": "b7a209ee-3195-5f18-ba70-f04aa17059f8", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2419.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2419.164981814357 - } - } - }, - { - "id": "b0248e49-f0cc-5b76-9bc1-14c3abf13e31", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "3508cf27-e468-588b-a280-a82340a0e2d7", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2429.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2419.164982 - } - } - }, - { - "id": "340512c3-7667-5c18-85e6-69666f4bbe43", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2419.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2419.164982 - } - } - }, - { - "id": "8240d24e-1e52-5736-8d72-aa18340bb4f6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2419.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2429.164982 - } - } - }, - { - "id": "c8c17026-7201-5267-9880-fa8d931fa3ab", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2429.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2429.164982 - } - } - } - ] - }, - { - "id": "0a741cc2-ef62-56d8-8cf3-8366dc10fb4d", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "6d908df5-e42f-5855-a052-26946ca1c2f0", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2429.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2419.164982 - } - } - }, - { - "id": "6d851fc4-399d-51c1-ae72-71eadaad10a6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2419.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2419.164982 - } - } - }, - { - "id": "a5d4c726-b428-53df-81ee-b0a56b6157a1", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2419.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2429.164982 - } - } - }, - { - "id": "0a779616-8a15-50af-b401-0d351e0eab99", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2429.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2429.164982 - } - } - } - ] - }, - { - "id": "53ff8c8f-006b-50e6-97a0-bb1ba1f56ca8", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2409.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2409.164981814357 - } - } - }, - { - "id": "c53bfc88-2a67-503d-96b4-5acb3b2736dc", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2399.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2399.164981814357 - } - } - }, - { - "id": "5dfd4be9-1863-51ac-ac45-0cf9a30004b2", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "5be39d95-c040-5fdd-baa9-cc2e1f6838ed", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2409.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2399.164982 - } - } - }, - { - "id": "2cc4df1e-9f84-52c9-858c-bbc2c6515932", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2399.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2399.164982 - } - } - }, - { - "id": "772e5281-3d37-5589-9ffb-918068d10a1c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2399.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2409.164982 - } - } - }, - { - "id": "33d19908-9099-5e92-be57-69364e6ce16e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2409.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2409.164982 - } - } - } - ] - }, - { - "id": "17e31ea0-6544-53a0-8a4b-fa34d72219c9", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "60e463ba-da35-5e97-8d72-78e1b44e46f9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2409.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2399.164982 - } - } - }, - { - "id": "9e7274a2-55c0-57b4-9f7f-8228460df425", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2399.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2399.164982 - } - } - }, - { - "id": "c1160fb6-cca0-522d-a688-bde5ba70e31d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2399.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2409.164982 - } - } - }, - { - "id": "1ce235a1-1801-5d3e-afe2-17ec5b9da15b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2409.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2409.164982 - } - } - } - ] - }, - { - "id": "bda65b87-faa4-50fc-be32-edb2c438bc99", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2389.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2389.164981814357 - } - } - }, - { - "id": "b146c5b4-092f-52c8-9d29-e2e3ef45249b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2379.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2379.164981814357 - } - } - }, - { - "id": "eaf0a2b2-0a6f-5440-9519-081ec45089f9", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "5b81db84-aef7-5507-b649-72ae086e739f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2389.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2379.164982 - } - } - }, - { - "id": "6ea6cc64-7e23-55fc-9533-13625b524f21", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2379.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2379.164982 - } - } - }, - { - "id": "735ccd87-37c2-595e-bd6f-b57f75038c51", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2379.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2389.164982 - } - } - }, - { - "id": "525e855e-8a2b-5024-9db4-991a13b8c2d3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2389.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2389.164982 - } - } - } - ] - }, - { - "id": "5d93c4e3-2056-59bd-ba5b-7fe4f9dbadc0", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "be0bda35-3272-5c34-a14c-d950016007ac", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2389.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2379.164982 - } - } - }, - { - "id": "a5b8b0ca-de24-561f-beaf-2cce29359984", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2379.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2379.164982 - } - } - }, - { - "id": "1518b077-2faa-5f42-883a-a6212164d31b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2379.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2389.164982 - } - } - }, - { - "id": "f949e5de-7197-577b-ad59-19c8b80a77de", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2389.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2389.164982 - } - } - } - ] - }, - { - "id": "689a23f0-ffc5-5b4b-8db4-47c0e8307a35", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2369.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2369.164981814357 - } - } - }, - { - "id": "7a6432f6-42ee-5a82-a013-04b3dc0064a5", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2359.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2359.164981814357 - } - } - }, - { - "id": "3566fcab-c17c-552a-848f-7ce2aedbfac2", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "4870d661-8e66-5e3d-8d9a-68ede3c11114", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2369.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2359.164982 - } - } - }, - { - "id": "1d6ee92a-14d4-562b-b655-4f9ff086647d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2359.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2359.164982 - } - } - }, - { - "id": "af34e931-3651-5727-a035-a9a5c2a2e5d0", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2359.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2369.164982 - } - } - }, - { - "id": "011f4ebc-82a8-563e-94f7-f436fad6dcb4", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2369.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2369.164982 - } - } - } - ] - }, - { - "id": "0c988f82-1c2a-50d9-8583-f1774d436320", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "3864c7b6-0e26-5a56-9721-21cb76d068f7", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2369.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2359.164982 - } - } - }, - { - "id": "28d22a76-c715-5107-b1e6-b4e25f55bb6e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2359.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2359.164982 - } - } - }, - { - "id": "a44b83d1-e149-575b-9683-b230d1f6413c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2359.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2369.164982 - } - } - }, - { - "id": "eb247bda-d0a8-5902-bd04-c3c489fe5623", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2369.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2369.164982 - } - } - } - ] - }, - { - "id": "6eb6b18a-f3c1-5312-9284-a0b67f01c911", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2349.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2349.164981814357 - } - } - }, - { - "id": "bb753890-b991-503d-9f8c-3fac2d2dc2a4", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2339.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2339.164981814357 - } - } - }, - { - "id": "a06f0e10-2974-54ef-98d2-b97a80fb4027", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "66bf3ad9-d1fc-5c4b-aad0-5d58626afa0a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2349.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2339.164982 - } - } - }, - { - "id": "a6a9c755-0ce4-5be5-bb28-f1abb32a540e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2339.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2339.164982 - } - } - }, - { - "id": "d6a1392b-1c61-5278-bc4c-9a101472bf2c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2339.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2349.164982 - } - } - }, - { - "id": "957a2946-7ace-57fe-95d2-3a8fca882957", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2349.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2349.164982 - } - } - } - ] - }, - { - "id": "381eaf92-a6b2-52e7-a1d8-4a35eb2d7960", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "a1d392cf-510d-5006-bca5-e3395131b449", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2349.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2339.164982 - } - } - }, - { - "id": "761ceeb9-1a11-5067-bafd-04c665528b73", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2339.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2339.164982 - } - } - }, - { - "id": "57d7a70f-9c7b-5e0c-b4bc-a0249dff882d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2339.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2349.164982 - } - } - }, - { - "id": "6c7d7439-6229-50d5-9464-9ba00da35f99", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2349.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2349.164982 - } - } - } - ] - }, - { - "id": "b495ac73-5270-5e31-ae6e-ff4b65f052d3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2329.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2329.164981814357 - } - } - }, - { - "id": "2b0166b3-d418-5e0d-8727-01c54b561a99", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2319.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2319.164981814357 - } - } - }, - { - "id": "ded1d688-b54a-5879-8701-e4999b0b9aeb", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "6f5465c9-ea7f-5b90-b82d-b32ce1838885", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2329.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2319.164982 - } - } - }, - { - "id": "046a6be4-626c-5682-888f-95929749a49c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2319.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2319.164982 - } - } - }, - { - "id": "9492fb61-163e-50ac-9bc2-730e4b05f10b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2319.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2329.164982 - } - } - }, - { - "id": "10706b76-d6c5-5a08-9d88-def12cff6c1a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2329.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2329.164982 - } - } - } - ] - }, - { - "id": "cd229c2d-c583-5eb9-b580-41813c131dc3", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "4e26787d-673c-527d-8210-84da88fbafbf", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2329.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2319.164982 - } - } - }, - { - "id": "6206c734-e233-552a-b9c4-6b4c1337307f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2319.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2319.164982 - } - } - }, - { - "id": "0c42bf2e-f156-5b19-9496-673a80187346", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2319.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2329.164982 - } - } - }, - { - "id": "178eda4f-9cb9-55fb-8a0a-fea8457ed5f2", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2329.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2329.164982 - } - } - } - ] - }, - { - "id": "eb0c6532-212a-587f-9c7d-9f2a441f25d9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2309.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2309.164981814357 - } - } - }, - { - "id": "4950fa90-3330-5ad9-8c32-f1422a10b3d3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2299.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2299.164981814357 - } - } - }, - { - "id": "28c77c43-f7a5-50b0-b1ca-f356a14f3995", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "fb6a8d54-8b38-5a26-bfe8-4eb722313479", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2309.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2299.164982 - } - } - }, - { - "id": "95b6c11d-d84b-5b75-aced-03a1a651eb3a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2299.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2299.164982 - } - } - }, - { - "id": "8ee8ea4e-0779-51a3-a41c-224cbfc8f291", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2299.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2309.164982 - } - } - }, - { - "id": "461249aa-7b93-5400-b158-d8f10fddf9e3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2309.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2309.164982 - } - } - } - ] - }, - { - "id": "c3bf1db4-4d1e-584d-af8f-ecded10e4fbf", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "775b6c9b-026d-5fe4-b9f4-77fd2e5364e8", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2309.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2299.164982 - } - } - }, - { - "id": "918a2ec6-79d5-58ce-a711-684b5282e57b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2299.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2299.164982 - } - } - }, - { - "id": "2d0b793d-37f8-5c64-87b7-9a63adf5921e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2299.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2309.164982 - } - } - }, - { - "id": "71a35222-3f22-5cf6-9a4d-f91f960e37b6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2309.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2309.164982 - } - } - } - ] - }, - { - "id": "737b7560-908c-5c47-8752-2512e199efc4", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 100.9887193031827, - "y": -2591.664981814357 - } - } - }, - { - "id": "9c01d9ae-4564-59df-98e0-b0594affcd73", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "a1684a65-6081-5845-8b10-cf30b02dd313", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 100.988719, - "y": -2591.664982 - }, - "endPoint": { - "x": 100.988719, - "y": -2586.664982 - } - } - }, - { - "id": "21404cb6-abcf-5a84-a77e-bf88e64cea09", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 100.988719, - "y": -2586.664982 - }, - "endPoint": { - "x": 122.448719, - "y": -2586.664982 - } - } - }, - { - "id": "3ab25572-8b90-5d17-a88f-85db6c8b14d7", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 122.448719, - "y": -2586.664982 - }, - "endPoint": { - "x": 122.448719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "c07977f5-02a4-5a2d-b6ae-3fddf270ad1e", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 21.46", - "basePoint": { - "x": 111.718719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "21e304dd-c6a8-5670-acbb-c6c8b0e4ea97", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 14.5", - "basePoint": { - "x": 111.718719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8ad6065c-d66f-57fc-9915-cd2510b81961", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 122.4487193031828, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 134.8887193031828, - "y": -2591.664981814357 - } - } - }, - { - "id": "a9acaa3e-9fa0-594a-8d8f-1d859980bce5", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "f60ab563-5d8f-50f4-b50d-b5525b836559", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 134.888719, - "y": -2591.664982 - }, - "endPoint": { - "x": 134.888719, - "y": -2596.664982 - } - } - }, - { - "id": "079d0a6b-d5c3-5e91-bd8a-3543fe1c0db7", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 134.888719, - "y": -2596.664982 - }, - "endPoint": { - "x": 161.588719, - "y": -2596.664982 - } - } - }, - { - "id": "d1959cbd-745f-5886-b4ef-e02e6d3fa9ea", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 161.588719, - "y": -2596.664982 - }, - "endPoint": { - "x": 161.588719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "30eb2cda-20b5-546d-bb38-8a5b460c3433", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 26.70", - "basePoint": { - "x": 148.238719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6ef80c48-36b4-53e3-8e71-b3c4a3f61ce3", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 30.0", - "basePoint": { - "x": 148.238719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e954cc4e-9fc9-57e0-85e7-6ed0433954d6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 161.5887193031826, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 166.958719303183, - "y": -2591.664981814357 - } - } - }, - { - "id": "763186c0-c142-5a25-a392-14aabf93b39c", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "347ac853-1244-53f3-b28e-e5d967490cb5", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 166.958719, - "y": -2591.664982 - }, - "endPoint": { - "x": 166.958719, - "y": -2596.664982 - } - } - }, - { - "id": "9f8f753e-ec20-580e-bc0f-fe254dbdd462", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 166.958719, - "y": -2596.664982 - }, - "endPoint": { - "x": 194.108719, - "y": -2596.664982 - } - } - }, - { - "id": "c73f41ab-c4be-5ee6-b66c-8137d271aad1", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 194.108719, - "y": -2596.664982 - }, - "endPoint": { - "x": 194.108719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "888e9832-5181-5659-8452-18f63a5422a6", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 27.15", - "basePoint": { - "x": 180.533719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "87ef5584-b2ee-553b-9609-d878f2ace98e", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 37.9", - "basePoint": { - "x": 180.533719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e9bb8177-97a1-5399-b02e-19a932eb8a2d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 194.1087193031826, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 201.9387193031826, - "y": -2591.664981814357 - } - } - }, - { - "id": "6a26df21-8688-55ac-b58e-4743f3563341", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "5283093d-2822-5f55-b7ae-88d6b9b6f999", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 201.938719, - "y": -2591.664982 - }, - "endPoint": { - "x": 201.938719, - "y": -2586.664982 - } - } - }, - { - "id": "9910cdc7-c242-5205-ac82-5ce02c6ec281", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 201.938719, - "y": -2586.664982 - }, - "endPoint": { - "x": 215.388719, - "y": -2586.664982 - } - } - }, - { - "id": "59b05466-0e00-5d3a-bb2f-be68dc280273", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 215.388719, - "y": -2586.664982 - }, - "endPoint": { - "x": 215.388719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "8ccaddb6-61a8-5037-abdf-73c3a548ffb8", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 13.45", - "basePoint": { - "x": 208.663719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "32c83143-8609-52cd-8991-9ac486357455", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 20.0", - "basePoint": { - "x": 208.663719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9a08510d-bbcb-5686-9e3b-dcc188186ba0", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 215.3887193031828, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 219.3787193031826, - "y": -2591.664981814357 - } - } - }, - { - "id": "39021672-2901-56fb-ac15-10664ea28bf7", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "84a87c62-50a1-5e38-a30d-300a66c04f3e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 219.378719, - "y": -2591.664982 - }, - "endPoint": { - "x": 219.378719, - "y": -2586.664982 - } - } - }, - { - "id": "82ef5255-c7b4-5e1c-92bf-ecf2b4f4f60f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 219.378719, - "y": -2586.664982 - }, - "endPoint": { - "x": 231.238719, - "y": -2586.664982 - } - } - }, - { - "id": "f5fdf5e5-1987-5eaf-a974-d44671fd2437", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 231.238719, - "y": -2586.664982 - }, - "endPoint": { - "x": 231.238719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "850a6676-1f38-5a5c-bf15-63d6c05bc144", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 11.86", - "basePoint": { - "x": 225.308719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2af599e2-f09f-5cb2-b520-9657d8ab3a33", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 12.9", - "basePoint": { - "x": 225.308719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ef744b4e-846d-5ee5-be95-9dda2fbd6cc3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 231.2387193031827, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 242.0387193031829, - "y": -2591.664981814357 - } - } - }, - { - "id": "f115b0eb-8117-5ba3-9b03-6a47829098b9", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "5190d2a7-1889-5c23-b679-f191a732b79a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 242.038719, - "y": -2591.664982 - }, - "endPoint": { - "x": 242.038719, - "y": -2596.664982 - } - } - }, - { - "id": "d3f496f0-c340-5f6c-affd-4b86b20158ef", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 242.038719, - "y": -2596.664982 - }, - "endPoint": { - "x": 269.488719, - "y": -2596.664982 - } - } - }, - { - "id": "a6ed4eb1-27d8-501e-bae5-6c520e1f0e4e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.488719, - "y": -2596.664982 - }, - "endPoint": { - "x": 269.488719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "b2d7749f-11b7-539a-99ad-7338e8adf418", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 27.45", - "basePoint": { - "x": 255.763719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "39753412-1533-5a33-9e3c-417a645f7d3e", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 14.4", - "basePoint": { - "x": 255.763719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "16f1652a-ee7c-5da0-911a-0e1b68ef96ba", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.4887193031827, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 302.9387193031826, - "y": -2591.664981814357 - } - } - }, - { - "id": "a22607f1-473d-5bea-ad5d-75e1a5f2f19c", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "1c658c3f-518d-524f-b5b9-65375130f7bb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 302.938719, - "y": -2591.664982 - }, - "endPoint": { - "x": 302.938719, - "y": -2586.664982 - } - } - }, - { - "id": "c9bb6f38-043e-5a25-8116-00c70392ea7f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 302.938719, - "y": -2586.664982 - }, - "endPoint": { - "x": 321.668719, - "y": -2586.664982 - } - } - }, - { - "id": "4d00f614-11f9-5d35-963e-d18cb314d797", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 321.668719, - "y": -2586.664982 - }, - "endPoint": { - "x": 321.668719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "a5adf564-a003-5276-b78b-407a08593366", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 18.73", - "basePoint": { - "x": 312.303719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6ca5e90b-6510-5b46-bfc9-8b7f3b1c1847", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 29.8", - "basePoint": { - "x": 312.303719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bf93b795-5484-5d0c-8947-d72dbf70f2bf", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 321.6687193031826, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 343.3687193031828, - "y": -2591.664981814357 - } - } - }, - { - "id": "dbf0a528-31b7-5adc-8110-697157894f3f", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "4575a265-47be-5f25-aa07-db799176157c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 343.368719, - "y": -2591.664982 - }, - "endPoint": { - "x": 343.368719, - "y": -2596.664982 - } - } - }, - { - "id": "a9f6e610-462d-54fd-8aa3-d894af68d5b7", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 343.368719, - "y": -2596.664982 - }, - "endPoint": { - "x": 373.068719, - "y": -2596.664982 - } - } - }, - { - "id": "3985032b-425b-5e93-98ed-8e0d2da79607", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 373.068719, - "y": -2596.664982 - }, - "endPoint": { - "x": 373.068719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "f6492b56-b51e-5198-b8e9-9e9784c4d972", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 29.70", - "basePoint": { - "x": 358.218719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c78bef4f-7e8c-5aa6-8295-2ee8b7616fd2", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 58.7", - "basePoint": { - "x": 358.218719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "90a2f772-c149-548b-8f2a-8daefe2e454b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 373.0687193031827, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 385.1687193031826, - "y": -2591.664981814357 - } - } - }, - { - "id": "5218702d-5752-5190-9281-ff1df4d8e001", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "1b959500-dc4a-5984-b2f7-7b797c164193", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 385.168719, - "y": -2591.664982 - }, - "endPoint": { - "x": 385.168719, - "y": -2586.664982 - } - } - }, - { - "id": "ae2a7dd6-ffdc-529a-82b6-52e5223f02a2", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 385.168719, - "y": -2586.664982 - }, - "endPoint": { - "x": 416.568719, - "y": -2586.664982 - } - } - }, - { - "id": "554eb9ae-7748-547d-a97f-77c38df0c4c0", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 416.568719, - "y": -2586.664982 - }, - "endPoint": { - "x": 416.568719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "9e797d05-3a00-57f4-8f03-b361d4fbeeb8", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 31.40", - "basePoint": { - "x": 400.868719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7474e8ac-3258-5066-8b3c-b2e4b2603c71", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 62.0", - "basePoint": { - "x": 400.868719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7ac51dc5-8309-5cdd-bd2f-ad9dfeaf641b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 416.5687193031827, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 450.2587193031827, - "y": -2591.664981814357 - } - } - }, - { - "id": "26a2a79c-7dce-5d25-a1ac-cc30d8b4cff5", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "0b5959ac-a4ce-5d57-ac4e-b20129581c36", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 450.258719, - "y": -2591.664982 - }, - "endPoint": { - "x": 450.258719, - "y": -2586.664982 - } - } - }, - { - "id": "5143e724-b906-5e87-a102-75be34fda681", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 450.258719, - "y": -2586.664982 - }, - "endPoint": { - "x": 476.248719, - "y": -2586.664982 - } - } - }, - { - "id": "506f9292-014f-5cbc-bc98-fda7eb6f5e66", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 476.248719, - "y": -2586.664982 - }, - "endPoint": { - "x": 476.248719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "eeb7373b-9cf9-57bd-96fa-07e4ca516373", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 25.99", - "basePoint": { - "x": 463.253719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "de17a473-9ebf-5585-9feb-59b3f98a1a3e", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 19.6", - "basePoint": { - "x": 463.253719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8bad3f3c-0fed-5f1c-9239-ef40652335a4", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 476.248719303183, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 504.748719303183, - "y": -2591.664981814357 - } - } - }, - { - "id": "7d933867-f9f3-527c-be2a-53bfb0c4c4a5", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "3491469b-af11-5a74-9812-d941a56579b4", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 504.748719, - "y": -2591.664982 - }, - "endPoint": { - "x": 504.748719, - "y": -2596.664982 - } - } - }, - { - "id": "4201ca21-e88c-533e-9f94-f452602cbba8", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 504.748719, - "y": -2596.664982 - }, - "endPoint": { - "x": 519.488719, - "y": -2596.664982 - } - } - }, - { - "id": "0e72473d-8c39-5d4c-a60d-1a9841800eae", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 519.488719, - "y": -2596.664982 - }, - "endPoint": { - "x": 519.488719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "ff18c58f-c211-5d50-b6b7-5d659315f48b", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 14.74", - "basePoint": { - "x": 512.118719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c3f70e33-383b-5cfb-8170-530c5e72e235", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 60.3", - "basePoint": { - "x": 512.118719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "246fd407-fea9-5d20-b7ad-117c02c126d6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 519.4887193031827, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 566.1487193031826, - "y": -2591.664981814357 - } - } - }, - { - "id": "c05c6735-8d52-5bf8-a24d-5a20b745180f", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "c417dcc2-6e1d-5690-beec-ad304d7084b0", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 566.148719, - "y": -2591.664982 - }, - "endPoint": { - "x": 566.148719, - "y": -2596.664982 - } - } - }, - { - "id": "30b94fa0-0cdb-577c-982c-4cd642d4ff47", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 566.148719, - "y": -2596.664982 - }, - "endPoint": { - "x": 581.348719, - "y": -2596.664982 - } - } - }, - { - "id": "f848880d-f46f-52b9-ac8a-5a3655e4024f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 581.348719, - "y": -2596.664982 - }, - "endPoint": { - "x": 581.348719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "9359d9a9-1bc4-5704-9e4c-6120b1691c95", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 15.20", - "basePoint": { - "x": 573.748719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c6b1bfc4-b505-5d09-8fe8-025c11504d1a", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 12.7", - "basePoint": { - "x": 573.748719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f83c0092-f6a2-5d98-aa0e-2486396ff975", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 581.3487193031829, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 582.8387193031826, - "y": -2591.664981814357 - } - } - }, - { - "id": "f970d35d-c84c-50a4-a3c4-e425194fa980", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "54da5a93-66cf-5b4d-a999-12e5fc17391f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 582.838719, - "y": -2591.664982 - }, - "endPoint": { - "x": 582.838719, - "y": -2586.664982 - } - } - }, - { - "id": "e9c24ea0-796a-59c2-98e6-ae11042b850e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 582.838719, - "y": -2586.664982 - }, - "endPoint": { - "x": 611.998719, - "y": -2586.664982 - } - } - }, - { - "id": "364c3b88-56a6-53d7-926e-f8788ab181d5", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 611.998719, - "y": -2586.664982 - }, - "endPoint": { - "x": 611.998719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "25c4c411-e99a-5e8e-aec3-793b8ad05204", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 29.16", - "basePoint": { - "x": 597.418719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7d88d07c-5cf3-5255-9da1-4920e9c2d1a4", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 32.1", - "basePoint": { - "x": 597.418719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0f775dde-873e-526c-89eb-5cbe378a8fa3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 611.998719303183, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 622.8087193031829, - "y": -2591.664981814357 - } - } - }, - { - "id": "49f2029a-bf7f-52be-a77d-4da7960d98fc", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "96523005-0d45-5867-9a3d-ef7f0400e6de", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 622.808719, - "y": -2591.664982 - }, - "endPoint": { - "x": 622.808719, - "y": -2586.664982 - } - } - }, - { - "id": "a57cd307-90ac-596e-b853-ac4e2cab65ef", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 622.808719, - "y": -2586.664982 - }, - "endPoint": { - "x": 640.348719, - "y": -2586.664982 - } - } - }, - { - "id": "b3ffe440-a8b2-53fb-8f65-0245c6b10755", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 640.348719, - "y": -2586.664982 - }, - "endPoint": { - "x": 640.348719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "6495da07-e5dd-5591-be09-b3f9f49ec510", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 17.54", - "basePoint": { - "x": 631.578719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "603616ec-4a0e-5b28-b69a-21331d979a4c", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 15.0", - "basePoint": { - "x": 631.578719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "149f371b-ab09-56d9-b8ac-c39ec9282b9b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 640.3487193031829, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 645.5987193031829, - "y": -2591.664981814357 - } - } - }, - { - "id": "a03e1b4d-439c-5a7e-8b80-ee8c6d6464fc", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "419fe1ea-6104-51a7-8902-999edde537c4", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 645.598719, - "y": -2591.664982 - }, - "endPoint": { - "x": 645.598719, - "y": -2596.664982 - } - } - }, - { - "id": "0db7b31b-27f0-5e58-8543-d08e6c94bebf", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 645.598719, - "y": -2596.664982 - }, - "endPoint": { - "x": 660.518719, - "y": -2596.664982 - } - } - }, - { - "id": "37eb23b4-974c-5122-bd4b-cc81a73bdc49", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 660.518719, - "y": -2596.664982 - }, - "endPoint": { - "x": 660.518719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "c7140b5b-c94c-5160-9e33-1015c591a276", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 14.92", - "basePoint": { - "x": 653.058719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8564e5d7-c13b-591e-bfc2-bd9bdc72208f", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 15.0", - "basePoint": { - "x": 653.058719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "81cdc59c-7ce2-5977-8384-aaedb9889efb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 660.5187193031829, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 677.4687193031828, - "y": -2591.664981814357 - } - } - }, - { - "id": "f1525539-ed83-5ee6-bbf1-970b02da54f4", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "96a3646b-de95-5897-b31d-38c537e907ce", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 677.468719, - "y": -2591.664982 - }, - "endPoint": { - "x": 677.468719, - "y": -2596.664982 - } - } - }, - { - "id": "075f80d7-b181-5053-b395-4e293000aa92", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 677.468719, - "y": -2596.664982 - }, - "endPoint": { - "x": 689.198719, - "y": -2596.664982 - } - } - } - ] - }, - { - "id": "dfdcb326-52c1-52b8-b89f-763345d935ea", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 11.73", - "basePoint": { - "x": 683.333719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "006cff83-9885-5d54-8010-488af0697efe", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 12.9", - "basePoint": { - "x": 683.333719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "928d3f5b-0392-58db-8923-387408edcb81", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "ce2130ad-7d95-5869-8881-b0c11231f5e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.115883, - "y": -2637.139277 - }, - "endPoint": { - "x": 314.362633, - "y": -2636.988651 - } - } - }, - { - "id": "3b1ce33b-5758-58b4-b654-cd926ba92543", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.362633, - "y": -2636.988651 - }, - "endPoint": { - "x": 314.590917, - "y": -2636.72368 - } - } - }, - { - "id": "539fdc55-aecd-5323-b26d-9f52be008e2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.590917, - "y": -2636.72368 - }, - "endPoint": { - "x": 314.795704, - "y": -2636.360219 - } - } - }, - { - "id": "88633f97-1d86-56f1-9235-ddce55273096", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.795704, - "y": -2636.360219 - }, - "endPoint": { - "x": 314.993823, - "y": -2636.118756 - } - } - }, - { - "id": "c4dc6e5c-b706-562a-88f6-fe52668813bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.993823, - "y": -2636.118756 - }, - "endPoint": { - "x": 315.255554, - "y": -2635.961084 - } - } - }, - { - "id": "2fec5052-599b-542a-8e20-f086c3434050", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.255554, - "y": -2635.961084 - }, - "endPoint": { - "x": 315.534213, - "y": -2635.833635 - } - } - }, - { - "id": "2f4ff199-76ae-5206-a2ad-3daf76fa1f1b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.534213, - "y": -2635.833635 - }, - "endPoint": { - "x": 315.77922, - "y": -2635.84371 - } - } - }, - { - "id": "dd92a155-bbb8-528b-9219-3b9403e1977f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.77922, - "y": -2635.84371 - }, - "endPoint": { - "x": 316.067934, - "y": -2635.964442 - } - } - }, - { - "id": "9a63b6e8-df5f-5a2a-9bd5-f80b06125ce9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.067934, - "y": -2635.964442 - }, - "endPoint": { - "x": 316.366702, - "y": -2636.195885 - } - } - }, - { - "id": "221c2907-7d7f-5569-9f78-2a3bb58569e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.366702, - "y": -2636.195885 - }, - "endPoint": { - "x": 316.58965, - "y": -2636.461462 - } - } - }, - { - "id": "11292f79-fb62-5399-97a9-ccc88c9ca1a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.58965, - "y": -2636.461462 - }, - "endPoint": { - "x": 316.710512, - "y": -2636.723075 - } - } - }, - { - "id": "d135b15f-3c3e-5553-a5d8-78aa1a2a2784", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.710512, - "y": -2636.723075 - }, - "endPoint": { - "x": 316.831374, - "y": -2636.934369 - } - } - }, - { - "id": "51b83bcb-790f-58a5-9f14-d0ad9f2af7c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.831374, - "y": -2636.934369 - }, - "endPoint": { - "x": 317.103262, - "y": -2637.045026 - } - } - }, - { - "id": "ab17c202-a47f-5828-a320-9f3e9d7ecc50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.103262, - "y": -2637.045026 - }, - "endPoint": { - "x": 317.50268, - "y": -2637.071892 - } - } - }, - { - "id": "00ccee8b-8173-5a25-a4cb-0c86fdaac8f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.50268, - "y": -2637.071892 - }, - "endPoint": { - "x": 317.757844, - "y": -2637.128927 - } - } - }, - { - "id": "1434e8dc-918c-5e17-8157-ef9c577a8253", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.757844, - "y": -2637.128927 - }, - "endPoint": { - "x": 318.246011, - "y": -2637.115549 - } - } - }, - { - "id": "ebe5c7a2-d9de-51f7-8e9d-a57dd69bf1f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.246011, - "y": -2637.115549 - }, - "endPoint": { - "x": 318.450799, - "y": -2636.988101 - } - } - }, - { - "id": "2dced3ec-8e1a-5607-bce0-4d830360e359", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.450799, - "y": -2636.988101 - }, - "endPoint": { - "x": 318.498712, - "y": -2636.958702 - } - } - }, - { - "id": "e78c20d2-f4b4-5e6b-a636-7c9400062625", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.498712, - "y": -2636.958702 - }, - "endPoint": { - "x": 318.723302, - "y": -2637.109108 - } - } - }, - { - "id": "76b4223f-51e9-5251-a3e9-534fd869a50b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.723302, - "y": -2637.109108 - }, - "endPoint": { - "x": 319.109998, - "y": -2637.500096 - } - } - }, - { - "id": "c24b89c7-40e5-5a2b-9264-c4f6c4559bcb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.109998, - "y": -2637.500096 - }, - "endPoint": { - "x": 319.659929, - "y": -2637.952688 - } - } - }, - { - "id": "da6afdeb-950d-593e-a2ef-38c3cf1b6cee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.659929, - "y": -2637.952688 - }, - "endPoint": { - "x": 319.938486, - "y": -2638.302055 - } - } - }, - { - "id": "2fd05a50-ae85-5e93-ad80-f9083d28b92a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.938486, - "y": -2638.302055 - }, - "endPoint": { - "x": 319.964341, - "y": -2638.339547 - } - } - }, - { - "id": "650c59a2-f581-5a7c-bde3-910c1e932105", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.964341, - "y": -2638.339547 - }, - "endPoint": { - "x": 319.820292, - "y": -2638.319617 - } - } - }, - { - "id": "c5c3b377-2494-53b0-96b8-4419a0b3cbc3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.820292, - "y": -2638.319617 - }, - "endPoint": { - "x": 319.736161, - "y": -2638.311084 - } - } - }, - { - "id": "9f6479a6-050c-5555-a886-13532f3318a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.736161, - "y": -2638.311084 - }, - "endPoint": { - "x": 319.633561, - "y": -2638.313947 - } - } - }, - { - "id": "1e5d7f0a-9d3b-5f35-9823-70cb0e1a6444", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.633561, - "y": -2638.313947 - }, - "endPoint": { - "x": 319.550867, - "y": -2638.336739 - } - } - }, - { - "id": "2bdb111a-dd8d-546b-85ac-09d635fbb6be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.550867, - "y": -2638.336739 - }, - "endPoint": { - "x": 319.536605, - "y": -2638.382323 - } - } - }, - { - "id": "0a3e5160-1f0f-54ba-9699-c868a2f27621", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.536605, - "y": -2638.382323 - }, - "endPoint": { - "x": 319.556509, - "y": -2638.439303 - } - } - }, - { - "id": "aa083d33-7ea3-525c-8faa-baa1123130a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.556509, - "y": -2638.439303 - }, - "endPoint": { - "x": 319.562255, - "y": -2638.500522 - } - } - }, - { - "id": "3ae959c1-0859-5d38-842e-7fc34bd41686", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.562255, - "y": -2638.500522 - }, - "endPoint": { - "x": 319.530449, - "y": -2638.628466 - } - } - }, - { - "id": "a764d250-8698-54f9-a1c5-fa3953031fa8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.530449, - "y": -2638.628466 - }, - "endPoint": { - "x": 319.525114, - "y": -2638.75184 - } - } - }, - { - "id": "037940db-e242-5f14-9aec-cd1aad1463a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.525114, - "y": -2638.75184 - }, - "endPoint": { - "x": 319.537631, - "y": -2638.8609 - } - } - }, - { - "id": "1e743f02-581c-5abb-9271-959638ef12da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.537631, - "y": -2638.8609 - }, - "endPoint": { - "x": 319.544813, - "y": -2638.972934 - } - } - }, - { - "id": "86e35e37-ed6e-5826-8519-46d10367bc9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.544813, - "y": -2638.972934 - }, - "endPoint": { - "x": 319.568001, - "y": -2639.123119 - } - } - }, - { - "id": "3d301378-c687-59d4-8cae-d9e84cb81c1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.568001, - "y": -2639.123119 - }, - "endPoint": { - "x": 319.55733, - "y": -2639.257283 - } - } - }, - { - "id": "6d4af496-72f1-5385-9693-48532b22253b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.55733, - "y": -2639.257283 - }, - "endPoint": { - "x": 319.51075, - "y": -2639.402128 - } - } - }, - { - "id": "fb600802-0fae-51ab-900d-0cb6efa6e392", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.51075, - "y": -2639.402128 - }, - "endPoint": { - "x": 319.39943, - "y": -2639.545652 - } - } - }, - { - "id": "72b2adb0-6b2d-5998-8530-c0516df191ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.39943, - "y": -2639.545652 - }, - "endPoint": { - "x": 319.283185, - "y": -2639.652951 - } - } - }, - { - "id": "3e91b8e6-cc9a-5a1d-85f4-0e5cdefea29d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.283185, - "y": -2639.652951 - }, - "endPoint": { - "x": 319.139957, - "y": -2639.72986 - } - } - }, - { - "id": "52a829b4-c92d-5477-b717-dec73b77383d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.139957, - "y": -2639.72986 - }, - "endPoint": { - "x": 319.102406, - "y": -2639.778142 - } - } - }, - { - "id": "206e7fa0-b7cf-50ae-bada-e7f53b656fb3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.102406, - "y": -2639.778142 - }, - "endPoint": { - "x": 319.060853, - "y": -2639.823671 - } - } - }, - { - "id": "b5a81e28-717c-5862-afc3-3dc7ee07c8d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.060853, - "y": -2639.823671 - }, - "endPoint": { - "x": 318.770908, - "y": -2639.837985 - } - } - }, - { - "id": "4d51f79a-3a81-5d44-b91a-390ff8bc0693", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.770908, - "y": -2639.837985 - }, - "endPoint": { - "x": 318.395087, - "y": -2639.837985 - } - } - }, - { - "id": "4ad0126d-2a92-5486-8e29-bbb0f3e952ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.395087, - "y": -2639.837985 - }, - "endPoint": { - "x": 318.259143, - "y": -2639.741421 - } - } - }, - { - "id": "55a968b4-2c1c-5b9d-8c66-c4db3b8e1d5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.259143, - "y": -2639.741421 - }, - "endPoint": { - "x": 318.214308, - "y": -2639.575106 - } - } - }, - { - "id": "fa56b3b5-5146-52e4-98ec-6891af04fff5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.214308, - "y": -2639.575106 - }, - "endPoint": { - "x": 318.230108, - "y": -2639.443253 - } - } - }, - { - "id": "a1acc587-fa08-5feb-928c-4cd5eb61db50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.230108, - "y": -2639.443253 - }, - "endPoint": { - "x": 318.20692, - "y": -2639.303803 - } - } - }, - { - "id": "2d28eb91-fe14-5a74-9188-85319a53eab7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.20692, - "y": -2639.303803 - }, - "endPoint": { - "x": 318.149568, - "y": -2639.219737 - } - } - }, - { - "id": "728bf514-4e95-522c-8685-d26decf2ced9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.149568, - "y": -2639.219737 - }, - "endPoint": { - "x": 318.122789, - "y": -2639.142828 - } - } - }, - { - "id": "c4bc9db9-ce0c-57ea-a78c-fd5bf07128ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.122789, - "y": -2639.142828 - }, - "endPoint": { - "x": 318.110272, - "y": -2638.862112 - } - } - }, - { - "id": "52030772-072d-587c-ab38-90914288827c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.110272, - "y": -2638.862112 - }, - "endPoint": { - "x": 318.029732, - "y": -2638.733342 - } - } - }, - { - "id": "cee51016-6091-5951-88a6-f8db28e48d76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.029732, - "y": -2638.733342 - }, - "endPoint": { - "x": 317.947345, - "y": -2638.6332 - } - } - }, - { - "id": "13d37a83-0dd2-5cff-ab08-78e4474520f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.947345, - "y": -2638.6332 - }, - "endPoint": { - "x": 317.875833, - "y": -2638.572367 - } - } - }, - { - "id": "659d7793-717f-5067-9ee8-c16932d6dcfb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.875833, - "y": -2638.572367 - }, - "endPoint": { - "x": 317.828637, - "y": -2638.569999 - } - } - }, - { - "id": "724d6066-b941-57c4-bf5b-bdbea637893e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.828637, - "y": -2638.569999 - }, - "endPoint": { - "x": 317.726654, - "y": -2638.612886 - } - } - }, - { - "id": "79657405-3629-53e7-ba47-8f36d9d7e38a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.726654, - "y": -2638.612886 - }, - "endPoint": { - "x": 317.622824, - "y": -2638.696952 - } - } - }, - { - "id": "163dd8a9-2eb0-51e7-a699-ca41ddfb29c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.622824, - "y": -2638.696952 - }, - "endPoint": { - "x": 317.570908, - "y": -2638.786358 - } - } - }, - { - "id": "bdec26f5-a078-5853-9337-80780903d0ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.570908, - "y": -2638.786358 - }, - "endPoint": { - "x": 317.556647, - "y": -2638.965171 - } - } - }, - { - "id": "ec436322-dec1-5475-be9a-72c4be84909d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.556647, - "y": -2638.965171 - }, - "endPoint": { - "x": 317.513658, - "y": -2639.054578 - } - } - }, - { - "id": "dd75f157-1b8b-5d08-ab0c-251de33e2574", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.513658, - "y": -2639.054578 - }, - "endPoint": { - "x": 317.567317, - "y": -2639.169033 - } - } - }, - { - "id": "249d7e69-45e8-5cc3-b8b6-100bf61adf21", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.567317, - "y": -2639.169033 - }, - "endPoint": { - "x": 317.567317, - "y": -2639.28448 - } - } - }, - { - "id": "1805e3e1-39ef-5e9e-9404-269b6c7f2eb5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.567317, - "y": -2639.28448 - }, - "endPoint": { - "x": 317.569062, - "y": -2639.500839 - } - } - }, - { - "id": "ece09c58-f05b-5e5b-bbba-76fb7d2d5d10", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.569062, - "y": -2639.500839 - }, - "endPoint": { - "x": 317.597687, - "y": -2639.643922 - } - } - }, - { - "id": "84c3f72c-82d7-5dfc-8640-15b2f29b76e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.597687, - "y": -2639.643922 - }, - "endPoint": { - "x": 317.683562, - "y": -2639.695782 - } - } - }, - { - "id": "f4c8c175-1ccb-5fcd-97d0-b41d1b8d2ae3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.683562, - "y": -2639.695782 - }, - "endPoint": { - "x": 317.758767, - "y": -2639.854335 - } - } - }, - { - "id": "166d46f4-182d-5925-997d-9392c0434914", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.758767, - "y": -2639.854335 - }, - "endPoint": { - "x": 317.916257, - "y": -2639.938402 - } - } - }, - { - "id": "a312c7cf-4c44-5424-8e0d-4131d54acfe0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.916257, - "y": -2639.938402 - }, - "endPoint": { - "x": 318.169985, - "y": -2639.940604 - } - } - }, - { - "id": "30ab0655-5cc2-542c-8e5e-1d4206d016ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.169985, - "y": -2639.940604 - }, - "endPoint": { - "x": 318.391599, - "y": -2639.926675 - } - } - }, - { - "id": "70d5d648-b6b6-5664-8038-3c7682af930d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.391599, - "y": -2639.926675 - }, - "endPoint": { - "x": 318.692214, - "y": -2639.937521 - } - } - }, - { - "id": "3823f2c7-9d41-5d75-9fc4-0c37b609ea6f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.692214, - "y": -2639.937521 - }, - "endPoint": { - "x": 319.122207, - "y": -2639.952991 - } - } - }, - { - "id": "52aa9a5a-b2f1-5643-aad0-273d5499bc2a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.122207, - "y": -2639.952991 - }, - "endPoint": { - "x": 319.503363, - "y": -2640.007218 - } - } - }, - { - "id": "62f13dcd-ace0-588c-9438-f3d2b76ecb63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.503363, - "y": -2640.007218 - }, - "endPoint": { - "x": 319.853637, - "y": -2640.083081 - } - } - }, - { - "id": "688f8af8-3712-51c7-88e4-a26957a14648", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.853637, - "y": -2640.083081 - }, - "endPoint": { - "x": 320.08274, - "y": -2640.261123 - } - } - }, - { - "id": "866ea788-4743-5fcc-8d90-05530a2f3574", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.08274, - "y": -2640.261123 - }, - "endPoint": { - "x": 320.257262, - "y": -2640.514809 - } - } - }, - { - "id": "e343a86a-c716-5ec6-bd78-5fac88c563a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.257262, - "y": -2640.514809 - }, - "endPoint": { - "x": 320.265264, - "y": -2640.827896 - } - } - }, - { - "id": "2f54910c-86fb-5c41-a33f-67c2cbce9d71", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.265264, - "y": -2640.827896 - }, - "endPoint": { - "x": 320.281065, - "y": -2641.041888 - } - } - }, - { - "id": "077914c8-f86f-5e30-b5a2-60041459637d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.281065, - "y": -2641.041888 - }, - "endPoint": { - "x": 320.185853, - "y": -2641.25588 - } - } - }, - { - "id": "d67e25e3-9017-5cc7-817d-44056282b0e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.185853, - "y": -2641.25588 - }, - "endPoint": { - "x": 320.094642, - "y": -2641.39065 - } - } - }, - { - "id": "d6606d3b-9177-52a7-81c1-43fa316a1443", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.094642, - "y": -2641.39065 - }, - "endPoint": { - "x": 319.884416, - "y": -2641.505546 - } - } - }, - { - "id": "7bf99867-5698-52e2-9451-fce199e15b03", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.884416, - "y": -2641.505546 - }, - "endPoint": { - "x": 319.499772, - "y": -2641.54122 - } - } - }, - { - "id": "6bf4833e-2fb7-59eb-aed6-34fa93bea766", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.499772, - "y": -2641.54122 - }, - "endPoint": { - "x": 319.059519, - "y": -2641.553112 - } - } - }, - { - "id": "71d55762-2484-5f8f-8add-3a0d5fc6252b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.059519, - "y": -2641.553112 - }, - "endPoint": { - "x": 318.559759, - "y": -2641.521401 - } - } - }, - { - "id": "4a45b7d5-55c6-5ad6-a8ba-5080af9b337b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.559759, - "y": -2641.521401 - }, - "endPoint": { - "x": 318.416941, - "y": -2641.461944 - } - } - }, - { - "id": "e516f7ce-2013-5ac6-9b97-e7f384c0c682", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.416941, - "y": -2641.461944 - }, - "endPoint": { - "x": 318.119506, - "y": -2641.446088 - } - } - }, - { - "id": "88b20f42-02d0-5040-a4e9-55048e4484cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.119506, - "y": -2641.446088 - }, - "endPoint": { - "x": 317.897379, - "y": -2641.461944 - } - } - }, - { - "id": "940bf270-a7a7-524b-a692-d22d285c6d77", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.897379, - "y": -2641.461944 - }, - "endPoint": { - "x": 317.725731, - "y": -2641.698067 - } - } - }, - { - "id": "805ef684-c6a1-5fcf-95a3-18f49fed511f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.725731, - "y": -2641.698067 - }, - "endPoint": { - "x": 317.678125, - "y": -2641.816982 - } - } - }, - { - "id": "6fe4d02e-03d8-5c1f-bb63-1bb44d88d180", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.678125, - "y": -2641.816982 - }, - "endPoint": { - "x": 317.598815, - "y": -2641.924005 - } - } - }, - { - "id": "ae9764c6-e63e-5a34-962d-210e8217363a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.598815, - "y": -2641.924005 - }, - "endPoint": { - "x": 317.444096, - "y": -2642.102322 - } - } - }, - { - "id": "e693f394-5b6e-5ab7-9ccc-cdc257608112", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.444096, - "y": -2642.102322 - }, - "endPoint": { - "x": 317.348884, - "y": -2642.201418 - } - } - }, - { - "id": "bcfcfa22-4e58-54a9-ad50-3e2e0cd92075", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.348884, - "y": -2642.201418 - }, - "endPoint": { - "x": 317.333084, - "y": -2642.407482 - } - } - }, - { - "id": "ea92ca01-f430-5273-9474-f28aeb69b43f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.333084, - "y": -2642.407482 - }, - "endPoint": { - "x": 317.392591, - "y": -2642.554089 - } - } - }, - { - "id": "23e36cdf-51dd-5ccf-9c28-ad4e7428764f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.392591, - "y": -2642.554089 - }, - "endPoint": { - "x": 317.499602, - "y": -2642.621474 - } - } - }, - { - "id": "4ef6ee8b-d558-5707-be83-bc1613827efb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.499602, - "y": -2642.621474 - }, - "endPoint": { - "x": 317.832844, - "y": -2642.633366 - } - } - }, - { - "id": "df75f1a7-dd06-51f5-b63e-b23d3bf593f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.832844, - "y": -2642.633366 - }, - "endPoint": { - "x": 318.364308, - "y": -2642.637329 - } - } - }, - { - "id": "4548ce58-1f45-50b0-a0d3-736a43101b17", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.364308, - "y": -2642.637329 - }, - "endPoint": { - "x": 318.570532, - "y": -2642.633366 - } - } - }, - { - "id": "80dead43-cf05-5cd7-bd98-796cc35ae6b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.570532, - "y": -2642.633366 - }, - "endPoint": { - "x": 318.72125, - "y": -2642.51847 - } - } - }, - { - "id": "1458c76f-a815-54d2-b411-361621ef5958", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.72125, - "y": -2642.51847 - }, - "endPoint": { - "x": 318.963179, - "y": -2642.447121 - } - } - }, - { - "id": "db88fcee-0f6a-5009-a736-9c30fbf21bd9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.963179, - "y": -2642.447121 - }, - "endPoint": { - "x": 319.198028, - "y": -2642.403684 - } - } - }, - { - "id": "acbf5ea3-df48-5665-8149-7af8f2a7f9e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.198028, - "y": -2642.403684 - }, - "endPoint": { - "x": 319.475661, - "y": -2642.407647 - } - } - }, - { - "id": "9417953a-89d1-5cc8-92ee-24423bd3a70f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.475661, - "y": -2642.407647 - }, - "endPoint": { - "x": 319.793001, - "y": -2642.39972 - } - } - }, - { - "id": "5edd1129-3867-5dbc-9b26-b7a435675156", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.793001, - "y": -2642.39972 - }, - "endPoint": { - "x": 319.931817, - "y": -2642.387828 - } - } - }, - { - "id": "8e908f2c-d5f5-5e62-8885-7b3d7a4eaf48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.931817, - "y": -2642.387828 - }, - "endPoint": { - "x": 319.991325, - "y": -2642.463141 - } - } - }, - { - "id": "b0e930fc-db19-5383-ac76-cd0fe517e5d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.991325, - "y": -2642.463141 - }, - "endPoint": { - "x": 320.122241, - "y": -2642.498816 - } - } - }, - { - "id": "bbf3f693-061f-53a5-8bd2-3d99781866d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.122241, - "y": -2642.498816 - }, - "endPoint": { - "x": 320.20945, - "y": -2642.502779 - } - } - }, - { - "id": "90566192-c053-5a2d-971c-090ab775de3d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.20945, - "y": -2642.502779 - }, - "endPoint": { - "x": 320.264957, - "y": -2642.558273 - } - } - }, - { - "id": "664a870a-5174-59b8-8718-7648352c3ea1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.264957, - "y": -2642.558273 - }, - "endPoint": { - "x": 320.304662, - "y": -2642.669205 - } - } - }, - { - "id": "ca205cee-0b97-5b70-8f94-f2d0241e50ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.304662, - "y": -2642.669205 - }, - "endPoint": { - "x": 320.368069, - "y": -2642.744518 - } - } - }, - { - "id": "4dba3c89-7832-5698-8454-c13e8bd54f43", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.368069, - "y": -2642.744518 - }, - "endPoint": { - "x": 320.397309, - "y": -2643.08794 - } - } - }, - { - "id": "c1bbae32-8630-5ef9-8946-291852efc966", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.397309, - "y": -2643.08794 - }, - "endPoint": { - "x": 320.407056, - "y": -2643.317346 - } - } - }, - { - "id": "63544229-bf6f-5456-a0c9-2f6c060772bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.407056, - "y": -2643.317346 - }, - "endPoint": { - "x": 320.399156, - "y": -2643.694406 - } - } - }, - { - "id": "a3dcd16e-411f-5fe1-ae0a-e3f54dff0f18", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.399156, - "y": -2643.694406 - }, - "endPoint": { - "x": 320.191496, - "y": -2644.166102 - } - } - }, - { - "id": "b924a514-30d3-57ea-9069-62134e1e47e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.191496, - "y": -2644.166102 - }, - "endPoint": { - "x": 319.858767, - "y": -2644.502862 - } - } - }, - { - "id": "90d47c23-9ded-5184-93eb-01d3cb7a15a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.858767, - "y": -2644.502862 - }, - "endPoint": { - "x": 319.52614, - "y": -2644.599095 - } - } - }, - { - "id": "73167b41-4f2a-53fa-8f03-436d46d8b4f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.52614, - "y": -2644.599095 - }, - "endPoint": { - "x": 319.324738, - "y": -2644.647211 - } - } - }, - { - "id": "56b9e974-c903-5f22-b24d-adf51d3c13ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.324738, - "y": -2644.647211 - }, - "endPoint": { - "x": 318.856373, - "y": -2644.699677 - } - } - }, - { - "id": "c9fb041d-fcce-5ecd-b85d-da0151901ac3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.856373, - "y": -2644.699677 - }, - "endPoint": { - "x": 318.676927, - "y": -2644.73904 - } - } - }, - { - "id": "6fbea027-c7f7-52ff-97c6-9be33013f2ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.676927, - "y": -2644.73904 - }, - "endPoint": { - "x": 317.770874, - "y": -2644.577239 - } - } - }, - { - "id": "dc658d78-9c88-5195-930d-e6e38aefc616", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.770874, - "y": -2644.577239 - }, - "endPoint": { - "x": 317.363761, - "y": -2644.502862 - } - } - }, - { - "id": "005df8ce-75c8-5b1c-af44-a81a1574a0f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.363761, - "y": -2644.502862 - }, - "endPoint": { - "x": 316.831374, - "y": -2644.301147 - } - } - }, - { - "id": "0cb0cb50-b537-54a6-a744-aa94b5497a3e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.831374, - "y": -2644.301147 - }, - "endPoint": { - "x": 316.603706, - "y": -2644.22677 - } - } - }, - { - "id": "1c4881eb-8fd8-54f6-b8f3-55b092193953", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.603706, - "y": -2644.22677 - }, - "endPoint": { - "x": 316.393583, - "y": -2644.051811 - } - } - }, - { - "id": "76683ccb-0358-5c52-a474-af94af745f3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.393583, - "y": -2644.051811 - }, - "endPoint": { - "x": 316.218549, - "y": -2643.872503 - } - } - }, - { - "id": "a88a2d43-7e8f-5ff3-91ec-8ccc651b120e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.218549, - "y": -2643.872503 - }, - "endPoint": { - "x": 316.082811, - "y": -2643.863749 - } - } - }, - { - "id": "2fe1bb0b-9fc5-5e7e-bcce-df279e445f97", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.082811, - "y": -2643.863749 - }, - "endPoint": { - "x": 315.920909, - "y": -2643.959982 - } - } - }, - { - "id": "cff892ef-cf5e-5003-b472-97ea2a753007", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.920909, - "y": -2643.959982 - }, - "endPoint": { - "x": 315.658255, - "y": -2644.152448 - } - } - }, - { - "id": "deac1925-73f8-5fb8-9f6f-5da5fd8966d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.658255, - "y": -2644.152448 - }, - "endPoint": { - "x": 315.417558, - "y": -2644.222421 - } - } - }, - { - "id": "ea9fec9d-ec1f-54ba-b5d1-bcacffc971f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.417558, - "y": -2644.222421 - }, - "endPoint": { - "x": 315.211744, - "y": -2644.336106 - } - } - }, - { - "id": "1147108f-2d7f-5bb1-8ff9-b4c6c30fe70d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.211744, - "y": -2644.336106 - }, - "endPoint": { - "x": 314.949193, - "y": -2644.458599 - } - } - }, - { - "id": "ce67ccab-42bd-5adf-b2da-a60d490c5755", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.949193, - "y": -2644.458599 - }, - "endPoint": { - "x": 314.59461, - "y": -2644.633558 - } - } - }, - { - "id": "00407e48-c48a-554c-9798-cd3c469f28c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.59461, - "y": -2644.633558 - }, - "endPoint": { - "x": 314.318824, - "y": -2644.725387 - } - } - }, - { - "id": "459725f0-927b-5d7b-9d99-15a14e5b86c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.318824, - "y": -2644.725387 - }, - "endPoint": { - "x": 314.174364, - "y": -2644.804113 - } - } - }, - { - "id": "fb751037-f5bd-5787-b6d1-dbf218527575", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.174364, - "y": -2644.804113 - }, - "endPoint": { - "x": 313.671013, - "y": -2644.825969 - } - } - }, - { - "id": "246a261d-ecc2-5756-9785-0ffed5cd5257", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.671013, - "y": -2644.825969 - }, - "endPoint": { - "x": 313.059522, - "y": -2644.796516 - } - } - }, - { - "id": "c905fa7c-c722-5c48-89b2-503b6d48822f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.059522, - "y": -2644.796516 - }, - "endPoint": { - "x": 312.696218, - "y": -2644.757153 - } - } - }, - { - "id": "6a83a820-28cc-52a8-95c6-d67b4bcc91e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.696218, - "y": -2644.757153 - }, - "endPoint": { - "x": 312.402887, - "y": -2644.542831 - } - } - }, - { - "id": "98e309ca-5122-51c6-8e21-4256931a5f00", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.402887, - "y": -2644.542831 - }, - "endPoint": { - "x": 312.07457, - "y": -2644.381029 - } - } - }, - { - "id": "b162c232-6cf6-508b-9af5-0f9de232191e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.07457, - "y": -2644.381029 - }, - "endPoint": { - "x": 311.794475, - "y": -2643.982995 - } - } - }, - { - "id": "62a3086e-4ca3-5e47-be1d-1ee6a9e1f662", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.794475, - "y": -2643.982995 - }, - "endPoint": { - "x": 311.662635, - "y": -2643.80187 - } - } - }, - { - "id": "b2e736ec-2bff-53ce-83b8-7b7a380ae4db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.662635, - "y": -2643.80187 - }, - "endPoint": { - "x": 311.658223, - "y": -2643.360123 - } - } - }, - { - "id": "9bef62a0-420f-52f5-b2d6-2c56fe478a83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.658223, - "y": -2643.360123 - }, - "endPoint": { - "x": 311.737019, - "y": -2643.193917 - } - } - }, - { - "id": "f965bafb-c816-5c4d-a5d1-56fd4363a485", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.737019, - "y": -2643.193917 - }, - "endPoint": { - "x": 311.776417, - "y": -2643.018958 - } - } - }, - { - "id": "44beccbf-1af4-5926-b337-fed405523b74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.776417, - "y": -2643.018958 - }, - "endPoint": { - "x": 312.008394, - "y": -2642.721561 - } - } - }, - { - "id": "40d8d3d1-075d-5d88-b123-0c1df512153b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.008394, - "y": -2642.721561 - }, - "endPoint": { - "x": 312.266636, - "y": -2642.494081 - } - } - }, - { - "id": "00f62085-71a7-546a-ad50-520766c50fba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.266636, - "y": -2642.494081 - }, - "endPoint": { - "x": 312.695603, - "y": -2642.432862 - } - } - }, - { - "id": "19c929e0-f072-5182-ba45-25453d347b84", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.695603, - "y": -2642.432862 - }, - "endPoint": { - "x": 312.995192, - "y": -2642.461545 - } - } - }, - { - "id": "059e7b2c-255f-510b-98bf-049ce4e327d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.995192, - "y": -2642.461545 - }, - "endPoint": { - "x": 313.415336, - "y": -2642.465894 - } - } - }, - { - "id": "adeb7302-b171-5052-9326-af4e610eaa17", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.415336, - "y": -2642.465894 - }, - "endPoint": { - "x": 313.564207, - "y": -2642.48775 - } - } - }, - { - "id": "5ef3badb-74a8-50ca-950b-199e3822375a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.564207, - "y": -2642.48775 - }, - "endPoint": { - "x": 313.68671, - "y": -2642.583983 - } - } - }, - { - "id": "30901031-9caf-5630-815e-3d5bdd2e1685", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.68671, - "y": -2642.583983 - }, - "endPoint": { - "x": 313.752374, - "y": -2642.614592 - } - } - }, - { - "id": "a2eb600a-fdd5-55de-ac50-16a0da3f3f21", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.752374, - "y": -2642.614592 - }, - "endPoint": { - "x": 314.015028, - "y": -2642.618997 - } - } - }, - { - "id": "dfd15d2f-183f-5f45-a692-0374461cf10a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.015028, - "y": -2642.618997 - }, - "endPoint": { - "x": 314.443995, - "y": -2642.623346 - } - } - }, - { - "id": "a1579ec6-f4e4-5bfa-880e-a217ffbabfc9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.443995, - "y": -2642.623346 - }, - "endPoint": { - "x": 314.592866, - "y": -2642.632099 - } - } - }, - { - "id": "4fbc0d6e-ec66-5b6d-bb8f-4d5163f275c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.592866, - "y": -2642.632099 - }, - "endPoint": { - "x": 314.62344, - "y": -2642.518359 - } - } - }, - { - "id": "87a883ef-6113-570c-9507-ff8589dde79a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.62344, - "y": -2642.518359 - }, - "endPoint": { - "x": 314.540335, - "y": -2642.295339 - } - } - }, - { - "id": "65ce897b-63e7-5ee4-8783-47822626ae2c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.540335, - "y": -2642.295339 - }, - "endPoint": { - "x": 314.321491, - "y": -2642.011044 - } - } - }, - { - "id": "35b3a4e9-b1df-543c-a6f8-2003ba917663", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.321491, - "y": -2642.011044 - }, - "endPoint": { - "x": 314.225151, - "y": -2641.840434 - } - } - }, - { - "id": "958b5d4b-9361-5adb-bb8f-64e064deec17", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.225151, - "y": -2641.840434 - }, - "endPoint": { - "x": 313.98435, - "y": -2641.818578 - } - } - }, - { - "id": "48fa7f89-003a-5acf-a915-fb6359794ec2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.98435, - "y": -2641.818578 - }, - "endPoint": { - "x": 313.866259, - "y": -2641.787969 - } - } - }, - { - "id": "d31267bd-f5f3-596e-927f-7850d825b1a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.866259, - "y": -2641.787969 - }, - "endPoint": { - "x": 313.800595, - "y": -2641.726694 - } - } - }, - { - "id": "ff9f492a-71ee-5534-8f1f-74b0cbcc747b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.800595, - "y": -2641.726694 - }, - "endPoint": { - "x": 313.502955, - "y": -2641.726694 - } - } - }, - { - "id": "a2e6498b-2bbc-562f-938a-87032aa10980", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.502955, - "y": -2641.726694 - }, - "endPoint": { - "x": 313.47669, - "y": -2641.805476 - } - } - }, - { - "id": "024fbdd8-fd7d-5d72-8e26-166d7a099a50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.47669, - "y": -2641.805476 - }, - "endPoint": { - "x": 313.174638, - "y": -2641.822927 - } - } - }, - { - "id": "5a8f09f1-fb7a-59d6-b9d0-900a983eae98", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.174638, - "y": -2641.822927 - }, - "endPoint": { - "x": 312.35169, - "y": -2641.840434 - } - } - }, - { - "id": "88d83d2c-a0bb-5427-b380-d472e0d8652d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.35169, - "y": -2641.840434 - }, - "endPoint": { - "x": 311.983975, - "y": -2641.814174 - } - } - }, - { - "id": "7eb89465-f7e6-5428-9049-78077eb251b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.983975, - "y": -2641.814174 - }, - "endPoint": { - "x": 311.90087, - "y": -2641.735448 - } - } - }, - { - "id": "a516bd0e-a1bf-51fa-b5fc-5c55812f0851", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.90087, - "y": -2641.735448 - }, - "endPoint": { - "x": 311.769543, - "y": -2641.626112 - } - } - }, - { - "id": "00a5aadb-d897-5ebb-9b4f-fd12a3c1a61b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.769543, - "y": -2641.626112 - }, - "endPoint": { - "x": 311.667252, - "y": -2641.541385 - } - } - }, - { - "id": "0dfffbbf-eecd-58c9-be0a-85258e33ec4e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.667252, - "y": -2641.541385 - }, - "endPoint": { - "x": 311.632265, - "y": -2641.458255 - } - } - }, - { - "id": "767c1077-7945-5dd2-bc34-db0819ed5655", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.632265, - "y": -2641.458255 - }, - "endPoint": { - "x": 311.575323, - "y": -2641.217728 - } - } - }, - { - "id": "b37127ab-e4a7-5306-92de-25d26eb0b552", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.575323, - "y": -2641.217728 - }, - "endPoint": { - "x": 311.557881, - "y": -2641.016508 - } - } - }, - { - "id": "95ed4d9e-6290-59e7-a8ac-4c576b948586", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.557881, - "y": -2641.016508 - }, - "endPoint": { - "x": 311.627854, - "y": -2640.535398 - } - } - }, - { - "id": "c941781e-6e79-5060-a120-9e3d820aeed4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.627854, - "y": -2640.535398 - }, - "endPoint": { - "x": 311.820227, - "y": -2640.252755 - } - } - }, - { - "id": "cadb979f-c0b6-5667-97f9-e480a83caca5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.820227, - "y": -2640.252755 - }, - "endPoint": { - "x": 312.135309, - "y": -2640.099707 - } - } - }, - { - "id": "679c9a3d-ee35-584a-8b25-3b58332b3acb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.135309, - "y": -2640.099707 - }, - "endPoint": { - "x": 312.481171, - "y": -2640.095303 - } - } - }, - { - "id": "bc7c243b-c379-5d3d-8408-67618a189533", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.481171, - "y": -2640.095303 - }, - "endPoint": { - "x": 312.505179, - "y": -2640.043278 - } - } - }, - { - "id": "730a880d-083b-5127-aff9-db36ff68ddad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.505179, - "y": -2640.043278 - }, - "endPoint": { - "x": 312.459009, - "y": -2639.989436 - } - } - }, - { - "id": "5730cd30-b6aa-5557-93f3-8480d5efab40", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.459009, - "y": -2639.989436 - }, - "endPoint": { - "x": 312.174297, - "y": -2639.877953 - } - } - }, - { - "id": "982973e6-fce0-5d8f-984e-47d4783d2a44", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.174297, - "y": -2639.877953 - }, - "endPoint": { - "x": 311.912566, - "y": -2639.697214 - } - } - }, - { - "id": "3ed17792-8c36-5c53-a70b-de6791cb524e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.912566, - "y": -2639.697214 - }, - "endPoint": { - "x": 311.808736, - "y": -2639.501114 - } - } - }, - { - "id": "e3d24d8d-8bb1-5ed9-8429-c93254e9a124", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.808736, - "y": -2639.501114 - }, - "endPoint": { - "x": 311.777443, - "y": -2638.895144 - } - } - }, - { - "id": "e510475a-117d-56f6-b516-3b7f157d9d16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.777443, - "y": -2638.895144 - }, - "endPoint": { - "x": 311.86219, - "y": -2638.422182 - } - } - }, - { - "id": "93b049d5-0776-5fb1-9233-15171b9ecf7b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.86219, - "y": -2638.422182 - }, - "endPoint": { - "x": 311.958325, - "y": -2637.995409 - } - } - }, - { - "id": "4ead02d7-a65e-52e3-82b4-c8a337fc91f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.958325, - "y": -2637.995409 - }, - "endPoint": { - "x": 312.305418, - "y": -2637.612514 - } - } - }, - { - "id": "16767e34-a3fc-57ba-85ff-143711a0acfc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.305418, - "y": -2637.612514 - }, - "endPoint": { - "x": 312.632504, - "y": -2637.389494 - } - } - }, - { - "id": "758494b8-273a-590e-8534-46434f963856", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.632504, - "y": -2637.389494 - }, - "endPoint": { - "x": 312.794098, - "y": -2637.254944 - } - } - }, - { - "id": "bdaadae0-c261-5f3b-ba0c-b334fecde0e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.794098, - "y": -2637.254944 - }, - "endPoint": { - "x": 313.101998, - "y": -2637.239529 - } - } - }, - { - "id": "c95fa72e-a039-5167-b39c-a87b4297c0bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.101998, - "y": -2637.239529 - }, - "endPoint": { - "x": 313.198133, - "y": -2637.158821 - } - } - }, - { - "id": "aad716f7-57d7-523e-a16f-0a2798cfd8e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.198133, - "y": -2637.158821 - }, - "endPoint": { - "x": 313.613762, - "y": -2637.135754 - } - } - }, - { - "id": "1c4502e7-86a9-5906-aef4-cface4d78b63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.613762, - "y": -2637.135754 - }, - "endPoint": { - "x": 314.025493, - "y": -2637.139552 - } - } - }, - { - "id": "f082116a-2a46-5b5d-962c-6fe5025510c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.025493, - "y": -2637.139552 - }, - "endPoint": { - "x": 314.115883, - "y": -2637.139277 - } - } - } - ] - }, - { - "id": "8b2ab54d-d4fb-5658-ab3d-0be8a05c0462", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "2a4047b5-6e62-5dbb-8575-ea32f2e27892", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.259384, - "y": -2639.073351 - }, - "endPoint": { - "x": 316.131237, - "y": -2638.890464 - } - } - }, - { - "id": "1e03186c-b7b9-5b8e-a00f-5e75dbaa59ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.131237, - "y": -2638.890464 - }, - "endPoint": { - "x": 315.942968, - "y": -2638.741545 - } - } - }, - { - "id": "a7c4ef65-427b-5dca-a65f-376da7942104", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.942968, - "y": -2638.741545 - }, - "endPoint": { - "x": 315.739001, - "y": -2638.710165 - } - } - }, - { - "id": "9ea0b0c2-4056-587f-964d-bc540de72837", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.739001, - "y": -2638.710165 - }, - "endPoint": { - "x": 315.576894, - "y": -2638.817298 - } - } - }, - { - "id": "e47b0928-4771-5c31-90ec-2344372a2595", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.576894, - "y": -2638.817298 - }, - "endPoint": { - "x": 315.472346, - "y": -2638.960987 - } - } - }, - { - "id": "b079b358-a14a-5072-ba04-349c1027cd45", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.472346, - "y": -2638.960987 - }, - "endPoint": { - "x": 315.359897, - "y": -2639.151691 - } - } - }, - { - "id": "4bb1d0da-497d-5e57-8e13-7ba600f41de3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.359897, - "y": -2639.151691 - }, - "endPoint": { - "x": 315.323269, - "y": -2639.318943 - } - } - }, - { - "id": "a71c4fc6-9782-5642-93b0-cf8a504f0403", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.323269, - "y": -2639.318943 - }, - "endPoint": { - "x": 315.341634, - "y": -2639.475679 - } - } - }, - { - "id": "56fca4e1-ad48-5091-a83c-dda0c5b31fe4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.341634, - "y": -2639.475679 - }, - "endPoint": { - "x": 315.446183, - "y": -2639.621956 - } - } - }, - { - "id": "51fd5b11-6f74-5bc7-9216-fe232942b0ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.446183, - "y": -2639.621956 - }, - "endPoint": { - "x": 315.60829, - "y": -2639.82312 - } - } - }, - { - "id": "c52bac26-5550-574e-9dba-db6a32e074e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.60829, - "y": -2639.82312 - }, - "endPoint": { - "x": 315.799227, - "y": -2639.930254 - } - } - }, - { - "id": "85408a45-ccb6-5ace-9099-27025cf38f7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.799227, - "y": -2639.930254 - }, - "endPoint": { - "x": 315.963796, - "y": -2639.953872 - } - } - }, - { - "id": "aae66827-cfb2-577d-8e24-34cbbb773743", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.963796, - "y": -2639.953872 - }, - "endPoint": { - "x": 316.129083, - "y": -2639.863309 - } - } - }, - { - "id": "39593bc7-c37e-5e7d-b230-c44a8c8d9136", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.129083, - "y": -2639.863309 - }, - "endPoint": { - "x": 316.257024, - "y": -2639.671559 - } - } - }, - { - "id": "5e4ac4d5-a0d8-575e-9f68-39c1fc34eb59", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.257024, - "y": -2639.671559 - }, - "endPoint": { - "x": 316.272414, - "y": -2639.350268 - } - } - }, - { - "id": "c2989ad5-c1f2-5212-9473-865934102717", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.272414, - "y": -2639.350268 - }, - "endPoint": { - "x": 316.259384, - "y": -2639.073351 - } - } - } - ] - }, - { - "id": "66768ee4-fe00-510a-9965-ad5c9857eed1", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "bdc7e32b-932d-5b4a-835c-0e4326335657", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.581957, - "y": -2639.594925 - }, - "endPoint": { - "x": 313.332949, - "y": -2639.870741 - } - } - }, - { - "id": "0c1a9ef6-baa9-5dc7-ac5d-db2606c3eb34", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.332949, - "y": -2639.870741 - }, - "endPoint": { - "x": 313.29591, - "y": -2639.889019 - } - } - }, - { - "id": "7006c2f5-2244-57aa-baaf-fac0120e0e9a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.29591, - "y": -2639.889019 - }, - "endPoint": { - "x": 313.286676, - "y": -2639.935484 - } - } - }, - { - "id": "4279c9c9-92d9-5943-b85a-9c9ebe1b7c26", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.286676, - "y": -2639.935484 - }, - "endPoint": { - "x": 313.29037, - "y": -2639.985637 - } - } - }, - { - "id": "40395172-740d-5fec-bfa5-a7e07c091327", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.29037, - "y": -2639.985637 - }, - "endPoint": { - "x": 313.338386, - "y": -2640.016742 - } - } - }, - { - "id": "d20b356d-a100-560f-8fe3-fdddb2a142b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.338386, - "y": -2640.016742 - }, - "endPoint": { - "x": 313.544098, - "y": -2640.000557 - } - } - }, - { - "id": "604bcb23-93bf-5788-8ede-ba1249c40a65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.544098, - "y": -2640.000557 - }, - "endPoint": { - "x": 313.820089, - "y": -2639.957285 - } - } - }, - { - "id": "1581dedf-361c-5e95-9c62-b0e4d7707a11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.820089, - "y": -2639.957285 - }, - "endPoint": { - "x": 313.912121, - "y": -2639.865346 - } - } - }, - { - "id": "a6d2e705-c92f-55c8-9971-649e3c74f1d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.912121, - "y": -2639.865346 - }, - "endPoint": { - "x": 314.025698, - "y": -2639.740981 - } - } - }, - { - "id": "10cd1bc5-213e-5880-90d7-2d7a5a429d96", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.025698, - "y": -2639.740981 - }, - "endPoint": { - "x": 314.144816, - "y": -2639.622011 - } - } - }, - { - "id": "cfe48916-ef6e-555b-9f37-9a676a820c83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.144816, - "y": -2639.622011 - }, - "endPoint": { - "x": 314.19355, - "y": -2639.4868 - } - } - }, - { - "id": "f809d41e-0fac-5ce8-b599-4ee4f94fce83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.19355, - "y": -2639.4868 - }, - "endPoint": { - "x": 314.177237, - "y": -2639.254256 - } - } - }, - { - "id": "9a5e6ecc-d6c6-5471-a838-0be107eadbb1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.177237, - "y": -2639.254256 - }, - "endPoint": { - "x": 314.155588, - "y": -2639.108254 - } - } - }, - { - "id": "ae120677-3aea-59bc-9af5-fbc4b37eda9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.155588, - "y": -2639.108254 - }, - "endPoint": { - "x": 314.074433, - "y": -2638.99468 - } - } - }, - { - "id": "6f63d5c3-ab79-5021-a4b8-a9d73b792774", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.074433, - "y": -2638.99468 - }, - "endPoint": { - "x": 314.00405, - "y": -2638.832438 - } - } - }, - { - "id": "9854f0f3-118e-51f0-a2a6-20c0d9e62707", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.00405, - "y": -2638.832438 - }, - "endPoint": { - "x": 313.841738, - "y": -2638.751345 - } - } - }, - { - "id": "b318f9f8-13f6-5692-a065-e8063062b92e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.841738, - "y": -2638.751345 - }, - "endPoint": { - "x": 313.738933, - "y": -2638.805407 - } - } - }, - { - "id": "5584f100-a604-5d90-a3ed-d55961e988f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.738933, - "y": -2638.805407 - }, - "endPoint": { - "x": 313.711847, - "y": -2638.956803 - } - } - }, - { - "id": "6db5336c-9e78-5464-a20f-1d4e266d48cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.711847, - "y": -2638.956803 - }, - "endPoint": { - "x": 313.700972, - "y": -2639.329954 - } - } - }, - { - "id": "9944a6b8-f681-566d-be34-f43d3eafa8c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.700972, - "y": -2639.329954 - }, - "endPoint": { - "x": 313.581957, - "y": -2639.594925 - } - } - } - ] - }, - { - "id": "1b9aa176-fcf0-57ee-8591-5775aeb5ae26", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "46b8876b-ae21-5aac-aa0a-2841fbb3ad76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.916805, - "y": -2641.307189 - }, - "endPoint": { - "x": 315.732127, - "y": -2641.37061 - } - } - }, - { - "id": "8e340ed0-9569-5ce5-8322-2ca260af06de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.732127, - "y": -2641.37061 - }, - "endPoint": { - "x": 315.634042, - "y": -2641.459962 - } - } - }, - { - "id": "a07212ba-aff5-580d-96d7-df39f9b0de7b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.634042, - "y": -2641.459962 - }, - "endPoint": { - "x": 315.631169, - "y": -2641.581079 - } - } - }, - { - "id": "e8b6d273-62d2-5814-90a1-95c1d444b133", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.631169, - "y": -2641.581079 - }, - "endPoint": { - "x": 315.691703, - "y": -2641.624296 - } - } - }, - { - "id": "9d5a24c9-542b-5182-80cc-49fe73d2db3b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.691703, - "y": -2641.624296 - }, - "endPoint": { - "x": 315.795636, - "y": -2641.690635 - } - } - }, - { - "id": "ffb02efa-25c7-515d-9dc6-f19789395b94", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.795636, - "y": -2641.690635 - }, - "endPoint": { - "x": 315.902339, - "y": -2641.785767 - } - } - }, - { - "id": "170f0b35-5434-55f5-a1db-ce18859ec6c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.902339, - "y": -2641.785767 - }, - "endPoint": { - "x": 316.026381, - "y": -2641.791547 - } - } - }, - { - "id": "b2bca056-130f-5370-a1af-4b187975dcb3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.026381, - "y": -2641.791547 - }, - "endPoint": { - "x": 316.179356, - "y": -2641.771343 - } - } - }, - { - "id": "3f3a30c8-02c7-522f-ba9d-b9a73ab69e23", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.179356, - "y": -2641.771343 - }, - "endPoint": { - "x": 316.280314, - "y": -2641.696415 - } - } - }, - { - "id": "5c0fe96a-3635-5fcb-a012-10e9b5b0906c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.280314, - "y": -2641.696415 - }, - "endPoint": { - "x": 316.280314, - "y": -2641.526301 - } - } - }, - { - "id": "cf317a9a-c1c8-5b92-9625-2c3b48ccd79c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.280314, - "y": -2641.526301 - }, - "endPoint": { - "x": 316.274568, - "y": -2641.382117 - } - } - }, - { - "id": "54211f06-f158-5a46-bb3a-c443a9d721d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.274568, - "y": -2641.382117 - }, - "endPoint": { - "x": 316.170738, - "y": -2641.321613 - } - } - }, - { - "id": "d0ff3195-0d0a-5333-8285-b04371ea3239", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.170738, - "y": -2641.321613 - }, - "endPoint": { - "x": 316.084144, - "y": -2641.286985 - } - } - }, - { - "id": "da9c4e9c-2e45-5c73-9fc3-12c336b20ce0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.084144, - "y": -2641.286985 - }, - "endPoint": { - "x": 315.916805, - "y": -2641.307189 - } - } - } - ] - }, - { - "id": "46b68a24-a46a-5b3b-8a27-b5d846bcc4fb", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "b60b57ae-d12f-5002-9a3f-3c4d1fa94412", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.115883, - "y": -2637.139277 - }, - "endPoint": { - "x": 314.362633, - "y": -2636.988651 - } - } - }, - { - "id": "26fc6d3e-0d65-5efe-8e65-33a7b66ec338", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.362633, - "y": -2636.988651 - }, - "endPoint": { - "x": 314.590917, - "y": -2636.72368 - } - } - }, - { - "id": "e5c17127-1e53-5209-8fdf-473e280211b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.590917, - "y": -2636.72368 - }, - "endPoint": { - "x": 314.795704, - "y": -2636.360219 - } - } - }, - { - "id": "96172e7e-9714-51f1-8df8-3119bc8e7dcf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.795704, - "y": -2636.360219 - }, - "endPoint": { - "x": 314.993823, - "y": -2636.118756 - } - } - }, - { - "id": "cd1aae96-bc1b-5c95-baf0-a0b096ce7c11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.993823, - "y": -2636.118756 - }, - "endPoint": { - "x": 315.255554, - "y": -2635.961084 - } - } - }, - { - "id": "38e7da52-1762-5560-b980-8f8f4d1351f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.255554, - "y": -2635.961084 - }, - "endPoint": { - "x": 315.534213, - "y": -2635.833635 - } - } - }, - { - "id": "ad63cbce-79a6-58cc-a5e3-290ed478f551", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.534213, - "y": -2635.833635 - }, - "endPoint": { - "x": 315.77922, - "y": -2635.84371 - } - } - }, - { - "id": "99175607-e703-5bf6-a927-d650d3dc3c49", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.77922, - "y": -2635.84371 - }, - "endPoint": { - "x": 316.067934, - "y": -2635.964442 - } - } - }, - { - "id": "020aa66f-c4a7-50d5-a91e-842a451aa7ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.067934, - "y": -2635.964442 - }, - "endPoint": { - "x": 316.366702, - "y": -2636.195885 - } - } - }, - { - "id": "461ebeb1-d65f-51f2-a7b4-3c8bd39b94bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.366702, - "y": -2636.195885 - }, - "endPoint": { - "x": 316.58965, - "y": -2636.461462 - } - } - }, - { - "id": "cdade620-b594-5870-ad96-d07ed2dab277", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.58965, - "y": -2636.461462 - }, - "endPoint": { - "x": 316.710512, - "y": -2636.723075 - } - } - }, - { - "id": "d6412239-3b19-52e1-904b-28c98ea78509", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.710512, - "y": -2636.723075 - }, - "endPoint": { - "x": 316.831374, - "y": -2636.934369 - } - } - }, - { - "id": "9c71a623-fb58-5730-a961-5489ef2e129b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.831374, - "y": -2636.934369 - }, - "endPoint": { - "x": 317.103262, - "y": -2637.045026 - } - } - }, - { - "id": "60519b37-dd57-5710-a0e7-97eee239ed67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.103262, - "y": -2637.045026 - }, - "endPoint": { - "x": 317.50268, - "y": -2637.071892 - } - } - }, - { - "id": "ae16453a-46a7-5be1-b208-012067b2f235", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.50268, - "y": -2637.071892 - }, - "endPoint": { - "x": 317.757844, - "y": -2637.128927 - } - } - }, - { - "id": "8ec90212-e9fb-5ae7-b637-b40792108849", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.757844, - "y": -2637.128927 - }, - "endPoint": { - "x": 318.246011, - "y": -2637.115549 - } - } - }, - { - "id": "e0e96df2-9a99-5e02-8231-eb54da910fbf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.246011, - "y": -2637.115549 - }, - "endPoint": { - "x": 318.450799, - "y": -2636.988101 - } - } - }, - { - "id": "9bdcacfd-41f1-5257-93a4-a657ec56ebae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.450799, - "y": -2636.988101 - }, - "endPoint": { - "x": 318.498712, - "y": -2636.958702 - } - } - }, - { - "id": "44f4f086-c468-5ec2-9b17-a5e7f96f9b27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.498712, - "y": -2636.958702 - }, - "endPoint": { - "x": 318.723302, - "y": -2637.109108 - } - } - }, - { - "id": "f32951aa-4cef-545c-a7bc-a87a72e670cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.723302, - "y": -2637.109108 - }, - "endPoint": { - "x": 319.109998, - "y": -2637.500096 - } - } - }, - { - "id": "c618764b-aabe-51b5-baf1-b45b6dfedd13", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.109998, - "y": -2637.500096 - }, - "endPoint": { - "x": 319.659929, - "y": -2637.952688 - } - } - }, - { - "id": "1f951c57-9df6-5898-8997-88f555ea4348", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.659929, - "y": -2637.952688 - }, - "endPoint": { - "x": 319.938486, - "y": -2638.302055 - } - } - }, - { - "id": "7b3c4fd1-7501-57cb-98bd-c56d5de2b923", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.938486, - "y": -2638.302055 - }, - "endPoint": { - "x": 319.964341, - "y": -2638.339547 - } - } - }, - { - "id": "4f2396db-4048-5e9e-bc2a-610976e04a48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.964341, - "y": -2638.339547 - }, - "endPoint": { - "x": 319.820292, - "y": -2638.319617 - } - } - }, - { - "id": "7cd7a59f-8449-5a95-9a8a-9b892454a5ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.820292, - "y": -2638.319617 - }, - "endPoint": { - "x": 319.736161, - "y": -2638.311084 - } - } - }, - { - "id": "99d6ba96-6bf0-5725-afb3-ed20814048a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.736161, - "y": -2638.311084 - }, - "endPoint": { - "x": 319.633561, - "y": -2638.313947 - } - } - }, - { - "id": "582dfc98-7ae7-5621-8739-4ccd3aee6477", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.633561, - "y": -2638.313947 - }, - "endPoint": { - "x": 319.550867, - "y": -2638.336739 - } - } - }, - { - "id": "e4fcdf14-1e51-5c2e-b094-6e7c7efcdf02", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.550867, - "y": -2638.336739 - }, - "endPoint": { - "x": 319.536605, - "y": -2638.382323 - } - } - }, - { - "id": "8694bcdf-c959-5c6f-b425-805d138990f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.536605, - "y": -2638.382323 - }, - "endPoint": { - "x": 319.556509, - "y": -2638.439303 - } - } - }, - { - "id": "8cfe7892-3ff8-5f4b-b67f-c5d3b97d29b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.556509, - "y": -2638.439303 - }, - "endPoint": { - "x": 319.562255, - "y": -2638.500522 - } - } - }, - { - "id": "e1a5b905-2366-57b9-9490-83ab1f62979a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.562255, - "y": -2638.500522 - }, - "endPoint": { - "x": 319.530449, - "y": -2638.628466 - } - } - }, - { - "id": "e0078cc3-40a2-5f2c-8a8b-a0c28a7e90a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.530449, - "y": -2638.628466 - }, - "endPoint": { - "x": 319.525114, - "y": -2638.75184 - } - } - }, - { - "id": "1e8dd18f-c447-5c6b-9269-28a46ad80875", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.525114, - "y": -2638.75184 - }, - "endPoint": { - "x": 319.537631, - "y": -2638.8609 - } - } - }, - { - "id": "118cb058-a19c-5410-8ef4-37a30b28e488", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.537631, - "y": -2638.8609 - }, - "endPoint": { - "x": 319.544813, - "y": -2638.972934 - } - } - }, - { - "id": "7d8d1de4-eb57-5292-8e21-cd24d0b0d2cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.544813, - "y": -2638.972934 - }, - "endPoint": { - "x": 319.568001, - "y": -2639.123119 - } - } - }, - { - "id": "d54ea4bf-e150-5015-bdbb-45ed04213bf0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.568001, - "y": -2639.123119 - }, - "endPoint": { - "x": 319.55733, - "y": -2639.257283 - } - } - }, - { - "id": "093d15ac-5fa4-59af-a20f-9ae881d5218a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.55733, - "y": -2639.257283 - }, - "endPoint": { - "x": 319.51075, - "y": -2639.402128 - } - } - }, - { - "id": "899c2d07-728f-500e-b6eb-ddb48d1acd94", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.51075, - "y": -2639.402128 - }, - "endPoint": { - "x": 319.39943, - "y": -2639.545652 - } - } - }, - { - "id": "fff06aa8-90cf-51e8-b9cc-8de99328635e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.39943, - "y": -2639.545652 - }, - "endPoint": { - "x": 319.283185, - "y": -2639.652951 - } - } - }, - { - "id": "2653d47f-56b8-5731-8b10-a373afbf20b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.283185, - "y": -2639.652951 - }, - "endPoint": { - "x": 319.139957, - "y": -2639.72986 - } - } - }, - { - "id": "c94210fa-edcb-5432-b184-905d1d57f1b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.139957, - "y": -2639.72986 - }, - "endPoint": { - "x": 319.102406, - "y": -2639.778142 - } - } - }, - { - "id": "2a30751e-4965-5619-bd61-960197a0bc07", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.102406, - "y": -2639.778142 - }, - "endPoint": { - "x": 319.060853, - "y": -2639.823671 - } - } - }, - { - "id": "2a8b9f8d-32b9-5f51-b78d-74e26b096403", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.060853, - "y": -2639.823671 - }, - "endPoint": { - "x": 318.770908, - "y": -2639.837985 - } - } - }, - { - "id": "4a9311e1-9d0d-51cc-9d53-d3b121c9b6c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.770908, - "y": -2639.837985 - }, - "endPoint": { - "x": 318.395087, - "y": -2639.837985 - } - } - }, - { - "id": "98198608-a8c6-59c4-bd0e-cac83dd6595f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.395087, - "y": -2639.837985 - }, - "endPoint": { - "x": 318.259143, - "y": -2639.741421 - } - } - }, - { - "id": "a0af16c1-0f36-5652-b7fc-f23b4c3cb9ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.259143, - "y": -2639.741421 - }, - "endPoint": { - "x": 318.214308, - "y": -2639.575106 - } - } - }, - { - "id": "481dec7c-273f-5caf-bae8-94ffb1219ef7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.214308, - "y": -2639.575106 - }, - "endPoint": { - "x": 318.230108, - "y": -2639.443253 - } - } - }, - { - "id": "b50f0a26-5093-503d-97e1-87950e57557e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.230108, - "y": -2639.443253 - }, - "endPoint": { - "x": 318.20692, - "y": -2639.303803 - } - } - }, - { - "id": "4e56342d-b20b-5ec1-bc8b-0e2136634e2f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.20692, - "y": -2639.303803 - }, - "endPoint": { - "x": 318.149568, - "y": -2639.219737 - } - } - }, - { - "id": "a2e55c57-0dbe-59ec-9cb1-c37e3480d7a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.149568, - "y": -2639.219737 - }, - "endPoint": { - "x": 318.122789, - "y": -2639.142828 - } - } - }, - { - "id": "3e93d06d-14f2-5390-9203-0478f963163d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.122789, - "y": -2639.142828 - }, - "endPoint": { - "x": 318.110272, - "y": -2638.862112 - } - } - }, - { - "id": "a5044353-d0c6-5710-a1d3-a6b0f184340d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.110272, - "y": -2638.862112 - }, - "endPoint": { - "x": 318.029732, - "y": -2638.733342 - } - } - }, - { - "id": "105b5285-d6f3-556e-8b1a-0a86bef4d84f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.029732, - "y": -2638.733342 - }, - "endPoint": { - "x": 317.947345, - "y": -2638.6332 - } - } - }, - { - "id": "f59f5417-e6ba-584c-b116-3e8993f7303e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.947345, - "y": -2638.6332 - }, - "endPoint": { - "x": 317.875833, - "y": -2638.572367 - } - } - }, - { - "id": "7aa8a083-02ca-59dd-9a64-de25feb58315", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.875833, - "y": -2638.572367 - }, - "endPoint": { - "x": 317.828637, - "y": -2638.569999 - } - } - }, - { - "id": "2f282b64-15da-5566-8222-6dfa92c1909b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.828637, - "y": -2638.569999 - }, - "endPoint": { - "x": 317.726654, - "y": -2638.612886 - } - } - }, - { - "id": "05d39042-7715-5a72-a422-32eb35121d56", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.726654, - "y": -2638.612886 - }, - "endPoint": { - "x": 317.622824, - "y": -2638.696952 - } - } - }, - { - "id": "20421f89-74bb-5961-b774-c3114fd42e55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.622824, - "y": -2638.696952 - }, - "endPoint": { - "x": 317.570908, - "y": -2638.786358 - } - } - }, - { - "id": "1762d45c-189d-5b30-b843-dacf6793268e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.570908, - "y": -2638.786358 - }, - "endPoint": { - "x": 317.556647, - "y": -2638.965171 - } - } - }, - { - "id": "aa73a272-6325-5f1e-ad41-5c3c863a3ee0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.556647, - "y": -2638.965171 - }, - "endPoint": { - "x": 317.513658, - "y": -2639.054578 - } - } - }, - { - "id": "5096e9d1-d33a-5343-bed6-dde4e6a52458", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.513658, - "y": -2639.054578 - }, - "endPoint": { - "x": 317.567317, - "y": -2639.169033 - } - } - }, - { - "id": "e5132c15-162a-5921-833b-a2f68d6cdb11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.567317, - "y": -2639.169033 - }, - "endPoint": { - "x": 317.567317, - "y": -2639.28448 - } - } - }, - { - "id": "bbd813b3-f30d-5204-9e60-881a0b395263", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.567317, - "y": -2639.28448 - }, - "endPoint": { - "x": 317.569062, - "y": -2639.500839 - } - } - }, - { - "id": "d5d51e40-abd1-52e0-aa29-ccafe1f93291", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.569062, - "y": -2639.500839 - }, - "endPoint": { - "x": 317.597687, - "y": -2639.643922 - } - } - }, - { - "id": "3db12810-c230-5444-a730-197747da2124", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.597687, - "y": -2639.643922 - }, - "endPoint": { - "x": 317.683562, - "y": -2639.695782 - } - } - }, - { - "id": "a9aa24bd-0cb8-5235-831d-33e700081920", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.683562, - "y": -2639.695782 - }, - "endPoint": { - "x": 317.758767, - "y": -2639.854335 - } - } - }, - { - "id": "e9841f06-f05a-5afe-878c-0b2f4c9ee6c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.758767, - "y": -2639.854335 - }, - "endPoint": { - "x": 317.916257, - "y": -2639.938402 - } - } - }, - { - "id": "8905a65e-eba1-5ef4-b494-13681f290439", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.916257, - "y": -2639.938402 - }, - "endPoint": { - "x": 318.169985, - "y": -2639.940604 - } - } - }, - { - "id": "738dc09e-72df-5378-9979-c87bbb46e4be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.169985, - "y": -2639.940604 - }, - "endPoint": { - "x": 318.391599, - "y": -2639.926675 - } - } - }, - { - "id": "164dc51b-81ae-58ce-ab38-a63a8908ba98", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.391599, - "y": -2639.926675 - }, - "endPoint": { - "x": 318.692214, - "y": -2639.937521 - } - } - }, - { - "id": "87e4aa64-38c3-5624-97ab-ed13304d1777", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.692214, - "y": -2639.937521 - }, - "endPoint": { - "x": 319.122207, - "y": -2639.952991 - } - } - }, - { - "id": "65b18b5e-bc7b-52e7-8707-842ecb8313fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.122207, - "y": -2639.952991 - }, - "endPoint": { - "x": 319.503363, - "y": -2640.007218 - } - } - }, - { - "id": "773c164d-eede-5bb5-ac26-eb050ec2611d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.503363, - "y": -2640.007218 - }, - "endPoint": { - "x": 319.853637, - "y": -2640.083081 - } - } - }, - { - "id": "bae55807-214c-521d-8b7f-b58fd2875c63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.853637, - "y": -2640.083081 - }, - "endPoint": { - "x": 320.08274, - "y": -2640.261123 - } - } - }, - { - "id": "3cd79654-82b0-5ffa-b2d0-68187a8b6e3f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.08274, - "y": -2640.261123 - }, - "endPoint": { - "x": 320.257262, - "y": -2640.514809 - } - } - }, - { - "id": "eadeb66c-5664-5ce0-a057-6ddc0a21e5a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.257262, - "y": -2640.514809 - }, - "endPoint": { - "x": 320.265264, - "y": -2640.827896 - } - } - }, - { - "id": "20209a70-e22b-5e12-b4a8-dcc3a6aa7c9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.265264, - "y": -2640.827896 - }, - "endPoint": { - "x": 320.281065, - "y": -2641.041888 - } - } - }, - { - "id": "5d06ac0c-adb8-57a2-aad3-3dba269de045", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.281065, - "y": -2641.041888 - }, - "endPoint": { - "x": 320.185853, - "y": -2641.25588 - } - } - }, - { - "id": "6844e435-39b7-58dc-96e9-afecf3491194", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.185853, - "y": -2641.25588 - }, - "endPoint": { - "x": 320.094642, - "y": -2641.39065 - } - } - }, - { - "id": "9ef8c5aa-9094-5693-a292-9ca744b9b806", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.094642, - "y": -2641.39065 - }, - "endPoint": { - "x": 319.884416, - "y": -2641.505546 - } - } - }, - { - "id": "b7d0151b-1a7c-506e-a1b4-0cba84162bba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.884416, - "y": -2641.505546 - }, - "endPoint": { - "x": 319.499772, - "y": -2641.54122 - } - } - }, - { - "id": "ed8cf0ce-3ea1-5f75-a086-27d497ec5620", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.499772, - "y": -2641.54122 - }, - "endPoint": { - "x": 319.059519, - "y": -2641.553112 - } - } - }, - { - "id": "5d742c31-f266-5f26-a5e8-ba7c990e12a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.059519, - "y": -2641.553112 - }, - "endPoint": { - "x": 318.559759, - "y": -2641.521401 - } - } - }, - { - "id": "691472bb-1537-557d-b5f4-5be9d618572e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.559759, - "y": -2641.521401 - }, - "endPoint": { - "x": 318.416941, - "y": -2641.461944 - } - } - }, - { - "id": "ea9abf0e-a360-5dab-8c93-73b3759c91ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.416941, - "y": -2641.461944 - }, - "endPoint": { - "x": 318.119506, - "y": -2641.446088 - } - } - }, - { - "id": "cf2bb9c7-8e8f-5ab5-a966-4dfdff0bd269", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.119506, - "y": -2641.446088 - }, - "endPoint": { - "x": 317.897379, - "y": -2641.461944 - } - } - }, - { - "id": "a33ad15f-5581-56dc-9164-ed2f5bdc3539", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.897379, - "y": -2641.461944 - }, - "endPoint": { - "x": 317.725731, - "y": -2641.698067 - } - } - }, - { - "id": "3ceca8be-e86b-5e2f-a385-33ecf9971207", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.725731, - "y": -2641.698067 - }, - "endPoint": { - "x": 317.678125, - "y": -2641.816982 - } - } - }, - { - "id": "09fc70a6-d499-5609-b30c-38c376cbe188", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.678125, - "y": -2641.816982 - }, - "endPoint": { - "x": 317.598815, - "y": -2641.924005 - } - } - }, - { - "id": "29e29864-4392-571c-9612-1f254a743102", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.598815, - "y": -2641.924005 - }, - "endPoint": { - "x": 317.444096, - "y": -2642.102322 - } - } - }, - { - "id": "631711f0-da12-5b12-a190-fb517e517b89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.444096, - "y": -2642.102322 - }, - "endPoint": { - "x": 317.348884, - "y": -2642.201418 - } - } - }, - { - "id": "ddbbb2ee-b869-5e77-9c10-2f8451084c58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.348884, - "y": -2642.201418 - }, - "endPoint": { - "x": 317.333084, - "y": -2642.407482 - } - } - }, - { - "id": "c301c200-625b-5377-af32-b6c16be77db5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.333084, - "y": -2642.407482 - }, - "endPoint": { - "x": 317.392591, - "y": -2642.554089 - } - } - }, - { - "id": "878dfd04-6163-54ac-80a7-836b55ec1c89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.392591, - "y": -2642.554089 - }, - "endPoint": { - "x": 317.499602, - "y": -2642.621474 - } - } - }, - { - "id": "ff71579b-2997-58f8-ba50-28b9672d88f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.499602, - "y": -2642.621474 - }, - "endPoint": { - "x": 317.832844, - "y": -2642.633366 - } - } - }, - { - "id": "e8c78e38-4c29-5726-a437-273eef1d7a05", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.832844, - "y": -2642.633366 - }, - "endPoint": { - "x": 318.364308, - "y": -2642.637329 - } - } - }, - { - "id": "8c1ea885-14c6-5fe4-abfa-30fe9f7982c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.364308, - "y": -2642.637329 - }, - "endPoint": { - "x": 318.570532, - "y": -2642.633366 - } - } - }, - { - "id": "c58be4c5-3cc7-5b3c-8281-3531bb6b8deb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.570532, - "y": -2642.633366 - }, - "endPoint": { - "x": 318.72125, - "y": -2642.51847 - } - } - }, - { - "id": "29f958c8-8ee3-5355-8e89-1b22ed945567", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.72125, - "y": -2642.51847 - }, - "endPoint": { - "x": 318.963179, - "y": -2642.447121 - } - } - }, - { - "id": "020103f9-cc16-5540-aba8-64b2321d96ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.963179, - "y": -2642.447121 - }, - "endPoint": { - "x": 319.198028, - "y": -2642.403684 - } - } - }, - { - "id": "88ef4a85-ebe8-5a24-9fc9-abc98e7e63c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.198028, - "y": -2642.403684 - }, - "endPoint": { - "x": 319.475661, - "y": -2642.407647 - } - } - }, - { - "id": "76a00a74-98b5-5ed5-b6cc-fa8b6e4f1ad6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.475661, - "y": -2642.407647 - }, - "endPoint": { - "x": 319.793001, - "y": -2642.39972 - } - } - }, - { - "id": "b247b159-43e2-53dc-a012-912fa71f57b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.793001, - "y": -2642.39972 - }, - "endPoint": { - "x": 319.931817, - "y": -2642.387828 - } - } - }, - { - "id": "fa7e670e-0f41-5ee7-a9bb-c9577fd34620", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.931817, - "y": -2642.387828 - }, - "endPoint": { - "x": 319.991325, - "y": -2642.463141 - } - } - }, - { - "id": "02734247-c3ee-5343-8a61-8bced3d894c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.991325, - "y": -2642.463141 - }, - "endPoint": { - "x": 320.122241, - "y": -2642.498816 - } - } - }, - { - "id": "bdae718b-5551-53ec-9229-70ae4d9b654a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.122241, - "y": -2642.498816 - }, - "endPoint": { - "x": 320.20945, - "y": -2642.502779 - } - } - }, - { - "id": "096139c5-0a8d-58e6-9cb8-c42407fc8b72", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.20945, - "y": -2642.502779 - }, - "endPoint": { - "x": 320.264957, - "y": -2642.558273 - } - } - }, - { - "id": "0cae6e56-f726-5b51-ae76-b10344595d58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.264957, - "y": -2642.558273 - }, - "endPoint": { - "x": 320.304662, - "y": -2642.669205 - } - } - }, - { - "id": "ee0e5bb2-72ee-5048-9214-dcb09506b259", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.304662, - "y": -2642.669205 - }, - "endPoint": { - "x": 320.368069, - "y": -2642.744518 - } - } - }, - { - "id": "6d975af4-7a26-57a8-bc0e-6d8f3fbe2fef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.368069, - "y": -2642.744518 - }, - "endPoint": { - "x": 320.397309, - "y": -2643.08794 - } - } - }, - { - "id": "ed91c0cb-cbdc-5c47-9b14-348aa4aca57a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.397309, - "y": -2643.08794 - }, - "endPoint": { - "x": 320.407056, - "y": -2643.317346 - } - } - }, - { - "id": "30ac6f09-881d-5aee-aca7-87e81c55f09a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.407056, - "y": -2643.317346 - }, - "endPoint": { - "x": 320.399156, - "y": -2643.694406 - } - } - }, - { - "id": "d3250659-233f-5ab9-a956-9eaaee589fa8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.399156, - "y": -2643.694406 - }, - "endPoint": { - "x": 320.191496, - "y": -2644.166102 - } - } - }, - { - "id": "cc53a450-4d6e-5fb4-97b5-a792185f5d72", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.191496, - "y": -2644.166102 - }, - "endPoint": { - "x": 319.858767, - "y": -2644.502862 - } - } - }, - { - "id": "8a341b00-f71a-5342-9d0b-652be354b799", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.858767, - "y": -2644.502862 - }, - "endPoint": { - "x": 319.52614, - "y": -2644.599095 - } - } - }, - { - "id": "c5696051-9949-53f6-8983-6d9474c68154", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.52614, - "y": -2644.599095 - }, - "endPoint": { - "x": 319.324738, - "y": -2644.647211 - } - } - }, - { - "id": "4948d16f-0f98-50b3-a454-d4378a254069", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.324738, - "y": -2644.647211 - }, - "endPoint": { - "x": 318.856373, - "y": -2644.699677 - } - } - }, - { - "id": "b6f1981d-cc67-5584-94bd-bf7ce896340e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.856373, - "y": -2644.699677 - }, - "endPoint": { - "x": 318.676927, - "y": -2644.73904 - } - } - }, - { - "id": "dcf6e3e4-e28a-5bd7-9ec1-301b943c029d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.676927, - "y": -2644.73904 - }, - "endPoint": { - "x": 317.770874, - "y": -2644.577239 - } - } - }, - { - "id": "42c309d8-09e1-5927-93d2-bf452bf147f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.770874, - "y": -2644.577239 - }, - "endPoint": { - "x": 317.363761, - "y": -2644.502862 - } - } - }, - { - "id": "dbbc07d7-083f-59b4-b378-13948ceaf449", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.363761, - "y": -2644.502862 - }, - "endPoint": { - "x": 316.831374, - "y": -2644.301147 - } - } - }, - { - "id": "5a1fa1c3-3471-57b6-a8f2-011277a2ee9a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.831374, - "y": -2644.301147 - }, - "endPoint": { - "x": 316.603706, - "y": -2644.22677 - } - } - }, - { - "id": "43a82e02-5e24-58d7-b550-de0163ee3230", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.603706, - "y": -2644.22677 - }, - "endPoint": { - "x": 316.393583, - "y": -2644.051811 - } - } - }, - { - "id": "2252639c-c0df-5d23-96c1-b2221d8f84b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.393583, - "y": -2644.051811 - }, - "endPoint": { - "x": 316.218549, - "y": -2643.872503 - } - } - }, - { - "id": "3a02eeca-5918-5d20-8934-6408632ce900", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.218549, - "y": -2643.872503 - }, - "endPoint": { - "x": 316.082811, - "y": -2643.863749 - } - } - }, - { - "id": "d43c17de-0070-5637-bae2-ceeb9e9fd1bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.082811, - "y": -2643.863749 - }, - "endPoint": { - "x": 315.920909, - "y": -2643.959982 - } - } - }, - { - "id": "dd8616f5-a526-5920-86d2-e24cfd821119", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.920909, - "y": -2643.959982 - }, - "endPoint": { - "x": 315.658255, - "y": -2644.152448 - } - } - }, - { - "id": "f85d98d0-d3f8-5cf0-bdba-abcfae71b8c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.658255, - "y": -2644.152448 - }, - "endPoint": { - "x": 315.417558, - "y": -2644.222421 - } - } - }, - { - "id": "339b2ff5-7a91-5e39-93f4-de89ce0184a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.417558, - "y": -2644.222421 - }, - "endPoint": { - "x": 315.211744, - "y": -2644.336106 - } - } - }, - { - "id": "412aa351-92ba-5736-b5f1-ddeac013474a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.211744, - "y": -2644.336106 - }, - "endPoint": { - "x": 314.949193, - "y": -2644.458599 - } - } - }, - { - "id": "3465ddcb-7923-5a03-9ad0-4fb562b4b8a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.949193, - "y": -2644.458599 - }, - "endPoint": { - "x": 314.59461, - "y": -2644.633558 - } - } - }, - { - "id": "b8e9ec2c-4ad2-5152-b135-8f1192b9fb86", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.59461, - "y": -2644.633558 - }, - "endPoint": { - "x": 314.318824, - "y": -2644.725387 - } - } - }, - { - "id": "ea25b345-3b81-57c2-b299-ed51c7c24cab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.318824, - "y": -2644.725387 - }, - "endPoint": { - "x": 314.174364, - "y": -2644.804113 - } - } - }, - { - "id": "7593a5fa-eb06-5c3e-ba7c-f53e29b90aef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.174364, - "y": -2644.804113 - }, - "endPoint": { - "x": 313.671013, - "y": -2644.825969 - } - } - }, - { - "id": "390f7126-507a-50f3-8530-8312d34a3e0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.671013, - "y": -2644.825969 - }, - "endPoint": { - "x": 313.059522, - "y": -2644.796516 - } - } - }, - { - "id": "1b866a07-a1e0-5eb6-9032-5f7d9bd760ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.059522, - "y": -2644.796516 - }, - "endPoint": { - "x": 312.696218, - "y": -2644.757153 - } - } - }, - { - "id": "8f5631d8-c153-599a-9293-f157deb623e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.696218, - "y": -2644.757153 - }, - "endPoint": { - "x": 312.402887, - "y": -2644.542831 - } - } - }, - { - "id": "ada25f77-1a2e-5c16-963c-799401f1f7b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.402887, - "y": -2644.542831 - }, - "endPoint": { - "x": 312.07457, - "y": -2644.381029 - } - } - }, - { - "id": "bc56b8c8-4834-5ff7-a1f5-aa2ba1a83630", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.07457, - "y": -2644.381029 - }, - "endPoint": { - "x": 311.794475, - "y": -2643.982995 - } - } - }, - { - "id": "6ebaec51-29e3-54e0-ba8e-aae81daf512f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.794475, - "y": -2643.982995 - }, - "endPoint": { - "x": 311.662635, - "y": -2643.80187 - } - } - }, - { - "id": "47967f54-3044-5056-8e43-064165122d82", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.662635, - "y": -2643.80187 - }, - "endPoint": { - "x": 311.658223, - "y": -2643.360123 - } - } - }, - { - "id": "218f0d7b-854d-58fd-ad86-5971b0353587", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.658223, - "y": -2643.360123 - }, - "endPoint": { - "x": 311.737019, - "y": -2643.193917 - } - } - }, - { - "id": "3a4d88f2-eaf3-52ea-b5e1-ec5fda536759", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.737019, - "y": -2643.193917 - }, - "endPoint": { - "x": 311.776417, - "y": -2643.018958 - } - } - }, - { - "id": "e3080168-8135-59ca-a227-0f3fafccb52e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.776417, - "y": -2643.018958 - }, - "endPoint": { - "x": 312.008394, - "y": -2642.721561 - } - } - }, - { - "id": "3cbd68aa-5a92-5fc4-a7d1-95707df64767", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.008394, - "y": -2642.721561 - }, - "endPoint": { - "x": 312.266636, - "y": -2642.494081 - } - } - }, - { - "id": "539df437-c4dd-51b1-809f-5106041e66c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.266636, - "y": -2642.494081 - }, - "endPoint": { - "x": 312.695603, - "y": -2642.432862 - } - } - }, - { - "id": "b5ca8cdf-c44d-56a1-8b08-7d6649241871", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.695603, - "y": -2642.432862 - }, - "endPoint": { - "x": 312.995192, - "y": -2642.461545 - } - } - }, - { - "id": "9ae8d3bf-7c2b-5003-8cb6-b106cfa5e5ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.995192, - "y": -2642.461545 - }, - "endPoint": { - "x": 313.415336, - "y": -2642.465894 - } - } - }, - { - "id": "cfab8bba-a757-53b2-b799-40e7c1ff6e21", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.415336, - "y": -2642.465894 - }, - "endPoint": { - "x": 313.564207, - "y": -2642.48775 - } - } - }, - { - "id": "dc92cd57-ee5f-5593-9821-c0eb86e8e019", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.564207, - "y": -2642.48775 - }, - "endPoint": { - "x": 313.68671, - "y": -2642.583983 - } - } - }, - { - "id": "8e1604cf-3ffc-5d48-8ac1-2b8302768a3b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.68671, - "y": -2642.583983 - }, - "endPoint": { - "x": 313.752374, - "y": -2642.614592 - } - } - }, - { - "id": "3df04e55-e01e-580f-82d7-8a07c0f04e19", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.752374, - "y": -2642.614592 - }, - "endPoint": { - "x": 314.015028, - "y": -2642.618997 - } - } - }, - { - "id": "c5e14c41-8d03-5a2c-bd00-6432a05b8ec8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.015028, - "y": -2642.618997 - }, - "endPoint": { - "x": 314.443995, - "y": -2642.623346 - } - } - }, - { - "id": "7040ef13-4327-5751-a90c-c09efcadd0fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.443995, - "y": -2642.623346 - }, - "endPoint": { - "x": 314.592866, - "y": -2642.632099 - } - } - }, - { - "id": "f2fa533e-133a-57a8-b672-c87820f3e681", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.592866, - "y": -2642.632099 - }, - "endPoint": { - "x": 314.62344, - "y": -2642.518359 - } - } - }, - { - "id": "70b8cfb7-7ab7-5eae-a5d0-ea3c06a59cb8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.62344, - "y": -2642.518359 - }, - "endPoint": { - "x": 314.540335, - "y": -2642.295339 - } - } - }, - { - "id": "9e438656-4deb-5cd2-9b8f-97f8f0b1d721", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.540335, - "y": -2642.295339 - }, - "endPoint": { - "x": 314.321491, - "y": -2642.011044 - } - } - }, - { - "id": "b9c18e9b-5973-57f4-bcd7-2a4f4aa44076", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.321491, - "y": -2642.011044 - }, - "endPoint": { - "x": 314.225151, - "y": -2641.840434 - } - } - }, - { - "id": "c749b14b-3831-5829-be53-8fda89b308b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.225151, - "y": -2641.840434 - }, - "endPoint": { - "x": 313.98435, - "y": -2641.818578 - } - } - }, - { - "id": "f6a2ece0-656d-526c-8605-f95104ba09e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.98435, - "y": -2641.818578 - }, - "endPoint": { - "x": 313.866259, - "y": -2641.787969 - } - } - }, - { - "id": "47b96e6b-edd3-5dab-9456-428c0691064e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.866259, - "y": -2641.787969 - }, - "endPoint": { - "x": 313.800595, - "y": -2641.726694 - } - } - }, - { - "id": "56a7f304-3234-5bc6-a702-5fff901e4670", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.800595, - "y": -2641.726694 - }, - "endPoint": { - "x": 313.502955, - "y": -2641.726694 - } - } - }, - { - "id": "4587468b-1fe4-5731-8475-96056f41c31a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.502955, - "y": -2641.726694 - }, - "endPoint": { - "x": 313.47669, - "y": -2641.805476 - } - } - }, - { - "id": "cb415078-5f9a-53c7-b93c-6ab11310f125", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.47669, - "y": -2641.805476 - }, - "endPoint": { - "x": 313.174638, - "y": -2641.822927 - } - } - }, - { - "id": "e92df8a2-773d-5008-9094-5529ca0d7c34", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.174638, - "y": -2641.822927 - }, - "endPoint": { - "x": 312.35169, - "y": -2641.840434 - } - } - }, - { - "id": "ca8a3ef9-47fa-5781-b074-8eba9f7b7adb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.35169, - "y": -2641.840434 - }, - "endPoint": { - "x": 311.983975, - "y": -2641.814174 - } - } - }, - { - "id": "5b6380a7-3fc1-50e4-8a82-9c5d5361a923", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.983975, - "y": -2641.814174 - }, - "endPoint": { - "x": 311.90087, - "y": -2641.735448 - } - } - }, - { - "id": "d56870fa-93f6-580c-9b2a-edfc64ab26d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.90087, - "y": -2641.735448 - }, - "endPoint": { - "x": 311.769543, - "y": -2641.626112 - } - } - }, - { - "id": "a0e5da84-ecd1-5a51-8014-7ba3e2d7feb8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.769543, - "y": -2641.626112 - }, - "endPoint": { - "x": 311.667252, - "y": -2641.541385 - } - } - }, - { - "id": "6d58acb9-531d-522c-a006-927b38053085", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.667252, - "y": -2641.541385 - }, - "endPoint": { - "x": 311.632265, - "y": -2641.458255 - } - } - }, - { - "id": "d5dad2b2-29e5-5c9b-8f80-091237253e20", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.632265, - "y": -2641.458255 - }, - "endPoint": { - "x": 311.575323, - "y": -2641.217728 - } - } - }, - { - "id": "8f9e409a-ffc7-5987-825d-5bb2efc20d7b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.575323, - "y": -2641.217728 - }, - "endPoint": { - "x": 311.557881, - "y": -2641.016508 - } - } - }, - { - "id": "f7e4b797-a0ef-554f-a540-af7f7d2774ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.557881, - "y": -2641.016508 - }, - "endPoint": { - "x": 311.627854, - "y": -2640.535398 - } - } - }, - { - "id": "a020366f-8f64-5b4f-8d99-729f64979445", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.627854, - "y": -2640.535398 - }, - "endPoint": { - "x": 311.820227, - "y": -2640.252755 - } - } - }, - { - "id": "478816c5-aa8b-557a-91a0-dea4981b561b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.820227, - "y": -2640.252755 - }, - "endPoint": { - "x": 312.135309, - "y": -2640.099707 - } - } - }, - { - "id": "aaeb9bf9-2dc8-558e-96e9-b5b44b1457e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.135309, - "y": -2640.099707 - }, - "endPoint": { - "x": 312.481171, - "y": -2640.095303 - } - } - }, - { - "id": "82ca0320-3b83-5032-81c5-8a69e71cdd04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.481171, - "y": -2640.095303 - }, - "endPoint": { - "x": 312.505179, - "y": -2640.043278 - } - } - }, - { - "id": "cbbf8ea9-29b7-5c64-a719-3fe31ca696b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.505179, - "y": -2640.043278 - }, - "endPoint": { - "x": 312.459009, - "y": -2639.989436 - } - } - }, - { - "id": "4edc3f7d-0507-553b-815b-d0ca38680e0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.459009, - "y": -2639.989436 - }, - "endPoint": { - "x": 312.174297, - "y": -2639.877953 - } - } - }, - { - "id": "74a6b2ad-4fab-51f5-ab90-18a5f5724bd6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.174297, - "y": -2639.877953 - }, - "endPoint": { - "x": 311.912566, - "y": -2639.697214 - } - } - }, - { - "id": "0516ef00-7e78-5f3a-b32a-bf68c2590623", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.912566, - "y": -2639.697214 - }, - "endPoint": { - "x": 311.808736, - "y": -2639.501114 - } - } - }, - { - "id": "af794985-9352-5a8b-a112-a2ed90124ef5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.808736, - "y": -2639.501114 - }, - "endPoint": { - "x": 311.777443, - "y": -2638.895144 - } - } - }, - { - "id": "e0f76ecd-1393-5e84-b5d6-1f867113b348", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.777443, - "y": -2638.895144 - }, - "endPoint": { - "x": 311.86219, - "y": -2638.422182 - } - } - }, - { - "id": "660a5578-da33-5119-a257-02ef8ad66142", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.86219, - "y": -2638.422182 - }, - "endPoint": { - "x": 311.958325, - "y": -2637.995409 - } - } - }, - { - "id": "9253e5a1-2e0e-5e99-85d7-4f10061cb636", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.958325, - "y": -2637.995409 - }, - "endPoint": { - "x": 312.305418, - "y": -2637.612514 - } - } - }, - { - "id": "82444faf-a742-56b6-9caa-5b26bad752bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.305418, - "y": -2637.612514 - }, - "endPoint": { - "x": 312.632504, - "y": -2637.389494 - } - } - }, - { - "id": "11360f19-9f02-59fa-bb79-11e15a964a40", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.632504, - "y": -2637.389494 - }, - "endPoint": { - "x": 312.794098, - "y": -2637.254944 - } - } - }, - { - "id": "3721e43a-a35d-581f-947f-aebeee3970f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.794098, - "y": -2637.254944 - }, - "endPoint": { - "x": 313.101998, - "y": -2637.239529 - } - } - }, - { - "id": "d47dcbc9-8ed2-5505-8357-69a33f21d6a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.101998, - "y": -2637.239529 - }, - "endPoint": { - "x": 313.198133, - "y": -2637.158821 - } - } - }, - { - "id": "76357d9d-558a-5880-9413-b8c9f43a475c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.198133, - "y": -2637.158821 - }, - "endPoint": { - "x": 313.613762, - "y": -2637.135754 - } - } - }, - { - "id": "a48af704-215c-5e0d-b486-5c9ac17c1a4f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.613762, - "y": -2637.135754 - }, - "endPoint": { - "x": 314.025493, - "y": -2637.139552 - } - } - }, - { - "id": "2b89a661-b909-59a0-82f8-2f2de2ae0ccf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.025493, - "y": -2637.139552 - }, - "endPoint": { - "x": 314.115883, - "y": -2637.139277 - } - } - } - ] - }, - { - "id": "274d8e45-9114-51f2-9224-bcdaa0f52bbd", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "16d62735-8c5a-5d60-9017-b149f08b6591", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.332949, - "y": -2639.870741 - }, - "endPoint": { - "x": 313.581957, - "y": -2639.594925 - } - } - }, - { - "id": "ca2056ea-b162-5d16-ad60-b431a584f453", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.581957, - "y": -2639.594925 - }, - "endPoint": { - "x": 313.700972, - "y": -2639.329954 - } - } - }, - { - "id": "44ae3d9d-6baa-5bd6-8f6f-8b307e643de3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.700972, - "y": -2639.329954 - }, - "endPoint": { - "x": 313.711847, - "y": -2638.956803 - } - } - }, - { - "id": "b33050fe-2a39-5d3c-b9aa-bd1d10562774", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.711847, - "y": -2638.956803 - }, - "endPoint": { - "x": 313.738933, - "y": -2638.805407 - } - } - }, - { - "id": "60f69a2c-00d1-5ab2-aaa1-f74c487164fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.738933, - "y": -2638.805407 - }, - "endPoint": { - "x": 313.841738, - "y": -2638.751345 - } - } - }, - { - "id": "404b67a3-9b81-522d-bd68-b8bac4083c5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.841738, - "y": -2638.751345 - }, - "endPoint": { - "x": 314.00405, - "y": -2638.832438 - } - } - }, - { - "id": "c185650d-e871-5812-bd3d-8fa8193b8c7e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.00405, - "y": -2638.832438 - }, - "endPoint": { - "x": 314.074433, - "y": -2638.99468 - } - } - }, - { - "id": "54d92277-ad68-56f3-b120-478085f7e657", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.074433, - "y": -2638.99468 - }, - "endPoint": { - "x": 314.155588, - "y": -2639.108254 - } - } - }, - { - "id": "912c55c2-e99c-5a9f-8a1c-9f9655f1cadd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.155588, - "y": -2639.108254 - }, - "endPoint": { - "x": 314.177237, - "y": -2639.254256 - } - } - }, - { - "id": "c9fd4b17-9539-5570-96ea-c943dc185886", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.177237, - "y": -2639.254256 - }, - "endPoint": { - "x": 314.19355, - "y": -2639.4868 - } - } - }, - { - "id": "813aed4a-b544-5701-998f-a3d168dcc196", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.19355, - "y": -2639.4868 - }, - "endPoint": { - "x": 314.144816, - "y": -2639.622011 - } - } - }, - { - "id": "981e3c9f-0178-500f-ac4a-66dfae133809", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.144816, - "y": -2639.622011 - }, - "endPoint": { - "x": 314.025698, - "y": -2639.740981 - } - } - }, - { - "id": "a5b9b38b-fdb3-5ab3-a8db-d93ad1f89df0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.025698, - "y": -2639.740981 - }, - "endPoint": { - "x": 313.912121, - "y": -2639.865346 - } - } - }, - { - "id": "1802fffc-4777-53d9-b374-8d9a0149cdad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.912121, - "y": -2639.865346 - }, - "endPoint": { - "x": 313.820089, - "y": -2639.957285 - } - } - }, - { - "id": "f58acbf5-4de2-5049-84f6-cadda54d3bba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.820089, - "y": -2639.957285 - }, - "endPoint": { - "x": 313.544098, - "y": -2640.000557 - } - } - }, - { - "id": "4b9ae08b-2694-580c-872a-d868f3ec4e4b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.544098, - "y": -2640.000557 - }, - "endPoint": { - "x": 313.338386, - "y": -2640.016742 - } - } - }, - { - "id": "c6c748fa-6373-5786-9fb0-19a8f1cb44ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.338386, - "y": -2640.016742 - }, - "endPoint": { - "x": 313.29037, - "y": -2639.985637 - } - } - }, - { - "id": "8e9ba3cb-b1dc-5231-91f1-6216d85214da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.29037, - "y": -2639.985637 - }, - "endPoint": { - "x": 313.286676, - "y": -2639.935484 - } - } - }, - { - "id": "828e59f5-41e6-5fc4-bb30-3b016b035fca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.286676, - "y": -2639.935484 - }, - "endPoint": { - "x": 313.29591, - "y": -2639.889019 - } - } - }, - { - "id": "b5befe23-2b83-5143-830d-eaf8adaf4bdd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.29591, - "y": -2639.889019 - }, - "endPoint": { - "x": 313.332949, - "y": -2639.870741 - } - } - } - ] - }, - { - "id": "a1e1ac65-5e00-55d1-aaa2-04dc113ad7fe", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "39893a05-0509-5f42-82b3-38e25859a11d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.963796, - "y": -2639.953872 - }, - "endPoint": { - "x": 316.129083, - "y": -2639.863309 - } - } - }, - { - "id": "9060e1c9-1ed3-5926-abb2-9b1a57705d8f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.129083, - "y": -2639.863309 - }, - "endPoint": { - "x": 316.257024, - "y": -2639.671559 - } - } - }, - { - "id": "2f7a3f31-dd24-54a2-9e1b-e3539cb4691e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.257024, - "y": -2639.671559 - }, - "endPoint": { - "x": 316.272414, - "y": -2639.350268 - } - } - }, - { - "id": "5862bd61-c77c-5355-bbc8-5305ff8f3d23", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.272414, - "y": -2639.350268 - }, - "endPoint": { - "x": 316.259384, - "y": -2639.073351 - } - } - }, - { - "id": "666622ac-795f-5a1c-8ade-95afc130b7a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.259384, - "y": -2639.073351 - }, - "endPoint": { - "x": 316.131237, - "y": -2638.890464 - } - } - }, - { - "id": "4566efef-a59f-51ac-a014-8b1bcbb41a3e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.131237, - "y": -2638.890464 - }, - "endPoint": { - "x": 315.942968, - "y": -2638.741545 - } - } - }, - { - "id": "7a65afa8-7a6e-5892-8a6c-ea1013f22d5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.942968, - "y": -2638.741545 - }, - "endPoint": { - "x": 315.739001, - "y": -2638.710165 - } - } - }, - { - "id": "06ed09d7-61f2-5896-ae2e-44161c8124b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.739001, - "y": -2638.710165 - }, - "endPoint": { - "x": 315.576894, - "y": -2638.817298 - } - } - }, - { - "id": "3cb796e0-c6ab-55c8-8508-da188dc66e7d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.576894, - "y": -2638.817298 - }, - "endPoint": { - "x": 315.472346, - "y": -2638.960987 - } - } - }, - { - "id": "cb1dba47-926c-5ee1-9ff6-f1beb82367f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.472346, - "y": -2638.960987 - }, - "endPoint": { - "x": 315.359897, - "y": -2639.151691 - } - } - }, - { - "id": "372abca9-9aa7-588f-9e75-96291f588bc4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.359897, - "y": -2639.151691 - }, - "endPoint": { - "x": 315.323269, - "y": -2639.318943 - } - } - }, - { - "id": "1305e663-8bcb-5106-a669-a13a87c9dc60", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.323269, - "y": -2639.318943 - }, - "endPoint": { - "x": 315.341634, - "y": -2639.475679 - } - } - }, - { - "id": "d3909c6d-e4f5-5d6c-b0bb-4c0147577783", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.341634, - "y": -2639.475679 - }, - "endPoint": { - "x": 315.446183, - "y": -2639.621956 - } - } - }, - { - "id": "d16b470f-558a-51fa-a3f3-3cce81fdb564", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.446183, - "y": -2639.621956 - }, - "endPoint": { - "x": 315.60829, - "y": -2639.82312 - } - } - }, - { - "id": "b1bacf3b-ab32-5781-a461-43005d71905a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.60829, - "y": -2639.82312 - }, - "endPoint": { - "x": 315.799227, - "y": -2639.930254 - } - } - }, - { - "id": "dd8c0e23-c6aa-5ca1-95b6-716e35a1e795", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.799227, - "y": -2639.930254 - }, - "endPoint": { - "x": 315.963796, - "y": -2639.953872 - } - } - } - ] - }, - { - "id": "f756e1b8-437d-53a7-a91e-1c3a1fbc0f3d", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "71ee48d1-3ace-5233-b621-cc2a52914c6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.902339, - "y": -2641.785767 - }, - "endPoint": { - "x": 315.795636, - "y": -2641.690635 - } - } - }, - { - "id": "6cc2ac65-c22c-5d55-bc5f-77fa0c43ed0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.795636, - "y": -2641.690635 - }, - "endPoint": { - "x": 315.691703, - "y": -2641.624296 - } - } - }, - { - "id": "6155c2e8-990f-5888-b854-fb2d02b0ec48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.691703, - "y": -2641.624296 - }, - "endPoint": { - "x": 315.631169, - "y": -2641.581079 - } - } - }, - { - "id": "6eb4dad2-c380-5200-b378-f2e31314f054", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.631169, - "y": -2641.581079 - }, - "endPoint": { - "x": 315.634042, - "y": -2641.459962 - } - } - }, - { - "id": "fd5d956b-9376-5f2e-95f5-629823f41e8f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.634042, - "y": -2641.459962 - }, - "endPoint": { - "x": 315.732127, - "y": -2641.37061 - } - } - }, - { - "id": "332b644c-e360-5f63-9abc-12f90aa756d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.732127, - "y": -2641.37061 - }, - "endPoint": { - "x": 315.916805, - "y": -2641.307189 - } - } - }, - { - "id": "1d5fbc18-c590-53e7-b221-2830a7d507fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.916805, - "y": -2641.307189 - }, - "endPoint": { - "x": 316.084144, - "y": -2641.286985 - } - } - }, - { - "id": "19c761ce-d33e-5943-9690-ee9bd82dab29", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.084144, - "y": -2641.286985 - }, - "endPoint": { - "x": 316.170738, - "y": -2641.321613 - } - } - }, - { - "id": "7738ca3c-46e7-5fdd-bcd8-3eb01c60009d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.170738, - "y": -2641.321613 - }, - "endPoint": { - "x": 316.274568, - "y": -2641.382117 - } - } - }, - { - "id": "d8c195c4-5670-5453-b71b-8a4fa689406e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.274568, - "y": -2641.382117 - }, - "endPoint": { - "x": 316.280314, - "y": -2641.526301 - } - } - }, - { - "id": "d231baeb-394b-5916-90fa-3a96640242f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.280314, - "y": -2641.526301 - }, - "endPoint": { - "x": 316.280314, - "y": -2641.696415 - } - } - }, - { - "id": "4070a4c9-0c6f-56c9-9c71-0c8d26e55da2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.280314, - "y": -2641.696415 - }, - "endPoint": { - "x": 316.179356, - "y": -2641.771343 - } - } - }, - { - "id": "b39723b7-dffc-52be-b83b-76fbfdec64a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.179356, - "y": -2641.771343 - }, - "endPoint": { - "x": 316.026381, - "y": -2641.791547 - } - } - }, - { - "id": "00d7b1f6-4921-538e-89e9-981da7cced4a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.026381, - "y": -2641.791547 - }, - "endPoint": { - "x": 315.902339, - "y": -2641.785767 - } - } - } - ] - }, - { - "id": "9e7d44b2-92b2-5298-aa4d-f5efb3a87ad9", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "3ad26df0-1435-535f-b906-e0af36b72743", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.40285, - "y": -2646.414474 - }, - "endPoint": { - "x": 320.259519, - "y": -2646.217604 - } - } - }, - { - "id": "13af89de-1f80-5549-b399-59ca29fb64a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.259519, - "y": -2646.217604 - }, - "endPoint": { - "x": 320.098336, - "y": -2646.092303 - } - } - }, - { - "id": "8dd0c302-29fc-51f7-beda-2ea1aa853ed0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.098336, - "y": -2646.092303 - }, - "endPoint": { - "x": 319.856509, - "y": -2645.980435 - } - } - }, - { - "id": "f39368c6-1301-56c9-a7b2-4425f1fdb583", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.856509, - "y": -2645.980435 - }, - "endPoint": { - "x": 319.65049, - "y": -2645.890918 - } - } - }, - { - "id": "407e68dc-227a-5968-8c34-647cffadd4c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.65049, - "y": -2645.890918 - }, - "endPoint": { - "x": 319.220497, - "y": -2645.90881 - } - } - }, - { - "id": "74a240f0-1032-5293-9402-e9fdc7599498", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.220497, - "y": -2645.90881 - }, - "endPoint": { - "x": 318.911571, - "y": -2645.949109 - } - } - }, - { - "id": "e32cca5e-f33a-580c-bd59-9ec2f4d99bce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.911571, - "y": -2645.949109 - }, - "endPoint": { - "x": 318.777987, - "y": -2645.995739 - } - } - }, - { - "id": "ea21ac9c-9aef-5572-aaeb-7bac4437b36a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.777987, - "y": -2645.995739 - }, - "endPoint": { - "x": 318.619574, - "y": -2646.049526 - } - } - }, - { - "id": "8b4e6ea4-b635-5c25-8520-a20caf6ba9c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.619574, - "y": -2646.049526 - }, - "endPoint": { - "x": 318.45952, - "y": -2646.018807 - } - } - }, - { - "id": "9a055dd1-adbe-55fa-b4d3-bde20b45499a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.45952, - "y": -2646.018807 - }, - "endPoint": { - "x": 318.271558, - "y": -2645.656226 - } - } - }, - { - "id": "7ba437d6-02ea-55c6-8c8d-19ea72516841", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.271558, - "y": -2645.656226 - }, - "endPoint": { - "x": 318.129869, - "y": -2645.400504 - } - } - }, - { - "id": "e88c7bf4-e783-50db-b379-6b9573f268fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.129869, - "y": -2645.400504 - }, - "endPoint": { - "x": 317.901483, - "y": -2645.211672 - } - } - }, - { - "id": "571877c8-0c87-5376-b7a6-7bc8bcb4f84e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.901483, - "y": -2645.211672 - }, - "endPoint": { - "x": 317.708494, - "y": -2645.129092 - } - } - }, - { - "id": "11f90586-6d5b-5e8a-b4fa-102ef58778d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.708494, - "y": -2645.129092 - }, - "endPoint": { - "x": 317.610101, - "y": -2645.113347 - } - } - }, - { - "id": "b64012d5-f04b-5c50-abea-af8d6721eeb5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.610101, - "y": -2645.113347 - }, - "endPoint": { - "x": 317.515608, - "y": -2645.042493 - } - } - }, - { - "id": "30a287de-0f28-5c57-b508-9ff469d10824", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.515608, - "y": -2645.042493 - }, - "endPoint": { - "x": 317.090437, - "y": -2645.046457 - } - } - }, - { - "id": "881c2092-57b1-5df3-8a82-778f3886ff17", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.090437, - "y": -2645.046457 - }, - "endPoint": { - "x": 316.834452, - "y": -2645.097602 - } - } - }, - { - "id": "99cd67ef-487e-5aec-9d7b-389c4f65ef35", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.834452, - "y": -2645.097602 - }, - "endPoint": { - "x": 316.710615, - "y": -2645.224004 - } - } - }, - { - "id": "c5a64872-7f01-52c9-9de0-12d423a49b33", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.710615, - "y": -2645.224004 - }, - "endPoint": { - "x": 316.647619, - "y": -2645.389218 - } - } - }, - { - "id": "80f59d0d-3e62-5176-a48d-94be6092ee42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.647619, - "y": -2645.389218 - }, - "endPoint": { - "x": 316.375936, - "y": -2645.656722 - } - } - }, - { - "id": "cea4ec07-9578-593a-abe1-3eba318d456b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.375936, - "y": -2645.656722 - }, - "endPoint": { - "x": 316.308939, - "y": -2645.888881 - } - } - }, - { - "id": "e27282c9-317c-56d7-b5ad-91fda4edfca0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.308939, - "y": -2645.888881 - }, - "endPoint": { - "x": 316.076655, - "y": -2645.963588 - } - } - }, - { - "id": "4ddd86ec-1d66-5c2c-8235-f493f94672c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.076655, - "y": -2645.963588 - }, - "endPoint": { - "x": 315.72238, - "y": -2645.951807 - } - } - }, - { - "id": "57dce070-13d9-52d1-847f-8ed8b6d1cb80", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.72238, - "y": -2645.951807 - }, - "endPoint": { - "x": 315.616087, - "y": -2645.904571 - } - } - }, - { - "id": "b926e572-d7f1-59fe-b1de-b3097d18d965", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.616087, - "y": -2645.904571 - }, - "endPoint": { - "x": 315.470396, - "y": -2645.943934 - } - } - }, - { - "id": "ded18573-86fe-5b41-bb52-170a26aa2796", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.470396, - "y": -2645.943934 - }, - "endPoint": { - "x": 315.245909, - "y": -2646.002951 - } - } - }, - { - "id": "b35d5c74-da01-5017-97df-8045e65d5206", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.245909, - "y": -2646.002951 - }, - "endPoint": { - "x": 314.934931, - "y": -2645.940026 - } - } - }, - { - "id": "da56aeb8-ef8a-5a76-8e6c-4c513e49480b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.934931, - "y": -2645.940026 - }, - "endPoint": { - "x": 314.802886, - "y": -2645.848582 - } - } - }, - { - "id": "d9a3bc1a-cca1-5e63-b10e-7bedba5da060", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.802886, - "y": -2645.848582 - }, - "endPoint": { - "x": 314.747791, - "y": -2645.636187 - } - } - }, - { - "id": "f85e6fc2-21da-5a91-9cfb-13ef208a1ed8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.747791, - "y": -2645.636187 - }, - "endPoint": { - "x": 314.61, - "y": -2645.368628 - } - } - }, - { - "id": "5391a60c-e9f3-5c10-aa64-ba564c711e0b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.61, - "y": -2645.368628 - }, - "endPoint": { - "x": 314.499706, - "y": -2645.179796 - } - } - }, - { - "id": "d4540f6f-686d-5652-b6f7-3ee449db8a87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.499706, - "y": -2645.179796 - }, - "endPoint": { - "x": 314.358017, - "y": -2645.132615 - } - } - }, - { - "id": "df99d8b4-0465-511b-9155-df586262e2ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.358017, - "y": -2645.132615 - }, - "endPoint": { - "x": 314.094234, - "y": -2645.108998 - } - } - }, - { - "id": "2c2531a3-f4ef-5370-9b41-a2ea2ba931e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.094234, - "y": -2645.108998 - }, - "endPoint": { - "x": 313.806751, - "y": -2645.179796 - } - } - }, - { - "id": "25e9419c-00df-5ceb-a9a8-d09a748b824b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.806751, - "y": -2645.179796 - }, - "endPoint": { - "x": 313.586266, - "y": -2645.376501 - } - } - }, - { - "id": "5914466e-15a2-5258-a37c-c34ebde16018", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.586266, - "y": -2645.376501 - }, - "endPoint": { - "x": 313.381581, - "y": -2645.596824 - } - } - }, - { - "id": "cf00290a-f1a6-557a-9fdc-2a53d559dcd4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.381581, - "y": -2645.596824 - }, - "endPoint": { - "x": 313.294987, - "y": -2645.703022 - } - } - }, - { - "id": "545b6687-5b20-5e71-afcb-2314ccbaf434", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.294987, - "y": -2645.703022 - }, - "endPoint": { - "x": 313.290986, - "y": -2645.813183 - } - } - }, - { - "id": "79631985-eb78-5ea6-aa3f-4eb51d332a01", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.290986, - "y": -2645.813183 - }, - "endPoint": { - "x": 313.153195, - "y": -2645.942998 - } - } - }, - { - "id": "1a0bd071-e0e4-5cb8-8a96-d52ddc8ffe55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.153195, - "y": -2645.942998 - }, - "endPoint": { - "x": 313.121697, - "y": -2646.143667 - } - } - }, - { - "id": "a6a726e3-01e7-599c-bbac-59646558df67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.121697, - "y": -2646.143667 - }, - "endPoint": { - "x": 312.991806, - "y": -2646.379735 - } - } - }, - { - "id": "16819ece-bd3e-5cdd-88bf-14f09956fe01", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.991806, - "y": -2646.379735 - }, - "endPoint": { - "x": 312.569714, - "y": -2646.723763 - } - } - }, - { - "id": "07a44817-94c4-5313-a984-480e19ff1d61", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.569714, - "y": -2646.723763 - }, - "endPoint": { - "x": 312.455521, - "y": -2646.877196 - } - } - }, - { - "id": "a46d6242-d3ae-5aed-a16d-f1f2e81f2f33", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.455521, - "y": -2646.877196 - }, - "endPoint": { - "x": 312.156342, - "y": -2646.955922 - } - } - }, - { - "id": "436545a9-6881-5efe-a06f-b2713cde6674", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.156342, - "y": -2646.955922 - }, - "endPoint": { - "x": 312.061848, - "y": -2647.050338 - } - } - }, - { - "id": "68a77523-4491-51b0-b0af-d5fba2816452", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.061848, - "y": -2647.050338 - }, - "endPoint": { - "x": 311.994851, - "y": -2647.258825 - } - } - }, - { - "id": "daa28295-957e-5e72-ba33-906d611c1562", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.994851, - "y": -2647.258825 - }, - "endPoint": { - "x": 311.908257, - "y": -2647.428003 - } - } - }, - { - "id": "89a433f2-54f3-51f2-991b-2002e7a7a5eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.908257, - "y": -2647.428003 - }, - "endPoint": { - "x": 311.790165, - "y": -2647.510638 - } - } - }, - { - "id": "787835fe-ad8f-552d-865c-c400724c831f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.790165, - "y": -2647.510638 - }, - "endPoint": { - "x": 311.764721, - "y": -2647.702058 - } - } - }, - { - "id": "7f233b60-cf94-5aad-b9e1-fcb406628ec2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.764721, - "y": -2647.702058 - }, - "endPoint": { - "x": 311.715268, - "y": -2647.835397 - } - } - }, - { - "id": "f0b2b252-b1b1-5118-acb4-6a8e52228149", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.715268, - "y": -2647.835397 - }, - "endPoint": { - "x": 311.646116, - "y": -2647.998354 - } - } - }, - { - "id": "d36ac6f7-fc94-5707-b76f-cacb707c8d83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.646116, - "y": -2647.998354 - }, - "endPoint": { - "x": 311.626315, - "y": -2648.111984 - } - } - }, - { - "id": "ddcdb0c3-7424-5963-82cc-dc01c9d1dbb5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.626315, - "y": -2648.111984 - }, - "endPoint": { - "x": 311.710343, - "y": -2648.20084 - } - } - }, - { - "id": "b0932fe5-9a15-5218-af23-74488693a002", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.710343, - "y": -2648.20084 - }, - "endPoint": { - "x": 311.720193, - "y": -2648.368752 - } - } - }, - { - "id": "2945e156-cfff-510a-beec-f4029a27a435", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.720193, - "y": -2648.368752 - }, - "endPoint": { - "x": 311.833873, - "y": -2648.541619 - } - } - }, - { - "id": "4a88015e-f4c9-55a6-9e6e-4e2c4491d217", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.833873, - "y": -2648.541619 - }, - "endPoint": { - "x": 312.076109, - "y": -2648.650239 - } - } - }, - { - "id": "2c06544b-5fc0-568b-b014-09de16b5aad0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.076109, - "y": -2648.650239 - }, - "endPoint": { - "x": 312.402272, - "y": -2648.684813 - } - } - }, - { - "id": "a40d7d70-bf3b-57ec-b6df-f8898fcf40b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.402272, - "y": -2648.684813 - }, - "endPoint": { - "x": 312.575254, - "y": -2648.674958 - } - } - }, - { - "id": "6c9ed544-c432-515c-b03a-2bbed6482eba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.575254, - "y": -2648.674958 - }, - "endPoint": { - "x": 312.743311, - "y": -2648.566283 - } - } - }, - { - "id": "aa18880e-fcf5-527b-b852-3ba24001a920", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.743311, - "y": -2648.566283 - }, - "endPoint": { - "x": 312.916293, - "y": -2648.576193 - } - } - }, - { - "id": "0478a84e-3062-5504-9319-d9d12e0310a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.916293, - "y": -2648.576193 - }, - "endPoint": { - "x": 312.936095, - "y": -2648.650239 - } - } - }, - { - "id": "ce2c0084-06e8-5b9d-9bb5-74c6328868c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.936095, - "y": -2648.650239 - }, - "endPoint": { - "x": 312.871765, - "y": -2648.768769 - } - } - }, - { - "id": "45c80f7c-70b9-5a7b-a9d1-3e57bc0a3c10", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.871765, - "y": -2648.768769 - }, - "endPoint": { - "x": 312.545603, - "y": -2648.852725 - } - } - }, - { - "id": "f9db1f31-2c82-54fb-9c2c-9eb263c695df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.545603, - "y": -2648.852725 - }, - "endPoint": { - "x": 312.451725, - "y": -2649.020637 - } - } - }, - { - "id": "f859f17c-4be1-5876-a41e-57782fe8a6a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.451725, - "y": -2649.020637 - }, - "endPoint": { - "x": 312.22929, - "y": -2649.139167 - } - } - }, - { - "id": "24dab304-4c6a-54f8-b6c4-d5c54b6203bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.22929, - "y": -2649.139167 - }, - "endPoint": { - "x": 312.090883, - "y": -2649.341652 - } - } - }, - { - "id": "e3a9f187-5b5f-5c2f-aa0c-d7f7867b32c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.090883, - "y": -2649.341652 - }, - "endPoint": { - "x": 311.947552, - "y": -2649.598476 - } - } - }, - { - "id": "6526ec59-c953-5185-9235-9401d47740f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.947552, - "y": -2649.598476 - }, - "endPoint": { - "x": 311.878503, - "y": -2649.88277 - } - } - }, - { - "id": "3f77559c-d237-5234-99c8-f77503f81347", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.878503, - "y": -2649.88277 - }, - "endPoint": { - "x": 311.809351, - "y": -2650.134639 - } - } - }, - { - "id": "3580dc80-bca5-5e13-ab47-6f201030d003", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.809351, - "y": -2650.134639 - }, - "endPoint": { - "x": 311.873578, - "y": -2650.445799 - } - } - }, - { - "id": "71c9082e-b1b9-57a4-a990-a8a063ef1650", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.873578, - "y": -2650.445799 - }, - "endPoint": { - "x": 311.962532, - "y": -2650.712477 - } - } - }, - { - "id": "916daf0b-2e53-55b8-b9ed-69b4a1d704ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.962532, - "y": -2650.712477 - }, - "endPoint": { - "x": 312.209591, - "y": -2650.87048 - } - } - }, - { - "id": "5126b052-43ee-52eb-a3ef-87a981e82974", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.209591, - "y": -2650.87048 - }, - "endPoint": { - "x": 312.471629, - "y": -2650.944581 - } - } - }, - { - "id": "632c4501-7362-5c80-b084-673861f3be76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.471629, - "y": -2650.944581 - }, - "endPoint": { - "x": 312.679187, - "y": -2650.885289 - } - } - }, - { - "id": "adc33525-5eca-5f71-a5f1-5ad9ad2d7621", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.679187, - "y": -2650.885289 - }, - "endPoint": { - "x": 312.816362, - "y": -2650.821868 - } - } - }, - { - "id": "04d5082d-2309-5623-8dce-851cada606dc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.816362, - "y": -2650.821868 - }, - "endPoint": { - "x": 312.986061, - "y": -2650.809756 - } - } - }, - { - "id": "b977d667-1764-587d-8c61-de1da93c0072", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.986061, - "y": -2650.809756 - }, - "endPoint": { - "x": 313.124262, - "y": -2650.82429 - } - } - }, - { - "id": "b3221aec-72a5-59ac-91fd-df540f68428a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.124262, - "y": -2650.82429 - }, - "endPoint": { - "x": 313.179973, - "y": -2650.858203 - } - } - }, - { - "id": "65d70260-3fb7-5754-8ed4-68fe585a96e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.179973, - "y": -2650.858203 - }, - "endPoint": { - "x": 313.179973, - "y": -2650.942985 - } - } - }, - { - "id": "e86042b6-f40a-513a-b66b-bb3f33db0b6b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.179973, - "y": -2650.942985 - }, - "endPoint": { - "x": 313.10959, - "y": -2651.146847 - } - } - }, - { - "id": "a5dcc47a-d1b3-5882-a46c-26efc8f7627d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.10959, - "y": -2651.146847 - }, - "endPoint": { - "x": 313.074604, - "y": -2651.297968 - } - } - }, - { - "id": "d704d973-964f-5cf9-99c4-776cd4f2e811", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.074604, - "y": -2651.297968 - }, - "endPoint": { - "x": 312.966054, - "y": -2651.390952 - } - } - }, - { - "id": "3baa14ac-3307-579d-88fc-7d615868f5f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.966054, - "y": -2651.390952 - }, - "endPoint": { - "x": 312.927272, - "y": -2651.487846 - } - } - }, - { - "id": "d6b3ea30-9c84-5b8f-93a8-0b52a95b041e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.927272, - "y": -2651.487846 - }, - "endPoint": { - "x": 312.896287, - "y": -2651.728098 - } - } - }, - { - "id": "f5d0ec57-cb42-5389-afce-a3857595ba75", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.896287, - "y": -2651.728098 - }, - "endPoint": { - "x": 312.72946, - "y": -2651.828846 - } - } - }, - { - "id": "014a2813-757f-5353-872a-0441bc7bc7bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.72946, - "y": -2651.828846 - }, - "endPoint": { - "x": 312.604803, - "y": -2652.056215 - } - } - }, - { - "id": "10a8129f-f271-52d0-95e9-e542fdcbe448", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.604803, - "y": -2652.056215 - }, - "endPoint": { - "x": 312.531034, - "y": -2652.253801 - } - } - }, - { - "id": "a278d9e5-9162-5218-897e-499f8fa80f0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.531034, - "y": -2652.253801 - }, - "endPoint": { - "x": 312.310035, - "y": -2652.486346 - } - } - }, - { - "id": "b26aa6bf-0fd1-5794-ab90-5707f55ae91a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.310035, - "y": -2652.486346 - }, - "endPoint": { - "x": 312.201485, - "y": -2652.703311 - } - } - }, - { - "id": "02ea189d-1600-5878-b837-4935de753488", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.201485, - "y": -2652.703311 - }, - "endPoint": { - "x": 312.193688, - "y": -2653.114117 - } - } - }, - { - "id": "d350731f-364c-5e66-a00f-593ccf461945", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.193688, - "y": -2653.114117 - }, - "endPoint": { - "x": 312.275151, - "y": -2653.214865 - } - } - }, - { - "id": "f32356c8-fdfc-5f81-a422-1abe547c4212", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.275151, - "y": -2653.214865 - }, - "endPoint": { - "x": 312.395295, - "y": -2653.404743 - } - } - }, - { - "id": "06c85744-4149-5116-9a83-f1e602b36c11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.395295, - "y": -2653.404743 - }, - "endPoint": { - "x": 312.539549, - "y": -2653.662117 - } - } - }, - { - "id": "b6abcdf9-1c9a-5622-9618-a0f2ccfbc8ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.539549, - "y": -2653.662117 - }, - "endPoint": { - "x": 312.8692, - "y": -2653.666026 - } - } - }, - { - "id": "7b0c0617-81f7-5ea1-954f-75e1320aa9fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.8692, - "y": -2653.666026 - }, - "endPoint": { - "x": 313.17946, - "y": -2653.681496 - } - } - }, - { - "id": "09a6e735-c3d1-5299-aa48-8cb62b0ba117", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.17946, - "y": -2653.681496 - }, - "endPoint": { - "x": 313.33459, - "y": -2653.658263 - } - } - }, - { - "id": "46a1df14-c320-5a75-8306-3cbc76cf66dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.33459, - "y": -2653.658263 - }, - "endPoint": { - "x": 313.381068, - "y": -2653.565223 - } - } - }, - { - "id": "1511e3f3-0420-5ab9-8e0f-ebb2f0d00f14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.381068, - "y": -2653.565223 - }, - "endPoint": { - "x": 313.485821, - "y": -2653.510996 - } - } - }, - { - "id": "fe4933db-35c5-5e3f-9c22-c2d462d4a1de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.485821, - "y": -2653.510996 - }, - "endPoint": { - "x": 313.606067, - "y": -2653.495471 - } - } - }, - { - "id": "42ea8332-2d0a-507d-aed2-974d10fa20a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.606067, - "y": -2653.495471 - }, - "endPoint": { - "x": 313.726211, - "y": -2653.371491 - } - } - }, - { - "id": "3fe04a12-76df-51a3-b0ee-41c66cb161c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.726211, - "y": -2653.371491 - }, - "endPoint": { - "x": 313.865848, - "y": -2653.193229 - } - } - }, - { - "id": "1bf4043d-3856-5e39-a10e-9eb20ce281e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.865848, - "y": -2653.193229 - }, - "endPoint": { - "x": 313.958906, - "y": -2653.108007 - } - } - }, - { - "id": "c034a2c7-313c-5ac6-b341-7c183f6ba3d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.958906, - "y": -2653.108007 - }, - "endPoint": { - "x": 314.133427, - "y": -2653.061487 - } - } - }, - { - "id": "64cfec2b-9c6e-5e87-85fe-5ac4fbf02913", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.133427, - "y": -2653.061487 - }, - "endPoint": { - "x": 314.245876, - "y": -2653.088628 - } - } - }, - { - "id": "43d7b455-8f5f-5472-8195-be225ab59ba0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.245876, - "y": -2653.088628 - }, - "endPoint": { - "x": 314.331238, - "y": -2653.166088 - } - } - }, - { - "id": "2f3fe2b8-a5ad-56e5-8cba-10075b7ebd24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.331238, - "y": -2653.166088 - }, - "endPoint": { - "x": 314.424296, - "y": -2653.34435 - } - } - }, - { - "id": "a9ba2e57-b8ac-5284-9c11-a0ca0d590cc9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.424296, - "y": -2653.34435 - }, - "endPoint": { - "x": 314.59225, - "y": -2653.41724 - } - } - }, - { - "id": "d2a711c4-a328-5057-a76d-0cab40622727", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.59225, - "y": -2653.41724 - }, - "endPoint": { - "x": 314.867626, - "y": -2653.483084 - } - } - }, - { - "id": "cff19977-e4eb-5b49-96d4-4d9d2de184d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.867626, - "y": -2653.483084 - }, - "endPoint": { - "x": 315.042148, - "y": -2653.506371 - } - } - }, - { - "id": "6bb1dcd3-9b01-572f-bdfa-395bcc85db3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.042148, - "y": -2653.506371 - }, - "endPoint": { - "x": 315.197277, - "y": -2653.378483 - } - } - }, - { - "id": "d9e81c1b-d1b9-53c1-91f6-6d69799ca614", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.197277, - "y": -2653.378483 - }, - "endPoint": { - "x": 315.426074, - "y": -2653.235124 - } - } - }, - { - "id": "ef7353b8-321a-5a19-af59-47709b75d662", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.426074, - "y": -2653.235124 - }, - "endPoint": { - "x": 315.530725, - "y": -2653.072332 - } - } - }, - { - "id": "2731f9e1-ece3-5ece-b579-89f71e820fdb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.530725, - "y": -2653.072332 - }, - "endPoint": { - "x": 315.569507, - "y": -2652.932827 - } - } - }, - { - "id": "d068c73e-b66d-53c0-b13c-a2e42a9c9ef7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.569507, - "y": -2652.932827 - }, - "endPoint": { - "x": 315.639377, - "y": -2652.746858 - } - } - }, - { - "id": "7f836a86-2758-5a95-8f89-a3dcc6eae4af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.639377, - "y": -2652.746858 - }, - "endPoint": { - "x": 315.769883, - "y": -2652.270317 - } - } - }, - { - "id": "0d50a749-0391-5c16-ab9f-a4c1a098f5b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.769883, - "y": -2652.270317 - }, - "endPoint": { - "x": 315.857195, - "y": -2651.905149 - } - } - }, - { - "id": "34f70665-6675-5254-acfc-71d689010825", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.857195, - "y": -2651.905149 - }, - "endPoint": { - "x": 315.84632, - "y": -2651.545487 - } - } - }, - { - "id": "14449d66-8372-5901-ae87-abc4c4b35c59", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.84632, - "y": -2651.545487 - }, - "endPoint": { - "x": 315.808153, - "y": -2651.114916 - } - } - }, - { - "id": "eeb128cf-e3ad-5206-b168-00446d5e6f6f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.808153, - "y": -2651.114916 - }, - "endPoint": { - "x": 315.726279, - "y": -2650.940507 - } - } - }, - { - "id": "d0edf007-7cda-59e5-83da-578b78589ef2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.726279, - "y": -2650.940507 - }, - "endPoint": { - "x": 315.562633, - "y": -2650.875104 - } - } - }, - { - "id": "4e33b840-32ff-5d18-8577-a7dd814c103f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.562633, - "y": -2650.875104 - }, - "endPoint": { - "x": 315.311778, - "y": -2650.880554 - } - } - }, - { - "id": "606c82f8-1bae-542f-b43e-3fa4c649ab76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.311778, - "y": -2650.880554 - }, - "endPoint": { - "x": 315.071799, - "y": -2651.038612 - } - } - }, - { - "id": "5433ee2f-0124-50ad-945c-c88d9093a913", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.071799, - "y": -2651.038612 - }, - "endPoint": { - "x": 314.864548, - "y": -2651.305675 - } - } - }, - { - "id": "69705582-f0d8-583d-905e-76e6d4e92170", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.864548, - "y": -2651.305675 - }, - "endPoint": { - "x": 314.711778, - "y": -2651.670788 - } - } - }, - { - "id": "c3720877-8024-5251-b70b-bbeb37eca15c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.711778, - "y": -2651.670788 - }, - "endPoint": { - "x": 314.602715, - "y": -2651.807044 - } - } - }, - { - "id": "998e6be7-564d-52f2-98f5-76f65a4a467f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.602715, - "y": -2651.807044 - }, - "endPoint": { - "x": 314.455486, - "y": -2652.014155 - } - } - }, - { - "id": "f9eb3b9a-bff9-55b1-807a-0e2a264d12f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.455486, - "y": -2652.014155 - }, - "endPoint": { - "x": 314.330007, - "y": -2652.074108 - } - } - }, - { - "id": "512b6760-e74c-56d4-ab02-c0b2c26664f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.330007, - "y": -2652.074108 - }, - "endPoint": { - "x": 314.174261, - "y": -2652.074328 - } - } - }, - { - "id": "f426a45a-2406-5a5c-8242-58b763e7cbb3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.174261, - "y": -2652.074328 - }, - "endPoint": { - "x": 314.110034, - "y": -2652.015531 - } - } - }, - { - "id": "49c0c391-c4a0-54a9-8051-9c77029f2b10", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.110034, - "y": -2652.015531 - }, - "endPoint": { - "x": 314.128707, - "y": -2651.724189 - } - } - }, - { - "id": "41e25f5d-9b50-5211-8c37-cf9dbec76145", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.128707, - "y": -2651.724189 - }, - "endPoint": { - "x": 314.139891, - "y": -2651.51284 - } - } - }, - { - "id": "e7d1f60f-49ef-5c54-ad83-9f66dc92ce91", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.139891, - "y": -2651.51284 - }, - "endPoint": { - "x": 314.190267, - "y": -2651.355168 - } - } - }, - { - "id": "54721304-b384-5f29-8bd9-442685ddd919", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.190267, - "y": -2651.355168 - }, - "endPoint": { - "x": 314.170055, - "y": -2651.157197 - } - } - }, - { - "id": "38a36c4e-5abb-5ffc-8f5e-f369d8a40d0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.170055, - "y": -2651.157197 - }, - "endPoint": { - "x": 314.109624, - "y": -2651.059863 - } - } - }, - { - "id": "64b0a9c2-6cef-5c33-9a2a-87c3deaca8bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.109624, - "y": -2651.059863 - }, - "endPoint": { - "x": 314.139891, - "y": -2650.791423 - } - } - }, - { - "id": "717124d0-1dc9-5b19-8be7-a3a798a9f727", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.139891, - "y": -2650.791423 - }, - "endPoint": { - "x": 314.270807, - "y": -2650.630338 - } - } - }, - { - "id": "b9d012a4-b34f-5a78-bbc5-82d87a8d6463", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.270807, - "y": -2650.630338 - }, - "endPoint": { - "x": 314.408495, - "y": -2650.59681 - } - } - }, - { - "id": "4a1a13e1-a96d-51a8-9794-e7044427188c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.408495, - "y": -2650.59681 - }, - "endPoint": { - "x": 314.549569, - "y": -2650.657203 - } - } - }, - { - "id": "24c48608-443b-5744-af2b-fdd16b3ae8b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.549569, - "y": -2650.657203 - }, - "endPoint": { - "x": 314.892045, - "y": -2650.687428 - } - } - }, - { - "id": "331b6a97-a17b-5898-9018-7c4fb1d8a02d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.892045, - "y": -2650.687428 - }, - "endPoint": { - "x": 314.932674, - "y": -2650.602481 - } - } - }, - { - "id": "6302d1d3-c2f1-56cd-b972-365edc2d3a73", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.932674, - "y": -2650.602481 - }, - "endPoint": { - "x": 314.966224, - "y": -2650.51858 - } - } - }, - { - "id": "6dd784e9-3a66-574a-b0d5-a8813f8e0306", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.966224, - "y": -2650.51858 - }, - "endPoint": { - "x": 315.214719, - "y": -2650.471619 - } - } - }, - { - "id": "33e146a6-e8de-574e-8dd9-18093c47b3ff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.214719, - "y": -2650.471619 - }, - "endPoint": { - "x": 315.469986, - "y": -2650.448111 - } - } - }, - { - "id": "0950b173-6345-5565-b699-9f81e723a245", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.469986, - "y": -2650.448111 - }, - "endPoint": { - "x": 315.647893, - "y": -2650.448111 - } - } - }, - { - "id": "5b30c567-1c12-56f3-a00a-d74625272b72", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.647893, - "y": -2650.448111 - }, - "endPoint": { - "x": 315.785581, - "y": -2650.51858 - } - } - }, - { - "id": "c65db89c-1b46-539e-81f4-1843b016e185", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.785581, - "y": -2650.51858 - }, - "endPoint": { - "x": 315.940095, - "y": -2650.582331 - } - } - }, - { - "id": "0148fedb-f5f2-5169-b996-f923777934f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.940095, - "y": -2650.582331 - }, - "endPoint": { - "x": 316.087838, - "y": -2650.729984 - } - } - }, - { - "id": "41f09355-9615-5257-8b4f-f4532e33c56b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.087838, - "y": -2650.729984 - }, - "endPoint": { - "x": 316.202031, - "y": -2650.971557 - } - } - }, - { - "id": "385327f6-6400-55f5-bce2-16c6774237fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.202031, - "y": -2650.971557 - }, - "endPoint": { - "x": 316.218754, - "y": -2651.246713 - } - } - }, - { - "id": "a58ade50-afd7-5270-939e-0fcfdcd81a8c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.218754, - "y": -2651.246713 - }, - "endPoint": { - "x": 316.212085, - "y": -2651.427948 - } - } - }, - { - "id": "ad6503c9-37c9-5dd5-a686-ce4fc3dd637d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.212085, - "y": -2651.427948 - }, - "endPoint": { - "x": 316.222858, - "y": -2651.551488 - } - } - }, - { - "id": "cc5fca7d-1d4d-59b2-a781-754b707d3aa8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.222858, - "y": -2651.551488 - }, - "endPoint": { - "x": 316.235478, - "y": -2651.808421 - } - } - }, - { - "id": "a83521f7-d36f-54ff-af02-77442ab53010", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.235478, - "y": -2651.808421 - }, - "endPoint": { - "x": 316.307195, - "y": -2651.960092 - } - } - }, - { - "id": "54ecea1f-0c9e-5469-a2ff-d909c757fbb5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.307195, - "y": -2651.960092 - }, - "endPoint": { - "x": 316.399945, - "y": -2652.010631 - } - } - }, - { - "id": "57766622-6264-5bd8-8faa-8c8d5ef4673d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.399945, - "y": -2652.010631 - }, - "endPoint": { - "x": 316.416771, - "y": -2652.393912 - } - } - }, - { - "id": "7b7e7e2c-67c1-5911-a545-c4282663fd62", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.416771, - "y": -2652.393912 - }, - "endPoint": { - "x": 316.42939, - "y": -2652.655084 - } - } - }, - { - "id": "c2516b01-3872-5e5b-a69b-df35fb04761e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.42939, - "y": -2652.655084 - }, - "endPoint": { - "x": 316.539172, - "y": -2652.87838 - } - } - }, - { - "id": "b5877dd6-5353-5bae-bb05-99c44e893dfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.539172, - "y": -2652.87838 - }, - "endPoint": { - "x": 316.855382, - "y": -2653.084774 - } - } - }, - { - "id": "c9f7f14e-bb03-50f3-8d40-bcdf988f6629", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.855382, - "y": -2653.084774 - }, - "endPoint": { - "x": 317.053501, - "y": -2653.240685 - } - } - }, - { - "id": "99971bd7-dfaa-5154-8884-34cfd7f5acfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.053501, - "y": -2653.240685 - }, - "endPoint": { - "x": 317.237666, - "y": -2653.359545 - } - } - }, - { - "id": "a359c4ff-1a62-53e9-9d6c-67a0556ccdb3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.237666, - "y": -2653.359545 - }, - "endPoint": { - "x": 317.600252, - "y": -2653.397421 - } - } - }, - { - "id": "1822e277-4b4e-5d1f-a12a-47ebe2590fd9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.600252, - "y": -2653.397421 - }, - "endPoint": { - "x": 317.654014, - "y": -2653.45264 - } - } - }, - { - "id": "0a0a0265-f55a-5e5e-9590-c09571744922", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.654014, - "y": -2653.45264 - }, - "endPoint": { - "x": 317.683665, - "y": -2653.713316 - } - } - }, - { - "id": "9fadadbf-0453-53c1-aeeb-96d6cfcccc91", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.683665, - "y": -2653.713316 - }, - "endPoint": { - "x": 317.778569, - "y": -2653.796282 - } - } - }, - { - "id": "a582742f-807e-54fb-a2bf-f4394c6e2f0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.778569, - "y": -2653.796282 - }, - "endPoint": { - "x": 318.543446, - "y": -2653.292655 - } - } - }, - { - "id": "0deaad24-d61a-5a79-a235-fac665f9b967", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.543446, - "y": -2653.292655 - }, - "endPoint": { - "x": 319.563384, - "y": -2652.463168 - } - } - }, - { - "id": "0b9c87e3-6754-5f9d-92a8-6672ff6b7eea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.563384, - "y": -2652.463168 - }, - "endPoint": { - "x": 320.126653, - "y": -2651.870686 - } - } - }, - { - "id": "dc1c7eb6-f270-5963-a58b-261bf8f3cb8d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.126653, - "y": -2651.870686 - }, - "endPoint": { - "x": 320.483185, - "y": -2651.293949 - } - } - }, - { - "id": "c2ceffaf-8f4e-5a19-ace7-f004e0546b65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.483185, - "y": -2651.293949 - }, - "endPoint": { - "x": 320.667043, - "y": -2650.908852 - } - } - }, - { - "id": "8074bbe4-20e4-5eaa-ba11-bf4c993b5650", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.667043, - "y": -2650.908852 - }, - "endPoint": { - "x": 320.453534, - "y": -2651.009544 - } - } - }, - { - "id": "5294bc44-cb4b-53bd-9ff5-7c3f122cf620", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.453534, - "y": -2651.009544 - }, - "endPoint": { - "x": 320.34088, - "y": -2651.133964 - } - } - }, - { - "id": "74b94015-99f5-5705-bfce-f4644856bb7a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.34088, - "y": -2651.133964 - }, - "endPoint": { - "x": 320.151174, - "y": -2651.175474 - } - } - }, - { - "id": "b869c08b-c61c-5570-9acd-8a4d181a966b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.151174, - "y": -2651.175474 - }, - "endPoint": { - "x": 320.026619, - "y": -2651.086563 - } - } - }, - { - "id": "b706f9e0-8932-5e1a-8604-a797a07d7f7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.026619, - "y": -2651.086563 - }, - "endPoint": { - "x": 319.943616, - "y": -2650.902906 - } - } - }, - { - "id": "f903c634-aff1-5eb8-871a-8987a857cd47", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.943616, - "y": -2650.902906 - }, - "endPoint": { - "x": 319.659006, - "y": -2650.760703 - } - } - }, - { - "id": "a6535398-dd81-52f6-8b52-6231b598a0f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.659006, - "y": -2650.760703 - }, - "endPoint": { - "x": 319.380347, - "y": -2650.754813 - } - } - }, - { - "id": "37590d30-36f5-5d09-a45c-c009742c659a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.380347, - "y": -2650.754813 - }, - "endPoint": { - "x": 319.303192, - "y": -2650.701466 - } - } - }, - { - "id": "d3fd60b7-dd39-5f07-abe9-5ae70f1323a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.303192, - "y": -2650.701466 - }, - "endPoint": { - "x": 319.172789, - "y": -2650.802159 - } - } - }, - { - "id": "ee5614f0-f292-5951-bead-9a0d5dcaab9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.172789, - "y": -2650.802159 - }, - "endPoint": { - "x": 319.036434, - "y": -2650.985871 - } - } - }, - { - "id": "40d2c2a1-27f9-50fe-ae18-69124df9df9d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.036434, - "y": -2650.985871 - }, - "endPoint": { - "x": 319.006783, - "y": -2651.151746 - } - } - }, - { - "id": "952c09bb-5c6d-57c2-8c1e-c45a9596bd8e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.006783, - "y": -2651.151746 - }, - "endPoint": { - "x": 319.036434, - "y": -2651.347295 - } - } - }, - { - "id": "afd56225-ccf5-5c8c-b1e5-a3c35bcbd9ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.036434, - "y": -2651.347295 - }, - "endPoint": { - "x": 319.22614, - "y": -2651.412423 - } - } - }, - { - "id": "833cdd68-1fc6-5fd1-8712-17440f7fe79e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.22614, - "y": -2651.412423 - }, - "endPoint": { - "x": 319.48705, - "y": -2651.471715 - } - } - }, - { - "id": "b77f57c1-a2e7-53b0-8614-7915202a75fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.48705, - "y": -2651.471715 - }, - "endPoint": { - "x": 319.670805, - "y": -2651.513171 - } - } - }, - { - "id": "3e8055aa-dbdb-5bfc-863d-d1cf6da5b293", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.670805, - "y": -2651.513171 - }, - "endPoint": { - "x": 319.78941, - "y": -2651.548735 - } - } - }, - { - "id": "5c04a952-438a-5fac-84bb-17e57ab8be6b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.78941, - "y": -2651.548735 - }, - "endPoint": { - "x": 319.801311, - "y": -2651.708664 - } - } - }, - { - "id": "ecf45171-03c6-5864-998f-81c1749fedd7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.801311, - "y": -2651.708664 - }, - "endPoint": { - "x": 319.801311, - "y": -2651.910104 - } - } - }, - { - "id": "2dfcad9a-09c2-5045-b9ce-7bcd79419107", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.801311, - "y": -2651.910104 - }, - "endPoint": { - "x": 319.759758, - "y": -2652.064198 - } - } - }, - { - "id": "d691d817-0a89-5c59-8d72-535033b038d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.759758, - "y": -2652.064198 - }, - "endPoint": { - "x": 319.51075, - "y": -2652.052306 - } - } - }, - { - "id": "e7832f90-056e-52ff-95cc-a30faebe80d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.51075, - "y": -2652.052306 - }, - "endPoint": { - "x": 319.326893, - "y": -2651.987179 - } - } - }, - { - "id": "4345e7cb-9704-5b1f-a219-fb25f22ad5b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.326893, - "y": -2651.987179 - }, - "endPoint": { - "x": 319.178739, - "y": -2652.004906 - } - } - }, - { - "id": "8abd4b6c-d0bf-57f6-aba5-3f4350ddc31a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.178739, - "y": -2652.004906 - }, - "endPoint": { - "x": 319.012631, - "y": -2652.105653 - } - } - }, - { - "id": "8a3850f8-275e-5590-b8c9-41a4cb8147da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.012631, - "y": -2652.105653 - }, - "endPoint": { - "x": 318.805176, - "y": -2652.111599 - } - } - }, - { - "id": "cfd26be7-548d-5fc9-b801-0d7e902f068b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.805176, - "y": -2652.111599 - }, - "endPoint": { - "x": 318.597618, - "y": -2652.111599 - } - } - }, - { - "id": "e2e2ebfb-cb46-50d6-84fe-3cdf7fc147df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.597618, - "y": -2652.111599 - }, - "endPoint": { - "x": 318.449362, - "y": -2652.188618 - } - } - }, - { - "id": "c759c754-40c7-5fc8-93bd-70eb677a71a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.449362, - "y": -2652.188618 - }, - "endPoint": { - "x": 318.277406, - "y": -2652.200455 - } - } - }, - { - "id": "a54fd3e0-6910-5a4b-98bc-e94d4ed90f69", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.277406, - "y": -2652.200455 - }, - "endPoint": { - "x": 318.058049, - "y": -2652.170836 - } - } - }, - { - "id": "7f53bcea-0fb2-52bf-bc7a-03ab026709f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.058049, - "y": -2652.170836 - }, - "endPoint": { - "x": 317.986845, - "y": -2652.070089 - } - } - }, - { - "id": "556aea57-f3e9-57cb-8e8b-b342f4b356c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.986845, - "y": -2652.070089 - }, - "endPoint": { - "x": 317.785238, - "y": -2652.058252 - } - } - }, - { - "id": "7a493691-d040-58b8-a66a-3209e3a52cfc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.785238, - "y": -2652.058252 - }, - "endPoint": { - "x": 317.637085, - "y": -2652.153054 - } - } - }, - { - "id": "ffd40647-88ad-5e4f-9539-52dca4a4b179", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.637085, - "y": -2652.153054 - }, - "endPoint": { - "x": 317.595532, - "y": -2652.111599 - } - } - }, - { - "id": "97b27a94-135e-53f4-a3e1-d454987adc3d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.595532, - "y": -2652.111599 - }, - "endPoint": { - "x": 317.607434, - "y": -2651.999015 - } - } - }, - { - "id": "581edda2-8c0e-5d8a-a81b-efc19a487118", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.607434, - "y": -2651.999015 - }, - "endPoint": { - "x": 317.49478, - "y": -2651.880485 - } - } - }, - { - "id": "26e7848f-0ddb-5c00-9800-6ac86765e836", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.49478, - "y": -2651.880485 - }, - "endPoint": { - "x": 317.423576, - "y": -2651.827194 - } - } - }, - { - "id": "3567f54f-7982-54da-8575-77ea88f9dd23", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.423576, - "y": -2651.827194 - }, - "endPoint": { - "x": 317.387974, - "y": -2651.79163 - } - } - }, - { - "id": "aabd4f94-8b55-5a55-b972-74bb38ac056f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.387974, - "y": -2651.79163 - }, - "endPoint": { - "x": 317.269472, - "y": -2651.767957 - } - } - }, - { - "id": "dcf64b27-d23f-5c23-bdc3-09ae3c2e7861", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.269472, - "y": -2651.767957 - }, - "endPoint": { - "x": 317.144917, - "y": -2651.602026 - } - } - }, - { - "id": "c59ad8ae-aa84-534c-9da4-df5b92cb4ad5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.144917, - "y": -2651.602026 - }, - "endPoint": { - "x": 317.050013, - "y": -2651.483552 - } - } - }, - { - "id": "9a0f587d-5034-5785-b28a-5d90aa24cf03", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.050013, - "y": -2651.483552 - }, - "endPoint": { - "x": 317.026312, - "y": -2651.270221 - } - } - }, - { - "id": "889800c5-dbbe-5e0f-8257-ed245f73d658", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.026312, - "y": -2651.270221 - }, - "endPoint": { - "x": 317.085615, - "y": -2651.133964 - } - } - }, - { - "id": "136a98f9-a63a-5107-aacb-b7f09d5c389a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.085615, - "y": -2651.133964 - }, - "endPoint": { - "x": 317.032263, - "y": -2650.950307 - } - } - }, - { - "id": "6f3fe111-acd5-595c-9584-1c96e0d53c96", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.032263, - "y": -2650.950307 - }, - "endPoint": { - "x": 317.079664, - "y": -2650.68963 - } - } - }, - { - "id": "d395f49b-d398-52d0-9f32-1a3b50b942a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.079664, - "y": -2650.68963 - }, - "endPoint": { - "x": 317.293173, - "y": -2650.511863 - } - } - }, - { - "id": "28f16f2b-4eb3-500e-97a0-05be5a73af8b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.293173, - "y": -2650.511863 - }, - "endPoint": { - "x": 317.51253, - "y": -2650.434844 - } - } - }, - { - "id": "804a0bf1-7754-5846-8e11-912de827a7b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.51253, - "y": -2650.434844 - }, - "endPoint": { - "x": 317.625183, - "y": -2650.48819 - } - } - }, - { - "id": "6ed3e17f-0fe8-5e9d-9d46-1eca23cf3e90", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.625183, - "y": -2650.48819 - }, - "endPoint": { - "x": 317.601483, - "y": -2650.577046 - } - } - }, - { - "id": "8f68d706-de0a-5964-848d-9238e871398e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.601483, - "y": -2650.577046 - }, - "endPoint": { - "x": 317.447276, - "y": -2650.68963 - } - } - }, - { - "id": "2bbd7560-b073-5a78-98e7-ad439d2c06e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.447276, - "y": -2650.68963 - }, - "endPoint": { - "x": 317.376175, - "y": -2650.914742 - } - } - }, - { - "id": "fecf4349-0570-57a6-8508-2d3ef5cd7a24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.376175, - "y": -2650.914742 - }, - "endPoint": { - "x": 317.393925, - "y": -2651.276167 - } - } - }, - { - "id": "6108a220-f4d0-531b-af70-d90591d391d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.393925, - "y": -2651.276167 - }, - "endPoint": { - "x": 317.506579, - "y": -2651.447988 - } - } - }, - { - "id": "264942b8-3ef0-52ba-9424-c8eff6de6556", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.506579, - "y": -2651.447988 - }, - "endPoint": { - "x": 317.761538, - "y": -2651.530953 - } - } - }, - { - "id": "7b287343-cfef-507d-86f3-50a126946bd7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.761538, - "y": -2651.530953 - }, - "endPoint": { - "x": 318.034349, - "y": -2651.519116 - } - } - }, - { - "id": "d0bbc176-3a6c-526d-afbc-522b05baec83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.034349, - "y": -2651.519116 - }, - "endPoint": { - "x": 318.170703, - "y": -2651.382805 - } - } - }, - { - "id": "ed3e1400-d255-5666-9548-1280d31eaf41", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.170703, - "y": -2651.382805 - }, - "endPoint": { - "x": 318.324909, - "y": -2651.299894 - } - } - }, - { - "id": "194281dc-349e-569c-8f23-c00754fa0a61", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.324909, - "y": -2651.299894 - }, - "endPoint": { - "x": 318.443411, - "y": -2651.258384 - } - } - }, - { - "id": "d25bb914-b552-591c-bf7b-55fb73395bfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.443411, - "y": -2651.258384 - }, - "endPoint": { - "x": 318.473063, - "y": -2651.104346 - } - } - }, - { - "id": "f6be5637-ee71-517a-b4d8-40f1a2e65b5d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.473063, - "y": -2651.104346 - }, - "endPoint": { - "x": 318.473063, - "y": -2650.89696 - } - } - }, - { - "id": "f02c17b6-3600-5ec3-8b99-c1c64db42802", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.473063, - "y": -2650.89696 - }, - "endPoint": { - "x": 318.41376, - "y": -2650.802159 - } - } - }, - { - "id": "d1526b8d-7a04-5f2f-8800-84faaf1a7352", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.41376, - "y": -2650.802159 - }, - "endPoint": { - "x": 318.277406, - "y": -2650.701466 - } - } - }, - { - "id": "fbc4c5e7-5f78-5137-b5b2-e4b91805ecaa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.277406, - "y": -2650.701466 - }, - "endPoint": { - "x": 318.158801, - "y": -2650.56521 - } - } - }, - { - "id": "c41a52b8-23cc-5325-953d-41d9910e93b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.158801, - "y": -2650.56521 - }, - "endPoint": { - "x": 318.194403, - "y": -2650.482244 - } - } - }, - { - "id": "e3b60c9c-efc1-53c8-9d5e-0b2690c02cdb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.194403, - "y": -2650.482244 - }, - "endPoint": { - "x": 318.289308, - "y": -2650.440789 - } - } - }, - { - "id": "90e2aef7-29de-5af0-9a67-f07aefe2a7cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.289308, - "y": -2650.440789 - }, - "endPoint": { - "x": 318.490915, - "y": -2650.423007 - } - } - }, - { - "id": "954050dd-b5e8-5886-a9d3-fa936bed4ce2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.490915, - "y": -2650.423007 - }, - "endPoint": { - "x": 318.585716, - "y": -2650.369661 - } - } - }, - { - "id": "c2a0525f-a4db-5365-a31c-55b7278367f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.585716, - "y": -2650.369661 - }, - "endPoint": { - "x": 318.704321, - "y": -2650.334151 - } - } - }, - { - "id": "405e398e-b982-5c3a-b53b-c0eeabe8f705", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.704321, - "y": -2650.334151 - }, - "endPoint": { - "x": 318.793275, - "y": -2650.393389 - } - } - }, - { - "id": "3075a3ce-1cbe-5a1a-9386-105c982ff42e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.793275, - "y": -2650.393389 - }, - "endPoint": { - "x": 318.894129, - "y": -2650.334151 - } - } - }, - { - "id": "4f22bf61-02ad-5e3c-8093-e612c3398f8c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.894129, - "y": -2650.334151 - }, - "endPoint": { - "x": 319.042283, - "y": -2650.36377 - } - } - }, - { - "id": "11929bc0-505d-53d1-a9a8-31e4f1e0b308", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.042283, - "y": -2650.36377 - }, - "endPoint": { - "x": 319.273541, - "y": -2650.428898 - } - } - }, - { - "id": "07347beb-794f-5fa4-ac07-931c50e313c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.273541, - "y": -2650.428898 - }, - "endPoint": { - "x": 319.564102, - "y": -2650.423007 - } - } - }, - { - "id": "8150d36a-9faa-53ae-85a8-c3998359e7e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.564102, - "y": -2650.423007 - }, - "endPoint": { - "x": 319.872412, - "y": -2650.393389 - } - } - }, - { - "id": "93efbcb6-b249-574a-a150-e41956a1ff49", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.872412, - "y": -2650.393389 - }, - "endPoint": { - "x": 320.002918, - "y": -2650.304478 - } - } - }, - { - "id": "bf4352ce-f665-5453-aec4-b71e60628a3e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.002918, - "y": -2650.304478 - }, - "endPoint": { - "x": 320.127371, - "y": -2650.263023 - } - } - }, - { - "id": "bae45c3c-8bf0-535c-b1ad-416d55de5693", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.127371, - "y": -2650.263023 - }, - "endPoint": { - "x": 320.281578, - "y": -2650.233404 - } - } - }, - { - "id": "9a68f4f5-ddb9-5ad7-bbb7-b125dce2f336", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.281578, - "y": -2650.233404 - }, - "endPoint": { - "x": 320.34088, - "y": -2650.073419 - } - } - }, - { - "id": "8432d0f3-2d0f-58ff-a6c1-70eb978ebcf8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.34088, - "y": -2650.073419 - }, - "endPoint": { - "x": 320.346831, - "y": -2649.931217 - } - } - }, - { - "id": "dfd0b82e-624c-5d3b-8193-6e369fa0d346", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.346831, - "y": -2649.931217 - }, - "endPoint": { - "x": 320.28681, - "y": -2649.904571 - } - } - }, - { - "id": "b4cc5c3c-64f3-5984-afdf-99b8651cb7ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.28681, - "y": -2649.904571 - }, - "endPoint": { - "x": 320.197857, - "y": -2649.815715 - } - } - }, - { - "id": "fbeb49f9-1b69-5406-ae20-d7be59c6aae6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.197857, - "y": -2649.815715 - }, - "endPoint": { - "x": 320.168308, - "y": -2649.661677 - } - } - }, - { - "id": "2ac7900c-87da-5290-8f29-deafa8bce88b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.168308, - "y": -2649.661677 - }, - "endPoint": { - "x": 320.073404, - "y": -2649.602384 - } - } - }, - { - "id": "1b61b08e-a68b-5f3d-bac2-e4aa23f0f87f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.073404, - "y": -2649.602384 - }, - "endPoint": { - "x": 319.93705, - "y": -2649.632003 - } - } - }, - { - "id": "baa1ce44-53c9-5ce1-bf53-48e083d2867c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.93705, - "y": -2649.632003 - }, - "endPoint": { - "x": 319.747241, - "y": -2649.637949 - } - } - }, - { - "id": "1d2c72d7-ed2c-57cb-93a2-47a98bef457a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.747241, - "y": -2649.637949 - }, - "endPoint": { - "x": 319.515983, - "y": -2649.549093 - } - } - }, - { - "id": "1b9b351a-d644-5a30-9432-913adf219518", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.515983, - "y": -2649.549093 - }, - "endPoint": { - "x": 319.344027, - "y": -2649.566875 - } - } - }, - { - "id": "d95d46a8-452d-55c9-b750-77c93845c117", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.344027, - "y": -2649.566875 - }, - "endPoint": { - "x": 319.284724, - "y": -2649.649785 - } - } - }, - { - "id": "622e449f-8985-531c-acc6-bf8fa3d57b46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.284724, - "y": -2649.649785 - }, - "endPoint": { - "x": 319.089068, - "y": -2649.596494 - } - } - }, - { - "id": "50034564-f495-5610-8228-381b1531f331", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.089068, - "y": -2649.596494 - }, - "endPoint": { - "x": 318.875662, - "y": -2649.549093 - } - } - }, - { - "id": "4ac0cb2c-e8e8-5a96-9bd7-0510b8b35a5d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.875662, - "y": -2649.549093 - }, - "endPoint": { - "x": 318.632502, - "y": -2649.554983 - } - } - }, - { - "id": "70a5df91-347c-5b52-851f-85cce048905d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.632502, - "y": -2649.554983 - }, - "endPoint": { - "x": 318.425046, - "y": -2649.602384 - } - } - }, - { - "id": "b3d2409c-323c-5b8b-b97e-31d123f83eea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.425046, - "y": -2649.602384 - }, - "endPoint": { - "x": 318.116633, - "y": -2649.661677 - } - } - }, - { - "id": "927fd632-007c-5235-a556-385debf1ace0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.116633, - "y": -2649.661677 - }, - "endPoint": { - "x": 317.96848, - "y": -2649.572766 - } - } - }, - { - "id": "9c1c6ee0-d22c-50b3-97b5-200f141de117", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.96848, - "y": -2649.572766 - }, - "endPoint": { - "x": 317.760922, - "y": -2649.560929 - } - } - }, - { - "id": "d24e8017-373c-580e-b58f-411eff8e552a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.760922, - "y": -2649.560929 - }, - "endPoint": { - "x": 317.559315, - "y": -2649.632003 - } - } - }, - { - "id": "82024ae5-19b6-50ee-b027-3f4b22e51fa4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.559315, - "y": -2649.632003 - }, - "endPoint": { - "x": 317.500012, - "y": -2649.786097 - } - } - }, - { - "id": "36ebbb98-111d-5afb-829f-8e5404744607", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.500012, - "y": -2649.786097 - }, - "endPoint": { - "x": 316.978193, - "y": -2649.803824 - } - } - }, - { - "id": "d7846bdd-ebf3-5680-b731-831ea9f1144f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.978193, - "y": -2649.803824 - }, - "endPoint": { - "x": 316.770635, - "y": -2649.768315 - } - } - }, - { - "id": "1646448b-5f1e-5848-befe-7350bc591dc6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.770635, - "y": -2649.768315 - }, - "endPoint": { - "x": 316.626176, - "y": -2649.737485 - } - } - }, - { - "id": "7f50e277-1345-5de3-8cde-d151eb1882ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.626176, - "y": -2649.737485 - }, - "endPoint": { - "x": 316.410102, - "y": -2649.661622 - } - } - }, - { - "id": "3d8df215-8f12-5ec4-b93c-be371fd610a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.410102, - "y": -2649.661622 - }, - "endPoint": { - "x": 316.042079, - "y": -2649.626608 - } - } - }, - { - "id": "169fbd5d-f1a2-53f5-8e1a-947ce4b33b43", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.042079, - "y": -2649.626608 - }, - "endPoint": { - "x": 315.901928, - "y": -2649.766663 - } - } - }, - { - "id": "1f54dab8-865f-588d-bb51-a77132033501", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.901928, - "y": -2649.766663 - }, - "endPoint": { - "x": 315.849398, - "y": -2649.725814 - } - } - }, - { - "id": "f765fafc-05b6-55ef-bb2f-de51207b2438", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.849398, - "y": -2649.725814 - }, - "endPoint": { - "x": 315.738385, - "y": -2649.725814 - } - } - }, - { - "id": "c2902eb4-dde8-5711-9e4b-2ea3fc759823", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.738385, - "y": -2649.725814 - }, - "endPoint": { - "x": 315.563146, - "y": -2649.801677 - } - } - }, - { - "id": "23f5f1a0-ede2-5403-88bb-368539ca39c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.563146, - "y": -2649.801677 - }, - "endPoint": { - "x": 315.452236, - "y": -2649.78417 - } - } - }, - { - "id": "049a0b97-d329-5b16-9f04-942efd1b0c1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.452236, - "y": -2649.78417 - }, - "endPoint": { - "x": 315.417147, - "y": -2649.719978 - } - } - }, - { - "id": "d0bb5052-31b7-533f-8c56-55beff60681f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.417147, - "y": -2649.719978 - }, - "endPoint": { - "x": 315.281306, - "y": -2649.749046 - } - } - }, - { - "id": "b82e4be0-1b73-5464-84c8-07782ec22cfc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.281306, - "y": -2649.749046 - }, - "endPoint": { - "x": 314.984384, - "y": -2649.714968 - } - } - }, - { - "id": "8eb9ef0c-8d2b-59ba-a635-2d9c13b11c91", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.984384, - "y": -2649.714968 - }, - "endPoint": { - "x": 314.511607, - "y": -2649.866089 - } - } - }, - { - "id": "d9dff719-a451-5771-ae97-07711381fec5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.511607, - "y": -2649.866089 - }, - "endPoint": { - "x": 314.474261, - "y": -2649.955771 - } - } - }, - { - "id": "56d3c30f-6e4c-5020-a539-3c35e1b26e05", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.474261, - "y": -2649.955771 - }, - "endPoint": { - "x": 314.409419, - "y": -2650.068575 - } - } - }, - { - "id": "7d39e93a-d5ca-5520-b748-fd20e4d4e732", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.409419, - "y": -2650.068575 - }, - "endPoint": { - "x": 314.251416, - "y": -2650.093954 - } - } - }, - { - "id": "0b668d1e-bc65-52e0-a1cb-5cab2c47e24e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.251416, - "y": -2650.093954 - }, - "endPoint": { - "x": 314.115883, - "y": -2650.00653 - } - } - }, - { - "id": "478ab066-ef23-5fce-89e5-0ee44c500a97", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.115883, - "y": -2650.00653 - }, - "endPoint": { - "x": 314.090541, - "y": -2649.851445 - } - } - }, - { - "id": "bfa18baa-641a-57ee-b482-b6b4d0268faa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.090541, - "y": -2649.851445 - }, - "endPoint": { - "x": 314.101826, - "y": -2649.671036 - } - } - }, - { - "id": "071a8711-d9d9-5cb2-b81c-6aa32ee84d0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.101826, - "y": -2649.671036 - }, - "endPoint": { - "x": 314.2034, - "y": -2649.465192 - } - } - }, - { - "id": "ee4285e4-71a7-55c8-8f3a-42f85819a433", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.2034, - "y": -2649.465192 - }, - "endPoint": { - "x": 314.33883, - "y": -2649.327008 - } - } - }, - { - "id": "ed6ab05d-2806-5eb9-9386-b03506aff99f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.33883, - "y": -2649.327008 - }, - "endPoint": { - "x": 314.468618, - "y": -2649.259348 - } - } - }, - { - "id": "10bf8c7b-665d-508c-92a0-5e40e0bd5be3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.468618, - "y": -2649.259348 - }, - "endPoint": { - "x": 314.668995, - "y": -2649.298821 - } - } - }, - { - "id": "83e61049-2068-5c24-8ab1-7e856e451c0c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.668995, - "y": -2649.298821 - }, - "endPoint": { - "x": 314.798782, - "y": -2649.363674 - } - } - }, - { - "id": "a411905e-04b9-57f2-b46c-c9cb3e54d6b0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.798782, - "y": -2649.363674 - }, - "endPoint": { - "x": 315.112018, - "y": -2649.318585 - } - } - }, - { - "id": "bfa0c662-1994-5dfc-b300-6aee90c2a0b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.112018, - "y": -2649.318585 - }, - "endPoint": { - "x": 315.385649, - "y": -2649.321393 - } - } - }, - { - "id": "1e685e6e-9855-54ba-9de4-906f566438c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.385649, - "y": -2649.321393 - }, - "endPoint": { - "x": 315.66318, - "y": -2649.315117 - } - } - }, - { - "id": "7ae67a42-8e15-53ce-a9a6-915614ffc13b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.66318, - "y": -2649.315117 - }, - "endPoint": { - "x": 316.092045, - "y": -2649.306639 - } - } - }, - { - "id": "5cd32299-6840-57f2-8218-858548c18f18", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.092045, - "y": -2649.306639 - }, - "endPoint": { - "x": 316.834144, - "y": -2649.26155 - } - } - }, - { - "id": "fc86ee19-e1af-533c-b995-96dc13f10643", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.834144, - "y": -2649.26155 - }, - "endPoint": { - "x": 317.451175, - "y": -2649.295518 - } - } - }, - { - "id": "a9d1f820-67a5-5ee1-b18d-c95f2e9a3364", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.451175, - "y": -2649.295518 - }, - "endPoint": { - "x": 318.300491, - "y": -2649.346277 - } - } - }, - { - "id": "59caecde-137e-59ed-bcba-588f5ce8f6b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.300491, - "y": -2649.346277 - }, - "endPoint": { - "x": 318.777372, - "y": -2649.303996 - } - } - }, - { - "id": "43c17072-0223-58d7-bbca-4adc131ecb11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.777372, - "y": -2649.303996 - }, - "endPoint": { - "x": 319.262666, - "y": -2649.256045 - } - } - }, - { - "id": "6765ba32-a0a2-5fb3-affc-06a72c138103", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.262666, - "y": -2649.256045 - }, - "endPoint": { - "x": 319.563794, - "y": -2649.264303 - } - } - }, - { - "id": "504e6f19-4fc5-581b-b252-a6f23e8c13da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.563794, - "y": -2649.264303 - }, - "endPoint": { - "x": 319.961673, - "y": -2649.086701 - } - } - }, - { - "id": "9f6088ab-9e36-5ae6-bd38-7bd6db16e830", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.961673, - "y": -2649.086701 - }, - "endPoint": { - "x": 320.212426, - "y": -2648.865442 - } - } - }, - { - "id": "814910c6-52ef-55f7-a74e-e3fc5584fbd8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.212426, - "y": -2648.865442 - }, - "endPoint": { - "x": 320.291427, - "y": -2648.701879 - } - } - }, - { - "id": "199a1459-4929-52c7-93ff-2c14ab1784da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.291427, - "y": -2648.701879 - }, - "endPoint": { - "x": 320.280141, - "y": -2648.501706 - } - } - }, - { - "id": "9173c28c-3115-55c0-ae18-8c86d3f78179", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.280141, - "y": -2648.501706 - }, - "endPoint": { - "x": 320.373301, - "y": -2648.369193 - } - } - }, - { - "id": "92a92b3e-4a05-57ae-9889-23dc32e73014", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.373301, - "y": -2648.369193 - }, - "endPoint": { - "x": 320.311126, - "y": -2648.053408 - } - } - }, - { - "id": "d0c70673-7aa0-5bed-a4b4-81a56301bd00", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.311126, - "y": -2648.053408 - }, - "endPoint": { - "x": 320.229047, - "y": -2647.9166 - } - } - }, - { - "id": "bf26008c-6628-582d-9e9d-add3323fa00a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.229047, - "y": -2647.9166 - }, - "endPoint": { - "x": 320.23469, - "y": -2647.795373 - } - } - }, - { - "id": "2ec41578-7045-5824-b3e4-080a3f289cda", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.23469, - "y": -2647.795373 - }, - "endPoint": { - "x": 320.099259, - "y": -2647.648767 - } - } - }, - { - "id": "32a471f6-5d6e-5d9c-b7b0-cf66d1593661", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.099259, - "y": -2647.648767 - }, - "endPoint": { - "x": 319.907399, - "y": -2647.479588 - } - } - }, - { - "id": "7c5e76d2-53f5-50cf-a606-77a6b9818497", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.907399, - "y": -2647.479588 - }, - "endPoint": { - "x": 319.678808, - "y": -2647.406257 - } - } - }, - { - "id": "581a012a-8550-5918-aeef-4d2383f1b641", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.678808, - "y": -2647.406257 - }, - "endPoint": { - "x": 319.2048, - "y": -2647.383685 - } - } - }, - { - "id": "6f7878a1-ae47-5a6c-8fec-11854dba8508", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.2048, - "y": -2647.383685 - }, - "endPoint": { - "x": 319.122926, - "y": -2647.392164 - } - } - }, - { - "id": "47351f71-f14c-5b6e-91c7-d110e3b611db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.122926, - "y": -2647.392164 - }, - "endPoint": { - "x": 319.066496, - "y": -2647.510583 - } - } - }, - { - "id": "b4bf226a-88c3-5da2-ba07-692a3e83864b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.066496, - "y": -2647.510583 - }, - "endPoint": { - "x": 319.026995, - "y": -2647.555672 - } - } - }, - { - "id": "abda4975-76ad-5560-b2cf-e92de0272f41", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.026995, - "y": -2647.555672 - }, - "endPoint": { - "x": 318.891565, - "y": -2647.535963 - } - } - }, - { - "id": "dc23c976-112b-51fd-9d2c-5c89a9663e31", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.891565, - "y": -2647.535963 - }, - "endPoint": { - "x": 318.756134, - "y": -2647.431637 - } - } - }, - { - "id": "ca77053a-3c01-529d-8229-7ef054a876c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.756134, - "y": -2647.431637 - }, - "endPoint": { - "x": 318.441975, - "y": -2647.417268 - } - } - }, - { - "id": "398e6afe-c4f9-5ddf-8e32-bb71b09e9636", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.441975, - "y": -2647.417268 - }, - "endPoint": { - "x": 318.185272, - "y": -2647.41446 - } - } - }, - { - "id": "08cae5b8-1496-51f8-a141-5e0c3f740e21", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.185272, - "y": -2647.41446 - }, - "endPoint": { - "x": 318.134485, - "y": -2647.341129 - } - } - }, - { - "id": "d806af68-feaa-5f53-a6be-f0a45154eb5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.134485, - "y": -2647.341129 - }, - "endPoint": { - "x": 318.114684, - "y": -2647.203001 - } - } - }, - { - "id": "9197ac10-6bc8-5f7e-b085-ec13dc026e9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.114684, - "y": -2647.203001 - }, - "endPoint": { - "x": 318.241702, - "y": -2647.124055 - } - } - }, - { - "id": "2b3aaa75-1858-5ab2-9c03-0cbe01d4f704", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.241702, - "y": -2647.124055 - }, - "endPoint": { - "x": 318.484349, - "y": -2647.070488 - } - } - }, - { - "id": "aae9a385-2aac-5dba-8a62-acb7ec75aa36", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.484349, - "y": -2647.070488 - }, - "endPoint": { - "x": 318.71571, - "y": -2647.059202 - } - } - }, - { - "id": "e08d16d5-2afb-57c9-8170-ed3d940b37d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.71571, - "y": -2647.059202 - }, - "endPoint": { - "x": 318.769677, - "y": -2647.004149 - } - } - }, - { - "id": "cd821e55-a1a5-5e07-8232-63a9deb28a24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.769677, - "y": -2647.004149 - }, - "endPoint": { - "x": 318.859964, - "y": -2646.888537 - } - } - }, - { - "id": "7386e2ec-1f13-5eff-885c-fa3bcfade347", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.859964, - "y": -2646.888537 - }, - "endPoint": { - "x": 318.919266, - "y": -2646.837778 - } - } - }, - { - "id": "57a8f262-7338-5792-99ff-309e0baf0062", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.919266, - "y": -2646.837778 - }, - "endPoint": { - "x": 319.034895, - "y": -2646.956197 - } - } - }, - { - "id": "1b604d4f-95dd-5738-9ec6-6306f019bf91", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.034895, - "y": -2646.956197 - }, - "endPoint": { - "x": 319.153397, - "y": -2647.032336 - } - } - }, - { - "id": "a507070a-c3db-5633-9955-e060894931d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.153397, - "y": -2647.032336 - }, - "endPoint": { - "x": 319.317043, - "y": -2647.085903 - } - } - }, - { - "id": "cda4bf77-c68a-5fe1-a038-f53d6f10fe36", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.317043, - "y": -2647.085903 - }, - "endPoint": { - "x": 319.492077, - "y": -2647.080232 - } - } - }, - { - "id": "92976154-d34a-5073-845e-9e0ae140367d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.492077, - "y": -2647.080232 - }, - "endPoint": { - "x": 319.647207, - "y": -2647.052045 - } - } - }, - { - "id": "4e25dd42-5c06-5c6a-b323-3750f857afa3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.647207, - "y": -2647.052045 - }, - "endPoint": { - "x": 319.714923, - "y": -2647.08871 - } - } - }, - { - "id": "be01243b-1295-5a06-9eb7-09e3c1572f6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.714923, - "y": -2647.08871 - }, - "endPoint": { - "x": 320.039444, - "y": -2646.959005 - } - } - }, - { - "id": "69be5c6a-6562-5c58-86dc-59ce44c1f95d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.039444, - "y": -2646.959005 - }, - "endPoint": { - "x": 320.253876, - "y": -2646.792689 - } - } - }, - { - "id": "efd03934-2b7c-573d-8199-7dad65e8c3dc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.253876, - "y": -2646.792689 - }, - "endPoint": { - "x": 320.358322, - "y": -2646.657314 - } - } - }, - { - "id": "46142785-82c9-5233-9c2d-703aaea4380c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.358322, - "y": -2646.657314 - }, - "endPoint": { - "x": 320.386536, - "y": -2646.555851 - } - } - }, - { - "id": "2cc6cb5d-d774-545a-87c0-3eb7cc106451", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.386536, - "y": -2646.555851 - }, - "endPoint": { - "x": 320.403465, - "y": -2646.465618 - } - } - }, - { - "id": "bdb28937-123a-5287-a9ec-51a39e03f052", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.403465, - "y": -2646.465618 - }, - "endPoint": { - "x": 320.40285, - "y": -2646.414474 - } - } - } - ] - }, - { - "id": "95051bbe-43b0-5eea-bd51-1b5f01f81c60", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "9df06268-c0b7-53ce-8738-7b9ad86144e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.46229, - "y": -2648.460526 - }, - "endPoint": { - "x": 318.541188, - "y": -2648.534903 - } - } - }, - { - "id": "d645aaf5-0d44-56ad-bc93-176e2761c601", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.541188, - "y": -2648.534903 - }, - "endPoint": { - "x": 318.803945, - "y": -2648.543656 - } - } - }, - { - "id": "bd3d4407-4bcd-5192-a14b-f8e38123f85a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.803945, - "y": -2648.543656 - }, - "endPoint": { - "x": 318.913418, - "y": -2648.499889 - } - } - }, - { - "id": "f7631625-e80d-5aaa-ab82-83870dd72e64", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.913418, - "y": -2648.499889 - }, - "endPoint": { - "x": 319.00545, - "y": -2648.337978 - } - } - }, - { - "id": "fd37cc91-51b5-57bd-907e-38aa0052f4b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.00545, - "y": -2648.337978 - }, - "endPoint": { - "x": 318.992317, - "y": -2648.162908 - } - } - }, - { - "id": "3f67dddd-b049-5325-bdb9-765b1dc6b7c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.992317, - "y": -2648.162908 - }, - "endPoint": { - "x": 318.979184, - "y": -2648.027257 - } - } - }, - { - "id": "c67c5e16-1ed3-55b3-9924-e385d6b85181", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.979184, - "y": -2648.027257 - }, - "endPoint": { - "x": 318.869608, - "y": -2648.000997 - } - } - }, - { - "id": "d53c96bd-5cb6-54b0-a725-154233289501", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.869608, - "y": -2648.000997 - }, - "endPoint": { - "x": 318.782091, - "y": -2647.904709 - } - } - }, - { - "id": "51d62ad4-fa54-593d-aa4b-ffb7504a822f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.782091, - "y": -2647.904709 - }, - "endPoint": { - "x": 318.624396, - "y": -2647.882853 - } - } - }, - { - "id": "a41303d0-5b4d-569f-a716-b0e7d5ff9fc5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.624396, - "y": -2647.882853 - }, - "endPoint": { - "x": 318.479834, - "y": -2647.887202 - } - } - }, - { - "id": "973eb775-6831-539e-8e95-b816f2656f04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.479834, - "y": -2647.887202 - }, - "endPoint": { - "x": 318.440436, - "y": -2647.965983 - } - } - }, - { - "id": "c7e4ce30-8835-5258-adc1-7722fe825114", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.440436, - "y": -2647.965983 - }, - "endPoint": { - "x": 318.304697, - "y": -2648.075374 - } - } - }, - { - "id": "00d51fd5-8dfa-58ce-a8c6-9ba9ce60090d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.304697, - "y": -2648.075374 - }, - "endPoint": { - "x": 318.287153, - "y": -2648.189169 - } - } - }, - { - "id": "6e1883eb-1ba2-5659-bbb1-8dbc31c774be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.287153, - "y": -2648.189169 - }, - "endPoint": { - "x": 318.291565, - "y": -2648.298615 - } - } - }, - { - "id": "acdaa36e-5377-5d08-adb8-ead3e4aee81c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.291565, - "y": -2648.298615 - }, - "endPoint": { - "x": 318.330963, - "y": -2648.408005 - } - } - }, - { - "id": "f668ee1d-1397-5a02-950a-bd13fe582ba7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.330963, - "y": -2648.408005 - }, - "endPoint": { - "x": 318.46229, - "y": -2648.460526 - } - } - } - ] - }, - { - "id": "2aea2cf9-9bfe-5110-8a73-c20112742d96", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "9e691cac-0b6d-5c71-978e-6d7df0f0cac7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.257878, - "y": -2648.053518 - }, - "endPoint": { - "x": 317.214069, - "y": -2648.044764 - } - } - }, - { - "id": "35f2b5e0-b47c-5d81-8e8f-b8c0934cd9a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.214069, - "y": -2648.044764 - }, - "endPoint": { - "x": 317.091463, - "y": -2648.127895 - } - } - }, - { - "id": "050bedf6-0fb3-5cf8-aa55-04604db07ad7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.091463, - "y": -2648.127895 - }, - "endPoint": { - "x": 317.030211, - "y": -2648.281108 - } - } - }, - { - "id": "07b5f1b6-06a2-5e7a-bc0d-9e453d89ebd6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.030211, - "y": -2648.281108 - }, - "endPoint": { - "x": 317.07833, - "y": -2648.447368 - } - } - }, - { - "id": "8a09dd03-f572-5946-8493-415a303ae904", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.07833, - "y": -2648.447368 - }, - "endPoint": { - "x": 317.275423, - "y": -2648.548061 - } - } - }, - { - "id": "491acf14-ea16-5634-af65-4c8fd7b6002f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.275423, - "y": -2648.548061 - }, - "endPoint": { - "x": 317.468104, - "y": -2648.574321 - } - } - }, - { - "id": "7084ecc1-a645-5e81-8534-53fac2ef1363", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.468104, - "y": -2648.574321 - }, - "endPoint": { - "x": 317.599534, - "y": -2648.49554 - } - } - }, - { - "id": "c38b23cf-64b1-5379-b7fb-1ed273d5c0ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.599534, - "y": -2648.49554 - }, - "endPoint": { - "x": 317.691462, - "y": -2648.368587 - } - } - }, - { - "id": "f712ecf2-e58e-50dc-8230-e14a64688f24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.691462, - "y": -2648.368587 - }, - "endPoint": { - "x": 317.700286, - "y": -2648.206676 - } - } - }, - { - "id": "b8ebcdd8-d4cb-58d3-90d5-eab6a856a782", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.700286, - "y": -2648.206676 - }, - "endPoint": { - "x": 317.617078, - "y": -2648.018504 - } - } - }, - { - "id": "8923a736-5382-5f41-b4fe-bb896ac2cce1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.617078, - "y": -2648.018504 - }, - "endPoint": { - "x": 317.44625, - "y": -2647.98349 - } - } - }, - { - "id": "a187e045-d88a-590d-836e-cc0f7a40f54a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.44625, - "y": -2647.98349 - }, - "endPoint": { - "x": 317.297277, - "y": -2648.00975 - } - } - }, - { - "id": "7da4b6d2-8a2d-53f7-b4aa-ab13f267755a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.297277, - "y": -2648.00975 - }, - "endPoint": { - "x": 317.257878, - "y": -2648.053518 - } - } - } - ] - }, - { - "id": "0785993c-1029-5bc2-8cc1-b962c786afd7", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "7a86e508-863e-5919-a3b6-46e23c882529", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.977544, - "y": -2648.12283 - }, - "endPoint": { - "x": 315.819849, - "y": -2648.140337 - } - } - }, - { - "id": "78b14508-5acc-519e-bb98-e1173a8a401e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.819849, - "y": -2648.140337 - }, - "endPoint": { - "x": 315.710376, - "y": -2648.26283 - } - } - }, - { - "id": "04d2c096-a1a0-58e8-a898-a89617709ed8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.710376, - "y": -2648.26283 - }, - "endPoint": { - "x": 315.635889, - "y": -2648.363522 - } - } - }, - { - "id": "6cb04a4d-2d25-5aba-a6dd-a5976b64aaa3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.635889, - "y": -2648.363522 - }, - "endPoint": { - "x": 315.754186, - "y": -2648.54729 - } - } - }, - { - "id": "62b729b4-68ec-5334-a52a-26a6b2e315bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.754186, - "y": -2648.54729 - }, - "endPoint": { - "x": 316.043207, - "y": -2648.556043 - } - } - }, - { - "id": "26263112-2314-54a1-9df4-05d81ff0ae92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.043207, - "y": -2648.556043 - }, - "endPoint": { - "x": 316.214035, - "y": -2648.494769 - } - } - }, - { - "id": "159d83b4-85da-51b1-8bb7-d8cbc0cd2a63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.214035, - "y": -2648.494769 - }, - "endPoint": { - "x": 316.297243, - "y": -2648.446653 - } - } - }, - { - "id": "37f72205-7497-5b87-9f67-f7572b933913", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.297243, - "y": -2648.446653 - }, - "endPoint": { - "x": 316.376039, - "y": -2648.341611 - } - } - }, - { - "id": "66dc6173-d202-5fbf-9a07-c5aae8cb66e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.376039, - "y": -2648.341611 - }, - "endPoint": { - "x": 316.336641, - "y": -2648.214713 - } - } - }, - { - "id": "a0f57f82-6989-5646-a359-88c6d0e84745", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.336641, - "y": -2648.214713 - }, - "endPoint": { - "x": 316.19649, - "y": -2648.144686 - } - } - }, - { - "id": "20038e00-8481-59cf-bf88-81613a558938", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.19649, - "y": -2648.144686 - }, - "endPoint": { - "x": 315.977544, - "y": -2648.12283 - } - } - } - ] - }, - { - "id": "2d8495e8-ff0a-5540-9d42-5815898d3021", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "503d1bd6-ab8f-5e1b-8e89-686fbe80673b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.794986, - "y": -2647.680808 - }, - "endPoint": { - "x": 314.91318, - "y": -2647.672054 - } - } - }, - { - "id": "22846f0b-4b21-5597-92d2-2755617ce058", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.91318, - "y": -2647.672054 - }, - "endPoint": { - "x": 315.040198, - "y": -2647.571417 - } - } - }, - { - "id": "901f52ec-3a4c-5770-a1f5-ec7125fcbe39", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.040198, - "y": -2647.571417 - }, - "endPoint": { - "x": 315.206717, - "y": -2647.545157 - } - } - }, - { - "id": "fbbe10a4-9aa3-5def-9f73-ab4babe7ba73", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.206717, - "y": -2647.545157 - }, - "endPoint": { - "x": 315.40381, - "y": -2647.575766 - } - } - }, - { - "id": "f22d044d-a74c-55a1-953d-2f4853ef7907", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.40381, - "y": -2647.575766 - }, - "endPoint": { - "x": 315.767318, - "y": -2647.58452 - } - } - }, - { - "id": "c9fa7f5d-507a-558f-9a42-1ad3b6a5229b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.767318, - "y": -2647.58452 - }, - "endPoint": { - "x": 315.959999, - "y": -2647.575766 - } - } - }, - { - "id": "867cffa8-e138-5f95-92c4-2f3181b0405c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.959999, - "y": -2647.575766 - }, - "endPoint": { - "x": 316.279698, - "y": -2647.575766 - } - } - }, - { - "id": "bb34f42e-b9fb-5470-a029-54dec770d164", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.279698, - "y": -2647.575766 - }, - "endPoint": { - "x": 316.437598, - "y": -2647.568829 - } - } - }, - { - "id": "b7772114-21d9-54f8-8eb8-39988a507302", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.437598, - "y": -2647.568829 - }, - "endPoint": { - "x": 316.423337, - "y": -2647.199202 - } - } - }, - { - "id": "5e2f0927-013d-5ebe-bd69-4946d68ab5dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.423337, - "y": -2647.199202 - }, - "endPoint": { - "x": 316.123542, - "y": -2647.174208 - } - } - }, - { - "id": "114cbfea-eaf9-5a8e-8584-5c184d0253e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.123542, - "y": -2647.174208 - }, - "endPoint": { - "x": 315.683905, - "y": -2647.1812 - } - } - }, - { - "id": "6a7fd6d4-8822-5932-bc25-1b1b17fb4f93", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.683905, - "y": -2647.1812 - }, - "endPoint": { - "x": 315.279254, - "y": -2647.198597 - } - } - }, - { - "id": "f4a6e120-03a1-57b0-b4bd-a717033fc49d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.279254, - "y": -2647.198597 - }, - "endPoint": { - "x": 314.895739, - "y": -2647.203772 - } - } - }, - { - "id": "9ee1eaf1-6616-5cd4-9329-3a76a5fb6cb4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.895739, - "y": -2647.203772 - }, - "endPoint": { - "x": 314.689822, - "y": -2647.155655 - } - } - }, - { - "id": "40b4d845-f48d-52e2-9866-a1b3aa94c120", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.689822, - "y": -2647.155655 - }, - "endPoint": { - "x": 314.554083, - "y": -2647.138148 - } - } - }, - { - "id": "eeadd4ea-f554-55da-937d-ed582427f5a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.554083, - "y": -2647.138148 - }, - "endPoint": { - "x": 314.427066, - "y": -2647.146902 - } - } - }, - { - "id": "d406148a-d70d-5ea2-b03c-07e76eb1454b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.427066, - "y": -2647.146902 - }, - "endPoint": { - "x": 314.356991, - "y": -2647.225683 - } - } - }, - { - "id": "563ed265-efb3-5bd8-95ea-a0f9396878cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.356991, - "y": -2647.225683 - }, - "endPoint": { - "x": 314.34827, - "y": -2647.308813 - } - } - }, - { - "id": "7c5ece71-4afd-58f6-9f36-8e4bc1f2b0e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.34827, - "y": -2647.308813 - }, - "endPoint": { - "x": 314.265062, - "y": -2647.361334 - } - } - }, - { - "id": "5f9ee6c4-1a1b-5f81-88e8-2d055023b080", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.265062, - "y": -2647.361334 - }, - "endPoint": { - "x": 314.212428, - "y": -2647.440115 - } - } - }, - { - "id": "19128292-2f03-5ae8-9ad8-234c499f8a27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.212428, - "y": -2647.440115 - }, - "endPoint": { - "x": 314.278194, - "y": -2647.632636 - } - } - }, - { - "id": "db59fb79-7f83-51ce-8cd6-611bb3750070", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.278194, - "y": -2647.632636 - }, - "endPoint": { - "x": 314.4008, - "y": -2647.702664 - } - } - }, - { - "id": "7696973c-239c-5022-a11b-8d9c04a68ab5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.4008, - "y": -2647.702664 - }, - "endPoint": { - "x": 314.624159, - "y": -2647.733328 - } - } - }, - { - "id": "ccba9716-3126-5b28-9d23-457b574f9b62", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.624159, - "y": -2647.733328 - }, - "endPoint": { - "x": 314.794986, - "y": -2647.680808 - } - } - } - ] - }, - { - "id": "024affad-f211-5cd2-b53b-6905066acc4c", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "517720e5-8f1c-56ce-81a6-740b267aa1ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.40285, - "y": -2646.414474 - }, - "endPoint": { - "x": 320.259519, - "y": -2646.217604 - } - } - }, - { - "id": "b20beaa9-4f81-55d1-a550-11266da57f14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.259519, - "y": -2646.217604 - }, - "endPoint": { - "x": 320.098336, - "y": -2646.092303 - } - } - }, - { - "id": "b1e6ec41-2a12-590a-9860-c2a4af99d64e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.098336, - "y": -2646.092303 - }, - "endPoint": { - "x": 319.856509, - "y": -2645.980435 - } - } - }, - { - "id": "8c0846bc-81c0-5bef-aef4-7da467f0f66d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.856509, - "y": -2645.980435 - }, - "endPoint": { - "x": 319.65049, - "y": -2645.890918 - } - } - }, - { - "id": "ea4e2613-d2bd-51e4-99cd-2f4017e1e2a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.65049, - "y": -2645.890918 - }, - "endPoint": { - "x": 319.220497, - "y": -2645.90881 - } - } - }, - { - "id": "58ad9eea-4de1-5398-ae1a-cba66f536889", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.220497, - "y": -2645.90881 - }, - "endPoint": { - "x": 318.911571, - "y": -2645.949109 - } - } - }, - { - "id": "4bd0e757-e8ab-534a-8765-b8803a9d251b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.911571, - "y": -2645.949109 - }, - "endPoint": { - "x": 318.777987, - "y": -2645.995739 - } - } - }, - { - "id": "98f4314f-682d-594a-888d-7a2f6a9fbe49", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.777987, - "y": -2645.995739 - }, - "endPoint": { - "x": 318.619574, - "y": -2646.049526 - } - } - }, - { - "id": "e5eefa57-cb7e-5fee-ab38-99149a338d66", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.619574, - "y": -2646.049526 - }, - "endPoint": { - "x": 318.45952, - "y": -2646.018807 - } - } - }, - { - "id": "efdaf0f4-4273-5b39-8fe7-ed9b0c780358", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.45952, - "y": -2646.018807 - }, - "endPoint": { - "x": 318.271558, - "y": -2645.656226 - } - } - }, - { - "id": "40b536e0-ad91-5002-a2bf-52da23658d0b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.271558, - "y": -2645.656226 - }, - "endPoint": { - "x": 318.129869, - "y": -2645.400504 - } - } - }, - { - "id": "3e4a7f09-dac6-5cee-8c7f-20657898553d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.129869, - "y": -2645.400504 - }, - "endPoint": { - "x": 317.901483, - "y": -2645.211672 - } - } - }, - { - "id": "5984f35e-9362-5cea-8deb-f52e512779e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.901483, - "y": -2645.211672 - }, - "endPoint": { - "x": 317.708494, - "y": -2645.129092 - } - } - }, - { - "id": "6e9b9a8f-5c35-57cd-aa38-978136e992c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.708494, - "y": -2645.129092 - }, - "endPoint": { - "x": 317.610101, - "y": -2645.113347 - } - } - }, - { - "id": "23c65890-8806-58ac-9bcf-f6320e537711", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.610101, - "y": -2645.113347 - }, - "endPoint": { - "x": 317.515608, - "y": -2645.042493 - } - } - }, - { - "id": "8de67b9a-5c1a-554d-8d6b-678cae151f4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.515608, - "y": -2645.042493 - }, - "endPoint": { - "x": 317.090437, - "y": -2645.046457 - } - } - }, - { - "id": "3e6acdf6-3ceb-5296-b56a-8a3422ee9a76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.090437, - "y": -2645.046457 - }, - "endPoint": { - "x": 316.834452, - "y": -2645.097602 - } - } - }, - { - "id": "aa1c7ad7-370c-5471-b9b4-dc0c812943e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.834452, - "y": -2645.097602 - }, - "endPoint": { - "x": 316.710615, - "y": -2645.224004 - } - } - }, - { - "id": "884587d1-a416-5ea5-9408-0c554ad23f18", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.710615, - "y": -2645.224004 - }, - "endPoint": { - "x": 316.647619, - "y": -2645.389218 - } - } - }, - { - "id": "21253df3-2ef0-53bd-bfed-85b43aa4b01e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.647619, - "y": -2645.389218 - }, - "endPoint": { - "x": 316.375936, - "y": -2645.656722 - } - } - }, - { - "id": "5683a3cc-e670-5e09-857a-801425ab033f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.375936, - "y": -2645.656722 - }, - "endPoint": { - "x": 316.308939, - "y": -2645.888881 - } - } - }, - { - "id": "8ea7d8cc-727d-5899-a196-2d9c83f78dab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.308939, - "y": -2645.888881 - }, - "endPoint": { - "x": 316.076655, - "y": -2645.963588 - } - } - }, - { - "id": "eb085aeb-ddc8-59dc-96a5-cd401c30313a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.076655, - "y": -2645.963588 - }, - "endPoint": { - "x": 315.72238, - "y": -2645.951807 - } - } - }, - { - "id": "81d90dc2-9204-527f-8b94-60d12f106d26", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.72238, - "y": -2645.951807 - }, - "endPoint": { - "x": 315.616087, - "y": -2645.904571 - } - } - }, - { - "id": "43612cee-b183-5f05-89e5-dbb39130cba4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.616087, - "y": -2645.904571 - }, - "endPoint": { - "x": 315.470396, - "y": -2645.943934 - } - } - }, - { - "id": "3559de5e-3861-569e-a3ca-b49d8b19dc83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.470396, - "y": -2645.943934 - }, - "endPoint": { - "x": 315.245909, - "y": -2646.002951 - } - } - }, - { - "id": "b2cc3316-394b-518b-be65-f1bdbf45d6ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.245909, - "y": -2646.002951 - }, - "endPoint": { - "x": 314.934931, - "y": -2645.940026 - } - } - }, - { - "id": "63f65f66-ce45-5ce1-bc04-4004891727b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.934931, - "y": -2645.940026 - }, - "endPoint": { - "x": 314.802886, - "y": -2645.848582 - } - } - }, - { - "id": "ead344b2-974f-5f58-ae38-9286543dcd1a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.802886, - "y": -2645.848582 - }, - "endPoint": { - "x": 314.747791, - "y": -2645.636187 - } - } - }, - { - "id": "66e66f6f-df7a-5a31-82c0-a5e7e9227083", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.747791, - "y": -2645.636187 - }, - "endPoint": { - "x": 314.61, - "y": -2645.368628 - } - } - }, - { - "id": "2a03b784-4d19-5ba2-a676-23fe13995d2f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.61, - "y": -2645.368628 - }, - "endPoint": { - "x": 314.499706, - "y": -2645.179796 - } - } - }, - { - "id": "2a180e1e-87a7-571b-b504-9d0f207d765a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.499706, - "y": -2645.179796 - }, - "endPoint": { - "x": 314.358017, - "y": -2645.132615 - } - } - }, - { - "id": "48c3afb3-9965-5b8c-b2f2-1b01210c7dd1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.358017, - "y": -2645.132615 - }, - "endPoint": { - "x": 314.094234, - "y": -2645.108998 - } - } - }, - { - "id": "68900f7f-daae-5b72-b8f6-604311986285", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.094234, - "y": -2645.108998 - }, - "endPoint": { - "x": 313.806751, - "y": -2645.179796 - } - } - }, - { - "id": "230e3f28-2dd7-5888-a108-33c661444774", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.806751, - "y": -2645.179796 - }, - "endPoint": { - "x": 313.586266, - "y": -2645.376501 - } - } - }, - { - "id": "8930d978-275f-57bd-bf64-3c68183a5f28", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.586266, - "y": -2645.376501 - }, - "endPoint": { - "x": 313.381581, - "y": -2645.596824 - } - } - }, - { - "id": "833eefe0-6508-55b1-9d30-9586be51d40c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.381581, - "y": -2645.596824 - }, - "endPoint": { - "x": 313.294987, - "y": -2645.703022 - } - } - }, - { - "id": "b0021e88-c284-5cb1-abc6-acd1f481234f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.294987, - "y": -2645.703022 - }, - "endPoint": { - "x": 313.290986, - "y": -2645.813183 - } - } - }, - { - "id": "cc1cb2ea-437b-583c-a785-6d4fc97b60ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.290986, - "y": -2645.813183 - }, - "endPoint": { - "x": 313.153195, - "y": -2645.942998 - } - } - }, - { - "id": "ce63827c-d8f8-5a90-9e05-5b97b48ac540", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.153195, - "y": -2645.942998 - }, - "endPoint": { - "x": 313.121697, - "y": -2646.143667 - } - } - }, - { - "id": "5263e280-28a1-530a-a464-9d38a82ee0d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.121697, - "y": -2646.143667 - }, - "endPoint": { - "x": 312.991806, - "y": -2646.379735 - } - } - }, - { - "id": "314d89a8-7ee5-5adf-8d19-5061fe622bcd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.991806, - "y": -2646.379735 - }, - "endPoint": { - "x": 312.569714, - "y": -2646.723763 - } - } - }, - { - "id": "1bf1eda7-a47a-56fa-9ab1-44db662bb0a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.569714, - "y": -2646.723763 - }, - "endPoint": { - "x": 312.455521, - "y": -2646.877196 - } - } - }, - { - "id": "cc5e8154-df4b-5e8e-9733-b1edf91766b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.455521, - "y": -2646.877196 - }, - "endPoint": { - "x": 312.156342, - "y": -2646.955922 - } - } - }, - { - "id": "3e806480-f86e-5356-848b-ef0043619b0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.156342, - "y": -2646.955922 - }, - "endPoint": { - "x": 312.061848, - "y": -2647.050338 - } - } - }, - { - "id": "5592728d-03e9-5a73-9173-01aac9ce99bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.061848, - "y": -2647.050338 - }, - "endPoint": { - "x": 311.994851, - "y": -2647.258825 - } - } - }, - { - "id": "4abec532-7303-50af-a762-665d2fa1dcfa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.994851, - "y": -2647.258825 - }, - "endPoint": { - "x": 311.908257, - "y": -2647.428003 - } - } - }, - { - "id": "dfd097c4-9fbb-5ba9-b4d4-ea531dcca0f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.908257, - "y": -2647.428003 - }, - "endPoint": { - "x": 311.790165, - "y": -2647.510638 - } - } - }, - { - "id": "0cadc756-bb2c-5ca4-9f4a-e6f9e4c246d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.790165, - "y": -2647.510638 - }, - "endPoint": { - "x": 311.764721, - "y": -2647.702058 - } - } - }, - { - "id": "487d996e-d617-5a3d-9f26-9ec39ea4d512", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.764721, - "y": -2647.702058 - }, - "endPoint": { - "x": 311.715268, - "y": -2647.835397 - } - } - }, - { - "id": "0cc6d5df-07c1-5ef7-80d1-f3617d244a28", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.715268, - "y": -2647.835397 - }, - "endPoint": { - "x": 311.646116, - "y": -2647.998354 - } - } - }, - { - "id": "990eb6ed-ee21-5635-a94d-1d2f84f29636", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.646116, - "y": -2647.998354 - }, - "endPoint": { - "x": 311.626315, - "y": -2648.111984 - } - } - }, - { - "id": "d03cc63c-3f8f-5a99-baf9-555972eb2888", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.626315, - "y": -2648.111984 - }, - "endPoint": { - "x": 311.710343, - "y": -2648.20084 - } - } - }, - { - "id": "e20bc575-c94e-590c-8d02-40391a85dca6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.710343, - "y": -2648.20084 - }, - "endPoint": { - "x": 311.720193, - "y": -2648.368752 - } - } - }, - { - "id": "9fbbbd11-0b40-52cd-a723-a2f217f2ac7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.720193, - "y": -2648.368752 - }, - "endPoint": { - "x": 311.833873, - "y": -2648.541619 - } - } - }, - { - "id": "867c44b3-91e2-5a80-9903-332028de8f1d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.833873, - "y": -2648.541619 - }, - "endPoint": { - "x": 312.076109, - "y": -2648.650239 - } - } - }, - { - "id": "9c92c729-147e-554e-a195-ee097fcdac4b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.076109, - "y": -2648.650239 - }, - "endPoint": { - "x": 312.402272, - "y": -2648.684813 - } - } - }, - { - "id": "6e925b45-23b1-5127-aa8e-5c11d62fb17b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.402272, - "y": -2648.684813 - }, - "endPoint": { - "x": 312.575254, - "y": -2648.674958 - } - } - }, - { - "id": "8662dd09-fd92-581c-9cc7-17f446a255ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.575254, - "y": -2648.674958 - }, - "endPoint": { - "x": 312.743311, - "y": -2648.566283 - } - } - }, - { - "id": "7a26d84d-5fa0-5a32-b103-8f8c3036aa34", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.743311, - "y": -2648.566283 - }, - "endPoint": { - "x": 312.916293, - "y": -2648.576193 - } - } - }, - { - "id": "a4f712db-1d52-5154-b231-768dc9b2b93d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.916293, - "y": -2648.576193 - }, - "endPoint": { - "x": 312.936095, - "y": -2648.650239 - } - } - }, - { - "id": "a0364c37-da9f-5a1c-b0ec-5806aacaeb14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.936095, - "y": -2648.650239 - }, - "endPoint": { - "x": 312.871765, - "y": -2648.768769 - } - } - }, - { - "id": "163a44dc-5b6b-547d-975d-dfb43be21c5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.871765, - "y": -2648.768769 - }, - "endPoint": { - "x": 312.545603, - "y": -2648.852725 - } - } - }, - { - "id": "4731595e-ed76-5efb-9e28-579c0d085f9d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.545603, - "y": -2648.852725 - }, - "endPoint": { - "x": 312.451725, - "y": -2649.020637 - } - } - }, - { - "id": "4e5c30ce-2069-50bc-9cc1-5fa9484575f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.451725, - "y": -2649.020637 - }, - "endPoint": { - "x": 312.22929, - "y": -2649.139167 - } - } - }, - { - "id": "b8e6835b-57e0-56c0-a705-f1b50895a0d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.22929, - "y": -2649.139167 - }, - "endPoint": { - "x": 312.090883, - "y": -2649.341652 - } - } - }, - { - "id": "f718b7b9-aed6-584f-b171-c32429a9f8b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.090883, - "y": -2649.341652 - }, - "endPoint": { - "x": 311.947552, - "y": -2649.598476 - } - } - }, - { - "id": "12aed16b-6e43-5736-923d-7e49a8660b73", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.947552, - "y": -2649.598476 - }, - "endPoint": { - "x": 311.878503, - "y": -2649.88277 - } - } - }, - { - "id": "61051b08-f37c-5ed3-a966-59793ddcf73c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.878503, - "y": -2649.88277 - }, - "endPoint": { - "x": 311.809351, - "y": -2650.134639 - } - } - }, - { - "id": "16b3ab55-d623-5187-ba8a-e9e7b42873e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.809351, - "y": -2650.134639 - }, - "endPoint": { - "x": 311.873578, - "y": -2650.445799 - } - } - }, - { - "id": "dcc98a7f-14cb-5d8b-a163-8886a1eb5f0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.873578, - "y": -2650.445799 - }, - "endPoint": { - "x": 311.962532, - "y": -2650.712477 - } - } - }, - { - "id": "ea5c80aa-9140-5c0d-abd4-1491d726c5a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.962532, - "y": -2650.712477 - }, - "endPoint": { - "x": 312.209591, - "y": -2650.87048 - } - } - }, - { - "id": "ac6c424b-8064-5052-8e70-229917b86ea3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.209591, - "y": -2650.87048 - }, - "endPoint": { - "x": 312.471629, - "y": -2650.944581 - } - } - }, - { - "id": "685063e1-eb03-5ea2-b8fc-af0c0a1c054d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.471629, - "y": -2650.944581 - }, - "endPoint": { - "x": 312.679187, - "y": -2650.885289 - } - } - }, - { - "id": "3157672a-cf94-5e44-8c8a-22253d461218", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.679187, - "y": -2650.885289 - }, - "endPoint": { - "x": 312.816362, - "y": -2650.821868 - } - } - }, - { - "id": "33f4127b-2e56-5477-9ddf-b3e3f2c72e45", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.816362, - "y": -2650.821868 - }, - "endPoint": { - "x": 312.986061, - "y": -2650.809756 - } - } - }, - { - "id": "5d726228-860b-57ed-bf92-2d1620df19f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.986061, - "y": -2650.809756 - }, - "endPoint": { - "x": 313.124262, - "y": -2650.82429 - } - } - }, - { - "id": "ae798e86-27ae-598c-9532-05ba2428c338", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.124262, - "y": -2650.82429 - }, - "endPoint": { - "x": 313.179973, - "y": -2650.858203 - } - } - }, - { - "id": "2a0d6f51-0086-5065-b115-16ab6084907d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.179973, - "y": -2650.858203 - }, - "endPoint": { - "x": 313.179973, - "y": -2650.942985 - } - } - }, - { - "id": "309ec8b8-a4d0-564a-9bf2-1c935b648641", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.179973, - "y": -2650.942985 - }, - "endPoint": { - "x": 313.10959, - "y": -2651.146847 - } - } - }, - { - "id": "1b5c6944-f792-5dec-a771-0d0518af3491", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.10959, - "y": -2651.146847 - }, - "endPoint": { - "x": 313.074604, - "y": -2651.297968 - } - } - }, - { - "id": "72e73296-d106-5faf-8d1a-b32093439388", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.074604, - "y": -2651.297968 - }, - "endPoint": { - "x": 312.966054, - "y": -2651.390952 - } - } - }, - { - "id": "cb24ba97-8a66-548a-8af8-d419dbcc6bb8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.966054, - "y": -2651.390952 - }, - "endPoint": { - "x": 312.927272, - "y": -2651.487846 - } - } - }, - { - "id": "33b36d3a-0690-543c-a235-a5482b820ac9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.927272, - "y": -2651.487846 - }, - "endPoint": { - "x": 312.896287, - "y": -2651.728098 - } - } - }, - { - "id": "934467b6-1135-5a9f-9a45-955acdac5e35", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.896287, - "y": -2651.728098 - }, - "endPoint": { - "x": 312.72946, - "y": -2651.828846 - } - } - }, - { - "id": "b062bb60-5896-5d11-ab17-600d667feb5f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.72946, - "y": -2651.828846 - }, - "endPoint": { - "x": 312.604803, - "y": -2652.056215 - } - } - }, - { - "id": "ba21be5c-4c15-5c1f-9ff1-f3554c9ed908", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.604803, - "y": -2652.056215 - }, - "endPoint": { - "x": 312.531034, - "y": -2652.253801 - } - } - }, - { - "id": "402bf9fc-5cfb-55f6-9450-4eec49b10183", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.531034, - "y": -2652.253801 - }, - "endPoint": { - "x": 312.310035, - "y": -2652.486346 - } - } - }, - { - "id": "7cda6353-392d-57a6-8b4a-883ca7d49322", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.310035, - "y": -2652.486346 - }, - "endPoint": { - "x": 312.201485, - "y": -2652.703311 - } - } - }, - { - "id": "03186f21-c3e4-5e74-97ea-c95fe4295ad8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.201485, - "y": -2652.703311 - }, - "endPoint": { - "x": 312.193688, - "y": -2653.114117 - } - } - }, - { - "id": "8fa96860-da47-5fe9-9997-383e4f4b8121", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.193688, - "y": -2653.114117 - }, - "endPoint": { - "x": 312.275151, - "y": -2653.214865 - } - } - }, - { - "id": "dc2b28f1-4170-587c-ac0a-63ae00b40ad6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.275151, - "y": -2653.214865 - }, - "endPoint": { - "x": 312.395295, - "y": -2653.404743 - } - } - }, - { - "id": "9b28e69c-fd35-5b46-b020-2d5c78fdde34", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.395295, - "y": -2653.404743 - }, - "endPoint": { - "x": 312.539549, - "y": -2653.662117 - } - } - }, - { - "id": "4a0cfaf3-7bce-58f4-b710-16b2f50de8f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.539549, - "y": -2653.662117 - }, - "endPoint": { - "x": 312.8692, - "y": -2653.666026 - } - } - }, - { - "id": "c9ff2e53-1995-5995-92fe-314a60d5a3b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.8692, - "y": -2653.666026 - }, - "endPoint": { - "x": 313.17946, - "y": -2653.681496 - } - } - }, - { - "id": "ea09f0c5-a647-58c9-872e-185ecc16f3ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.17946, - "y": -2653.681496 - }, - "endPoint": { - "x": 313.33459, - "y": -2653.658263 - } - } - }, - { - "id": "3ae4e573-ec90-532c-a2bc-9350f6e52ebc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.33459, - "y": -2653.658263 - }, - "endPoint": { - "x": 313.381068, - "y": -2653.565223 - } - } - }, - { - "id": "a67525ba-0aed-56dd-8c9c-36523c149a15", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.381068, - "y": -2653.565223 - }, - "endPoint": { - "x": 313.485821, - "y": -2653.510996 - } - } - }, - { - "id": "cbf875d8-20cf-525b-8e17-be8ecb60aef8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.485821, - "y": -2653.510996 - }, - "endPoint": { - "x": 313.606067, - "y": -2653.495471 - } - } - }, - { - "id": "c8970b31-5a07-5643-86b9-0c10c2109844", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.606067, - "y": -2653.495471 - }, - "endPoint": { - "x": 313.726211, - "y": -2653.371491 - } - } - }, - { - "id": "78a25afe-1aaf-53a3-90ac-101cc5e7cab2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.726211, - "y": -2653.371491 - }, - "endPoint": { - "x": 313.865848, - "y": -2653.193229 - } - } - }, - { - "id": "16320417-a1fd-578b-b349-38f6b65db1e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.865848, - "y": -2653.193229 - }, - "endPoint": { - "x": 313.958906, - "y": -2653.108007 - } - } - }, - { - "id": "2694d14d-5de9-57b0-8e0c-02112ff90376", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.958906, - "y": -2653.108007 - }, - "endPoint": { - "x": 314.133427, - "y": -2653.061487 - } - } - }, - { - "id": "9ed4cc12-3501-567d-adba-738a6b528ba0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.133427, - "y": -2653.061487 - }, - "endPoint": { - "x": 314.245876, - "y": -2653.088628 - } - } - }, - { - "id": "809e82e8-50e4-5522-8748-2d0d6417c343", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.245876, - "y": -2653.088628 - }, - "endPoint": { - "x": 314.331238, - "y": -2653.166088 - } - } - }, - { - "id": "97acef3d-33aa-557a-a56d-5f9a84577ab8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.331238, - "y": -2653.166088 - }, - "endPoint": { - "x": 314.424296, - "y": -2653.34435 - } - } - }, - { - "id": "6851d618-41b2-5c80-97e4-c09e081e5f14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.424296, - "y": -2653.34435 - }, - "endPoint": { - "x": 314.59225, - "y": -2653.41724 - } - } - }, - { - "id": "f65dfee4-8764-5a08-9824-99e9b55fff42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.59225, - "y": -2653.41724 - }, - "endPoint": { - "x": 314.867626, - "y": -2653.483084 - } - } - }, - { - "id": "8bb8656c-4a32-592e-b415-deca94954984", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.867626, - "y": -2653.483084 - }, - "endPoint": { - "x": 315.042148, - "y": -2653.506371 - } - } - }, - { - "id": "d4d629c6-304d-5d09-b468-c6cf5fb0f125", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.042148, - "y": -2653.506371 - }, - "endPoint": { - "x": 315.197277, - "y": -2653.378483 - } - } - }, - { - "id": "c43ff7e4-d394-57b5-ab57-d4c44127184f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.197277, - "y": -2653.378483 - }, - "endPoint": { - "x": 315.426074, - "y": -2653.235124 - } - } - }, - { - "id": "692045af-2f85-5424-b2b4-1d1646fefb26", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.426074, - "y": -2653.235124 - }, - "endPoint": { - "x": 315.530725, - "y": -2653.072332 - } - } - }, - { - "id": "621acca4-800c-57fd-a557-2d89eda86518", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.530725, - "y": -2653.072332 - }, - "endPoint": { - "x": 315.569507, - "y": -2652.932827 - } - } - }, - { - "id": "5e24cdf3-1a7c-5c1e-a5e9-1c11b8de6d6a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.569507, - "y": -2652.932827 - }, - "endPoint": { - "x": 315.639377, - "y": -2652.746858 - } - } - }, - { - "id": "016dcd31-b78d-5cec-af23-6c0f3cb84697", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.639377, - "y": -2652.746858 - }, - "endPoint": { - "x": 315.769883, - "y": -2652.270317 - } - } - }, - { - "id": "48e13794-0847-5534-aeec-7fc31cea914b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.769883, - "y": -2652.270317 - }, - "endPoint": { - "x": 315.857195, - "y": -2651.905149 - } - } - }, - { - "id": "a67e747a-f301-5ac7-ba33-eb3f3b61f73a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.857195, - "y": -2651.905149 - }, - "endPoint": { - "x": 315.84632, - "y": -2651.545487 - } - } - }, - { - "id": "9644fc73-225b-5ebf-ba3d-db28cd7eafb7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.84632, - "y": -2651.545487 - }, - "endPoint": { - "x": 315.808153, - "y": -2651.114916 - } - } - }, - { - "id": "859fc9bd-0e77-59f4-944e-4f279c7fba3f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.808153, - "y": -2651.114916 - }, - "endPoint": { - "x": 315.726279, - "y": -2650.940507 - } - } - }, - { - "id": "0f036cae-b28b-5830-868b-40717c2b5334", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.726279, - "y": -2650.940507 - }, - "endPoint": { - "x": 315.562633, - "y": -2650.875104 - } - } - }, - { - "id": "c2e19401-00e6-55aa-a709-8eb9e0abeb64", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.562633, - "y": -2650.875104 - }, - "endPoint": { - "x": 315.311778, - "y": -2650.880554 - } - } - }, - { - "id": "a0374d7f-153c-50ec-aa50-b582a1d35c5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.311778, - "y": -2650.880554 - }, - "endPoint": { - "x": 315.071799, - "y": -2651.038612 - } - } - }, - { - "id": "beafe4a6-af47-519b-bb13-b162d8c39ed0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.071799, - "y": -2651.038612 - }, - "endPoint": { - "x": 314.864548, - "y": -2651.305675 - } - } - }, - { - "id": "e99402c7-4571-5fc6-b974-b32632d924a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.864548, - "y": -2651.305675 - }, - "endPoint": { - "x": 314.711778, - "y": -2651.670788 - } - } - }, - { - "id": "e84506fc-0a97-54a7-82cb-a10b8ee5b0a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.711778, - "y": -2651.670788 - }, - "endPoint": { - "x": 314.602715, - "y": -2651.807044 - } - } - }, - { - "id": "18869e6c-273f-5183-b80f-2095ed7dec5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.602715, - "y": -2651.807044 - }, - "endPoint": { - "x": 314.455486, - "y": -2652.014155 - } - } - }, - { - "id": "7bc10561-3d14-51d9-84d9-25fe29f425a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.455486, - "y": -2652.014155 - }, - "endPoint": { - "x": 314.330007, - "y": -2652.074108 - } - } - }, - { - "id": "b3790a71-fcd2-5a71-9be2-391b222ccd70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.330007, - "y": -2652.074108 - }, - "endPoint": { - "x": 314.174261, - "y": -2652.074328 - } - } - }, - { - "id": "d9963863-bc94-574c-9d81-2e8c0a7167d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.174261, - "y": -2652.074328 - }, - "endPoint": { - "x": 314.110034, - "y": -2652.015531 - } - } - }, - { - "id": "ce74e143-67c5-52ff-84fa-ad602686dd66", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.110034, - "y": -2652.015531 - }, - "endPoint": { - "x": 314.128707, - "y": -2651.724189 - } - } - }, - { - "id": "83714a41-69b3-584b-8352-0425ec7d197e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.128707, - "y": -2651.724189 - }, - "endPoint": { - "x": 314.139891, - "y": -2651.51284 - } - } - }, - { - "id": "e460c322-a743-582d-aa97-37e9a4b79e8f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.139891, - "y": -2651.51284 - }, - "endPoint": { - "x": 314.190267, - "y": -2651.355168 - } - } - }, - { - "id": "ecda3124-881d-5913-b2a7-8c0b96255ecd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.190267, - "y": -2651.355168 - }, - "endPoint": { - "x": 314.170055, - "y": -2651.157197 - } - } - }, - { - "id": "3123623f-28b6-573d-8851-83e96a61da33", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.170055, - "y": -2651.157197 - }, - "endPoint": { - "x": 314.109624, - "y": -2651.059863 - } - } - }, - { - "id": "72968130-b0df-5267-906c-1c1b034dd54d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.109624, - "y": -2651.059863 - }, - "endPoint": { - "x": 314.139891, - "y": -2650.791423 - } - } - }, - { - "id": "93be3512-3620-5186-bd48-5db8b0a8cf62", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.139891, - "y": -2650.791423 - }, - "endPoint": { - "x": 314.270807, - "y": -2650.630338 - } - } - }, - { - "id": "ef72eddd-57c4-59f5-9bb3-97612c540b2a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.270807, - "y": -2650.630338 - }, - "endPoint": { - "x": 314.408495, - "y": -2650.59681 - } - } - }, - { - "id": "a2377777-9a15-5025-b3b8-ee51d640751d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.408495, - "y": -2650.59681 - }, - "endPoint": { - "x": 314.549569, - "y": -2650.657203 - } - } - }, - { - "id": "03265996-e29b-5aef-96d6-3e7a844d2080", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.549569, - "y": -2650.657203 - }, - "endPoint": { - "x": 314.892045, - "y": -2650.687428 - } - } - }, - { - "id": "e000bdee-75b5-558d-816b-ac85a2dddbed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.892045, - "y": -2650.687428 - }, - "endPoint": { - "x": 314.932674, - "y": -2650.602481 - } - } - }, - { - "id": "6e108f24-4f35-5b0d-8e31-5ee72dd4f559", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.932674, - "y": -2650.602481 - }, - "endPoint": { - "x": 314.966224, - "y": -2650.51858 - } - } - }, - { - "id": "51e5c6be-42b1-5eb6-8270-faf7891dd272", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.966224, - "y": -2650.51858 - }, - "endPoint": { - "x": 315.214719, - "y": -2650.471619 - } - } - }, - { - "id": "a2b476d4-a982-5e34-9931-6554c1b0990d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.214719, - "y": -2650.471619 - }, - "endPoint": { - "x": 315.469986, - "y": -2650.448111 - } - } - }, - { - "id": "90b9fd54-e08d-55f8-8d10-1f914c296768", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.469986, - "y": -2650.448111 - }, - "endPoint": { - "x": 315.647893, - "y": -2650.448111 - } - } - }, - { - "id": "efdf890b-0021-518d-899a-fe83041a0ceb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.647893, - "y": -2650.448111 - }, - "endPoint": { - "x": 315.785581, - "y": -2650.51858 - } - } - }, - { - "id": "2ca21b53-174a-55fc-9e2c-cc306039264c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.785581, - "y": -2650.51858 - }, - "endPoint": { - "x": 315.940095, - "y": -2650.582331 - } - } - }, - { - "id": "4709e993-9f71-593f-9ba8-7a1df6c40220", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.940095, - "y": -2650.582331 - }, - "endPoint": { - "x": 316.087838, - "y": -2650.729984 - } - } - }, - { - "id": "61436b20-b00e-55c0-bc61-9a2e7b666692", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.087838, - "y": -2650.729984 - }, - "endPoint": { - "x": 316.202031, - "y": -2650.971557 - } - } - }, - { - "id": "be73cf97-a184-575c-8ac0-646fedb5acd5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.202031, - "y": -2650.971557 - }, - "endPoint": { - "x": 316.218754, - "y": -2651.246713 - } - } - }, - { - "id": "f75ed979-26ce-55ce-8f8d-431d5f3f79e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.218754, - "y": -2651.246713 - }, - "endPoint": { - "x": 316.212085, - "y": -2651.427948 - } - } - }, - { - "id": "e94a504c-1c54-5f98-894f-61d4e4f89379", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.212085, - "y": -2651.427948 - }, - "endPoint": { - "x": 316.222858, - "y": -2651.551488 - } - } - }, - { - "id": "9b1d728a-7633-5f5e-8672-baad99e46dfa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.222858, - "y": -2651.551488 - }, - "endPoint": { - "x": 316.235478, - "y": -2651.808421 - } - } - }, - { - "id": "b4981946-1827-52f1-9813-1271b12aba66", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.235478, - "y": -2651.808421 - }, - "endPoint": { - "x": 316.307195, - "y": -2651.960092 - } - } - }, - { - "id": "1fafac31-86d5-5a82-ac6e-c282f4f83f44", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.307195, - "y": -2651.960092 - }, - "endPoint": { - "x": 316.399945, - "y": -2652.010631 - } - } - }, - { - "id": "257fc2e9-65e5-51fa-8423-fb05bc7a38d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.399945, - "y": -2652.010631 - }, - "endPoint": { - "x": 316.416771, - "y": -2652.393912 - } - } - }, - { - "id": "10c9089f-3893-5484-afad-7bba7e16f286", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.416771, - "y": -2652.393912 - }, - "endPoint": { - "x": 316.42939, - "y": -2652.655084 - } - } - }, - { - "id": "f4bdfed7-6ffc-5e22-a206-fa9b1d7326e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.42939, - "y": -2652.655084 - }, - "endPoint": { - "x": 316.539172, - "y": -2652.87838 - } - } - }, - { - "id": "d2f446e1-c980-5810-a2da-0f4a11a29d75", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.539172, - "y": -2652.87838 - }, - "endPoint": { - "x": 316.855382, - "y": -2653.084774 - } - } - }, - { - "id": "9a54c4f4-47b2-50e1-8334-60bbf72bb551", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.855382, - "y": -2653.084774 - }, - "endPoint": { - "x": 317.053501, - "y": -2653.240685 - } - } - }, - { - "id": "b96eedad-19b7-509b-a58e-a09406e95991", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.053501, - "y": -2653.240685 - }, - "endPoint": { - "x": 317.237666, - "y": -2653.359545 - } - } - }, - { - "id": "7ada0145-b885-5b2f-a5f0-eba6e8596030", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.237666, - "y": -2653.359545 - }, - "endPoint": { - "x": 317.600252, - "y": -2653.397421 - } - } - }, - { - "id": "43ef7da0-3970-5333-b0f3-53ed1e850d9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.600252, - "y": -2653.397421 - }, - "endPoint": { - "x": 317.654014, - "y": -2653.45264 - } - } - }, - { - "id": "8d0e73a2-ed6c-5930-b47b-6d770745b14b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.654014, - "y": -2653.45264 - }, - "endPoint": { - "x": 317.683665, - "y": -2653.713316 - } - } - }, - { - "id": "d5365a53-fb5e-59bc-9d4c-bed8c6206ab6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.683665, - "y": -2653.713316 - }, - "endPoint": { - "x": 317.778569, - "y": -2653.796282 - } - } - }, - { - "id": "59ac42a6-c6ce-5a30-af23-9bc9c1e8c6f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.778569, - "y": -2653.796282 - }, - "endPoint": { - "x": 318.543446, - "y": -2653.292655 - } - } - }, - { - "id": "bc1ff6fe-94ad-5207-8d7a-7667b332bc72", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.543446, - "y": -2653.292655 - }, - "endPoint": { - "x": 319.563384, - "y": -2652.463168 - } - } - }, - { - "id": "ce08d633-8cd9-5581-9212-2583553ca286", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.563384, - "y": -2652.463168 - }, - "endPoint": { - "x": 320.126653, - "y": -2651.870686 - } - } - }, - { - "id": "876ca2cf-945f-58bd-8ac8-3761084c1819", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.126653, - "y": -2651.870686 - }, - "endPoint": { - "x": 320.483185, - "y": -2651.293949 - } - } - }, - { - "id": "c62b123c-bc46-56de-a63c-400c7ec2e53e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.483185, - "y": -2651.293949 - }, - "endPoint": { - "x": 320.667043, - "y": -2650.908852 - } - } - }, - { - "id": "e47ba464-19c7-5adf-afba-049836f4e9ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.667043, - "y": -2650.908852 - }, - "endPoint": { - "x": 320.453534, - "y": -2651.009544 - } - } - }, - { - "id": "9d63ad83-a19a-5ae7-82df-ba5dacc9d8c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.453534, - "y": -2651.009544 - }, - "endPoint": { - "x": 320.34088, - "y": -2651.133964 - } - } - }, - { - "id": "a089095e-8f1f-5298-b4ed-8f1461e0c328", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.34088, - "y": -2651.133964 - }, - "endPoint": { - "x": 320.151174, - "y": -2651.175474 - } - } - }, - { - "id": "99e1bc29-01d7-5cee-bd0a-2136bdee134f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.151174, - "y": -2651.175474 - }, - "endPoint": { - "x": 320.026619, - "y": -2651.086563 - } - } - }, - { - "id": "2bded6f5-1c7d-5175-b1ab-f03b36759e32", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.026619, - "y": -2651.086563 - }, - "endPoint": { - "x": 319.943616, - "y": -2650.902906 - } - } - }, - { - "id": "21625a66-fa1e-5e92-98b1-c560edd8c411", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.943616, - "y": -2650.902906 - }, - "endPoint": { - "x": 319.659006, - "y": -2650.760703 - } - } - }, - { - "id": "d4535a03-308e-5fb6-a620-9539bb5d9baf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.659006, - "y": -2650.760703 - }, - "endPoint": { - "x": 319.380347, - "y": -2650.754813 - } - } - }, - { - "id": "088d613a-7fad-5c22-a9d9-46a3d53be517", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.380347, - "y": -2650.754813 - }, - "endPoint": { - "x": 319.303192, - "y": -2650.701466 - } - } - }, - { - "id": "a245bb70-d4df-505d-bc54-7ad150d914b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.303192, - "y": -2650.701466 - }, - "endPoint": { - "x": 319.172789, - "y": -2650.802159 - } - } - }, - { - "id": "25b6c4f2-f7b0-524e-bca0-46ff8c1ea759", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.172789, - "y": -2650.802159 - }, - "endPoint": { - "x": 319.036434, - "y": -2650.985871 - } - } - }, - { - "id": "31e69e26-6667-5fac-96ec-2a7ad5931c65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.036434, - "y": -2650.985871 - }, - "endPoint": { - "x": 319.006783, - "y": -2651.151746 - } - } - }, - { - "id": "54ce8c1b-1b84-5fd4-a5c0-db1e3eec08bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.006783, - "y": -2651.151746 - }, - "endPoint": { - "x": 319.036434, - "y": -2651.347295 - } - } - }, - { - "id": "0c1f6153-f757-5cef-981c-d04afd0b29b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.036434, - "y": -2651.347295 - }, - "endPoint": { - "x": 319.22614, - "y": -2651.412423 - } - } - }, - { - "id": "8e7c50ae-3d99-5aaa-9e2f-6290687d989f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.22614, - "y": -2651.412423 - }, - "endPoint": { - "x": 319.48705, - "y": -2651.471715 - } - } - }, - { - "id": "6099acc0-f11b-5d11-a0ad-a6e7c10a25a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.48705, - "y": -2651.471715 - }, - "endPoint": { - "x": 319.670805, - "y": -2651.513171 - } - } - }, - { - "id": "a577ce90-2024-59f5-b89d-509b91da02ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.670805, - "y": -2651.513171 - }, - "endPoint": { - "x": 319.78941, - "y": -2651.548735 - } - } - }, - { - "id": "e4587f13-153b-51b1-85c0-95f977753276", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.78941, - "y": -2651.548735 - }, - "endPoint": { - "x": 319.801311, - "y": -2651.708664 - } - } - }, - { - "id": "b02c0c87-1fe1-530e-8b1c-95fd2e2e25eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.801311, - "y": -2651.708664 - }, - "endPoint": { - "x": 319.801311, - "y": -2651.910104 - } - } - }, - { - "id": "cfc18c85-908a-5ce9-918a-180a290b35a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.801311, - "y": -2651.910104 - }, - "endPoint": { - "x": 319.759758, - "y": -2652.064198 - } - } - }, - { - "id": "35a6d602-666c-56a0-b9da-2b01d4f972f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.759758, - "y": -2652.064198 - }, - "endPoint": { - "x": 319.51075, - "y": -2652.052306 - } - } - }, - { - "id": "f999f68e-5b31-5842-baae-189ba620fa9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.51075, - "y": -2652.052306 - }, - "endPoint": { - "x": 319.326893, - "y": -2651.987179 - } - } - }, - { - "id": "88006d3e-9808-56b2-bf6f-f964ddc6fdf3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.326893, - "y": -2651.987179 - }, - "endPoint": { - "x": 319.178739, - "y": -2652.004906 - } - } - }, - { - "id": "c485eb69-17ab-5a84-a373-19f9e8b67598", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.178739, - "y": -2652.004906 - }, - "endPoint": { - "x": 319.012631, - "y": -2652.105653 - } - } - }, - { - "id": "5dc1fa80-0e94-587f-9d64-052507070585", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.012631, - "y": -2652.105653 - }, - "endPoint": { - "x": 318.805176, - "y": -2652.111599 - } - } - }, - { - "id": "6dfd8b49-95f0-591d-9a8c-463f24d9b5ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.805176, - "y": -2652.111599 - }, - "endPoint": { - "x": 318.597618, - "y": -2652.111599 - } - } - }, - { - "id": "c20da666-165f-5671-9d68-c7d2c951ddee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.597618, - "y": -2652.111599 - }, - "endPoint": { - "x": 318.449362, - "y": -2652.188618 - } - } - }, - { - "id": "db03cf3d-30f9-5f75-87aa-bf9609f11ca0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.449362, - "y": -2652.188618 - }, - "endPoint": { - "x": 318.277406, - "y": -2652.200455 - } - } - }, - { - "id": "aa2291b4-c599-59bd-9ab3-4a044d56bd84", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.277406, - "y": -2652.200455 - }, - "endPoint": { - "x": 318.058049, - "y": -2652.170836 - } - } - }, - { - "id": "89d6dc5c-4e2a-5d32-bfea-63d15ab35ba7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.058049, - "y": -2652.170836 - }, - "endPoint": { - "x": 317.986845, - "y": -2652.070089 - } - } - }, - { - "id": "50d76436-bd37-5585-8d29-e3babee91722", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.986845, - "y": -2652.070089 - }, - "endPoint": { - "x": 317.785238, - "y": -2652.058252 - } - } - }, - { - "id": "ce23bec2-0bf7-5730-b89e-05a70c90e73f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.785238, - "y": -2652.058252 - }, - "endPoint": { - "x": 317.637085, - "y": -2652.153054 - } - } - }, - { - "id": "2152a7f8-53ef-5610-8500-a5079d2f4da2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.637085, - "y": -2652.153054 - }, - "endPoint": { - "x": 317.595532, - "y": -2652.111599 - } - } - }, - { - "id": "eae092ef-ea1a-5460-b963-105daf263197", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.595532, - "y": -2652.111599 - }, - "endPoint": { - "x": 317.607434, - "y": -2651.999015 - } - } - }, - { - "id": "2c2d52dc-28c2-5c5d-91a6-fffc225ba2a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.607434, - "y": -2651.999015 - }, - "endPoint": { - "x": 317.49478, - "y": -2651.880485 - } - } - }, - { - "id": "4effba2c-9765-5167-ac18-b66f82a4f52b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.49478, - "y": -2651.880485 - }, - "endPoint": { - "x": 317.423576, - "y": -2651.827194 - } - } - }, - { - "id": "662752cb-cb3d-51fa-80ba-9bdd31cac9e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.423576, - "y": -2651.827194 - }, - "endPoint": { - "x": 317.387974, - "y": -2651.79163 - } - } - }, - { - "id": "b6b34b4f-39f9-5922-8413-948c18758a72", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.387974, - "y": -2651.79163 - }, - "endPoint": { - "x": 317.269472, - "y": -2651.767957 - } - } - }, - { - "id": "9c3c1d56-001b-5731-91ae-91a57cd50979", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.269472, - "y": -2651.767957 - }, - "endPoint": { - "x": 317.144917, - "y": -2651.602026 - } - } - }, - { - "id": "b5fab2c4-67d5-5388-98d2-c96a4e51974f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.144917, - "y": -2651.602026 - }, - "endPoint": { - "x": 317.050013, - "y": -2651.483552 - } - } - }, - { - "id": "0dd157a6-ede7-53bf-b72a-1e10d8a086e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.050013, - "y": -2651.483552 - }, - "endPoint": { - "x": 317.026312, - "y": -2651.270221 - } - } - }, - { - "id": "6c26686c-a80a-5d88-912d-8dbcc6c17b48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.026312, - "y": -2651.270221 - }, - "endPoint": { - "x": 317.085615, - "y": -2651.133964 - } - } - }, - { - "id": "41ba1a50-6722-5b7a-b52f-e3bec7103e8d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.085615, - "y": -2651.133964 - }, - "endPoint": { - "x": 317.032263, - "y": -2650.950307 - } - } - }, - { - "id": "63c583f8-aba8-578e-97db-c3adf690934e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.032263, - "y": -2650.950307 - }, - "endPoint": { - "x": 317.079664, - "y": -2650.68963 - } - } - }, - { - "id": "0288f081-14b5-518c-a18a-ca00c7e7abb3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.079664, - "y": -2650.68963 - }, - "endPoint": { - "x": 317.293173, - "y": -2650.511863 - } - } - }, - { - "id": "744b77fa-e80c-5ad8-9990-99407408b5ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.293173, - "y": -2650.511863 - }, - "endPoint": { - "x": 317.51253, - "y": -2650.434844 - } - } - }, - { - "id": "7d61cf9f-36e0-53ad-ad06-59663f7abe18", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.51253, - "y": -2650.434844 - }, - "endPoint": { - "x": 317.625183, - "y": -2650.48819 - } - } - }, - { - "id": "217a4452-ebeb-564d-8d04-55a8ea9117b0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.625183, - "y": -2650.48819 - }, - "endPoint": { - "x": 317.601483, - "y": -2650.577046 - } - } - }, - { - "id": "02f6aa1c-22f4-568f-8840-594e15a0e1cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.601483, - "y": -2650.577046 - }, - "endPoint": { - "x": 317.447276, - "y": -2650.68963 - } - } - }, - { - "id": "b01433d5-0365-5824-a995-6abcd10c2e6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.447276, - "y": -2650.68963 - }, - "endPoint": { - "x": 317.376175, - "y": -2650.914742 - } - } - }, - { - "id": "a157d26e-78e8-57a0-9a37-89222c808c13", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.376175, - "y": -2650.914742 - }, - "endPoint": { - "x": 317.393925, - "y": -2651.276167 - } - } - }, - { - "id": "a98af552-55d2-5e9b-ac39-b2e270b4556a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.393925, - "y": -2651.276167 - }, - "endPoint": { - "x": 317.506579, - "y": -2651.447988 - } - } - }, - { - "id": "1d82da28-34e7-5387-9595-8dc2310d7d65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.506579, - "y": -2651.447988 - }, - "endPoint": { - "x": 317.761538, - "y": -2651.530953 - } - } - }, - { - "id": "37634a1a-be6b-511b-b7bc-ee2aa663b9ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.761538, - "y": -2651.530953 - }, - "endPoint": { - "x": 318.034349, - "y": -2651.519116 - } - } - }, - { - "id": "57143e75-99f0-5c45-91f2-f92ee19a38a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.034349, - "y": -2651.519116 - }, - "endPoint": { - "x": 318.170703, - "y": -2651.382805 - } - } - }, - { - "id": "068547a4-a7c5-5a75-a642-cd1f532260af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.170703, - "y": -2651.382805 - }, - "endPoint": { - "x": 318.324909, - "y": -2651.299894 - } - } - }, - { - "id": "11912308-7ee3-5acb-a1bd-c5039bd665b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.324909, - "y": -2651.299894 - }, - "endPoint": { - "x": 318.443411, - "y": -2651.258384 - } - } - }, - { - "id": "e0f68f08-1bbf-594e-b4e4-afd9d03d9c26", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.443411, - "y": -2651.258384 - }, - "endPoint": { - "x": 318.473063, - "y": -2651.104346 - } - } - }, - { - "id": "951020cc-057a-5338-9fb0-23c73bf9d03c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.473063, - "y": -2651.104346 - }, - "endPoint": { - "x": 318.473063, - "y": -2650.89696 - } - } - }, - { - "id": "6f33d4f2-1666-54c9-b749-8c5766455a69", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.473063, - "y": -2650.89696 - }, - "endPoint": { - "x": 318.41376, - "y": -2650.802159 - } - } - }, - { - "id": "da2bdf4c-9708-5506-9c20-b959c10c863e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.41376, - "y": -2650.802159 - }, - "endPoint": { - "x": 318.277406, - "y": -2650.701466 - } - } - }, - { - "id": "5979c510-e3a2-5393-8a37-8ba1b1efc81c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.277406, - "y": -2650.701466 - }, - "endPoint": { - "x": 318.158801, - "y": -2650.56521 - } - } - }, - { - "id": "608470b8-b9d7-5ced-a1d6-fd58ea544456", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.158801, - "y": -2650.56521 - }, - "endPoint": { - "x": 318.194403, - "y": -2650.482244 - } - } - }, - { - "id": "48dcdb1d-e8f5-5829-a98f-0594d8b1c67f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.194403, - "y": -2650.482244 - }, - "endPoint": { - "x": 318.289308, - "y": -2650.440789 - } - } - }, - { - "id": "c3ea197b-e36c-50fe-af3a-bb670a354390", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.289308, - "y": -2650.440789 - }, - "endPoint": { - "x": 318.490915, - "y": -2650.423007 - } - } - }, - { - "id": "77db8862-e1a8-5338-a9f5-2e42901e7061", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.490915, - "y": -2650.423007 - }, - "endPoint": { - "x": 318.585716, - "y": -2650.369661 - } - } - }, - { - "id": "8ed325c3-4c2b-51bf-a209-c9b91db95fc9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.585716, - "y": -2650.369661 - }, - "endPoint": { - "x": 318.704321, - "y": -2650.334151 - } - } - }, - { - "id": "56b9c678-c75e-5150-9198-340c567a4848", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.704321, - "y": -2650.334151 - }, - "endPoint": { - "x": 318.793275, - "y": -2650.393389 - } - } - }, - { - "id": "0eb4f771-75a6-55e3-b51a-8576ee9077eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.793275, - "y": -2650.393389 - }, - "endPoint": { - "x": 318.894129, - "y": -2650.334151 - } - } - }, - { - "id": "7c470d83-c70f-5415-b58d-92ff2de42ff9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.894129, - "y": -2650.334151 - }, - "endPoint": { - "x": 319.042283, - "y": -2650.36377 - } - } - }, - { - "id": "a5925c5f-9cfb-546f-b421-ae5fd161dce6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.042283, - "y": -2650.36377 - }, - "endPoint": { - "x": 319.273541, - "y": -2650.428898 - } - } - }, - { - "id": "ee6c6eb6-305d-5493-a2bd-b8cd89a9ee09", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.273541, - "y": -2650.428898 - }, - "endPoint": { - "x": 319.564102, - "y": -2650.423007 - } - } - }, - { - "id": "c1c4bbc5-314a-5968-871e-315c186b4ad5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.564102, - "y": -2650.423007 - }, - "endPoint": { - "x": 319.872412, - "y": -2650.393389 - } - } - }, - { - "id": "e21cabca-0e95-5d7f-aade-e61ed07e18cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.872412, - "y": -2650.393389 - }, - "endPoint": { - "x": 320.002918, - "y": -2650.304478 - } - } - }, - { - "id": "e99fff35-4918-5e25-90f3-41826157b555", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.002918, - "y": -2650.304478 - }, - "endPoint": { - "x": 320.127371, - "y": -2650.263023 - } - } - }, - { - "id": "b1d8faaf-305d-594b-9069-6b6dcf836b11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.127371, - "y": -2650.263023 - }, - "endPoint": { - "x": 320.281578, - "y": -2650.233404 - } - } - }, - { - "id": "9dd06a6b-e2cf-5235-8fa3-e2c61d06a98b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.281578, - "y": -2650.233404 - }, - "endPoint": { - "x": 320.34088, - "y": -2650.073419 - } - } - }, - { - "id": "a818f4cb-bea0-58a5-8bbd-769d838fa4db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.34088, - "y": -2650.073419 - }, - "endPoint": { - "x": 320.346831, - "y": -2649.931217 - } - } - }, - { - "id": "6fabd5aa-004c-514b-b30b-dfbae77a060d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.346831, - "y": -2649.931217 - }, - "endPoint": { - "x": 320.28681, - "y": -2649.904571 - } - } - }, - { - "id": "cd808551-e8ad-52cb-aac3-3dc777767c42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.28681, - "y": -2649.904571 - }, - "endPoint": { - "x": 320.197857, - "y": -2649.815715 - } - } - }, - { - "id": "e52e6bfa-c8fb-5675-9ef8-aa17dbcd0f31", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.197857, - "y": -2649.815715 - }, - "endPoint": { - "x": 320.168308, - "y": -2649.661677 - } - } - }, - { - "id": "f3052bf4-2804-5101-a8d3-cef06a67660f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.168308, - "y": -2649.661677 - }, - "endPoint": { - "x": 320.073404, - "y": -2649.602384 - } - } - }, - { - "id": "0b673d26-24bf-5270-abb1-88dc59939a4e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.073404, - "y": -2649.602384 - }, - "endPoint": { - "x": 319.93705, - "y": -2649.632003 - } - } - }, - { - "id": "b5bc2c6a-23a0-52a7-bce0-18925bc1f0cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.93705, - "y": -2649.632003 - }, - "endPoint": { - "x": 319.747241, - "y": -2649.637949 - } - } - }, - { - "id": "667a2d7f-5136-560a-8220-3f5def94c2e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.747241, - "y": -2649.637949 - }, - "endPoint": { - "x": 319.515983, - "y": -2649.549093 - } - } - }, - { - "id": "0524f32e-ebfc-5ec2-9667-7d721d987ca5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.515983, - "y": -2649.549093 - }, - "endPoint": { - "x": 319.344027, - "y": -2649.566875 - } - } - }, - { - "id": "eecbfd44-7dbe-5d39-ab3c-a9fd01562f0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.344027, - "y": -2649.566875 - }, - "endPoint": { - "x": 319.284724, - "y": -2649.649785 - } - } - }, - { - "id": "b238f3dd-864a-53ca-a9e7-7da8c79f232d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.284724, - "y": -2649.649785 - }, - "endPoint": { - "x": 319.089068, - "y": -2649.596494 - } - } - }, - { - "id": "b2b4333e-9347-5c75-aa26-1115e7e9231f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.089068, - "y": -2649.596494 - }, - "endPoint": { - "x": 318.875662, - "y": -2649.549093 - } - } - }, - { - "id": "f3c05e27-0ac6-50d2-810a-1c91fafb8f70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.875662, - "y": -2649.549093 - }, - "endPoint": { - "x": 318.632502, - "y": -2649.554983 - } - } - }, - { - "id": "e3972cae-062b-5a22-aa03-dd55d42097ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.632502, - "y": -2649.554983 - }, - "endPoint": { - "x": 318.425046, - "y": -2649.602384 - } - } - }, - { - "id": "4c03219a-8311-5fa1-ba34-cf3e8db39fd3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.425046, - "y": -2649.602384 - }, - "endPoint": { - "x": 318.116633, - "y": -2649.661677 - } - } - }, - { - "id": "a0ed04b2-f04d-57dd-ac19-a29571bcc621", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.116633, - "y": -2649.661677 - }, - "endPoint": { - "x": 317.96848, - "y": -2649.572766 - } - } - }, - { - "id": "2103e74e-e726-526b-afe7-34537b178d16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.96848, - "y": -2649.572766 - }, - "endPoint": { - "x": 317.760922, - "y": -2649.560929 - } - } - }, - { - "id": "5c3ab32b-90ed-5abf-baf2-b77a8e846df1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.760922, - "y": -2649.560929 - }, - "endPoint": { - "x": 317.559315, - "y": -2649.632003 - } - } - }, - { - "id": "305a4872-4289-52e4-80c2-345e3a33c6e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.559315, - "y": -2649.632003 - }, - "endPoint": { - "x": 317.500012, - "y": -2649.786097 - } - } - }, - { - "id": "faa1a5fc-d611-5ceb-9c64-d03a3fcf9e13", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.500012, - "y": -2649.786097 - }, - "endPoint": { - "x": 316.978193, - "y": -2649.803824 - } - } - }, - { - "id": "217d028a-fc9c-5ce0-b093-bebf2a4a2e0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.978193, - "y": -2649.803824 - }, - "endPoint": { - "x": 316.770635, - "y": -2649.768315 - } - } - }, - { - "id": "7d53459f-f7b6-57cf-b1bd-53d42ae8a465", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.770635, - "y": -2649.768315 - }, - "endPoint": { - "x": 316.626176, - "y": -2649.737485 - } - } - }, - { - "id": "c1cb89d9-0423-5b3c-a8df-db05b5ca295f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.626176, - "y": -2649.737485 - }, - "endPoint": { - "x": 316.410102, - "y": -2649.661622 - } - } - }, - { - "id": "4db83761-395f-5b67-831d-bfa02aa5bae3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.410102, - "y": -2649.661622 - }, - "endPoint": { - "x": 316.042079, - "y": -2649.626608 - } - } - }, - { - "id": "d2bbf471-ebed-5e3c-b642-570977385173", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.042079, - "y": -2649.626608 - }, - "endPoint": { - "x": 315.901928, - "y": -2649.766663 - } - } - }, - { - "id": "ababf239-c90d-5e3e-8fba-0f8912f5c5ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.901928, - "y": -2649.766663 - }, - "endPoint": { - "x": 315.849398, - "y": -2649.725814 - } - } - }, - { - "id": "9fa4f314-bfa1-5873-9aac-7ef14b946389", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.849398, - "y": -2649.725814 - }, - "endPoint": { - "x": 315.738385, - "y": -2649.725814 - } - } - }, - { - "id": "f2d8f7b9-21a8-5dca-8c0c-24aaadd7b2e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.738385, - "y": -2649.725814 - }, - "endPoint": { - "x": 315.563146, - "y": -2649.801677 - } - } - }, - { - "id": "36a5f413-8b4a-5292-aa28-0bbfd39102a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.563146, - "y": -2649.801677 - }, - "endPoint": { - "x": 315.452236, - "y": -2649.78417 - } - } - }, - { - "id": "9fd7e4da-3db6-5a69-936a-2b36336dd276", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.452236, - "y": -2649.78417 - }, - "endPoint": { - "x": 315.417147, - "y": -2649.719978 - } - } - }, - { - "id": "b0e06e33-1b14-52e9-b9cc-b9c050a6bffe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.417147, - "y": -2649.719978 - }, - "endPoint": { - "x": 315.281306, - "y": -2649.749046 - } - } - }, - { - "id": "79662c9b-7402-5395-97ec-6af691dde13a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.281306, - "y": -2649.749046 - }, - "endPoint": { - "x": 314.984384, - "y": -2649.714968 - } - } - }, - { - "id": "63820bad-c7b3-5678-963b-0aa8a800b0f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.984384, - "y": -2649.714968 - }, - "endPoint": { - "x": 314.511607, - "y": -2649.866089 - } - } - }, - { - "id": "9ce077c9-c734-5fac-bcaf-a5c013812899", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.511607, - "y": -2649.866089 - }, - "endPoint": { - "x": 314.474261, - "y": -2649.955771 - } - } - }, - { - "id": "382c33b5-f6b3-5ca4-9a8e-d40c93cb91a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.474261, - "y": -2649.955771 - }, - "endPoint": { - "x": 314.409419, - "y": -2650.068575 - } - } - }, - { - "id": "d0e6da8e-0189-59aa-a044-72900382fe60", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.409419, - "y": -2650.068575 - }, - "endPoint": { - "x": 314.251416, - "y": -2650.093954 - } - } - }, - { - "id": "c4b96fa0-ecf9-5af8-a8f0-61c02c9cd268", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.251416, - "y": -2650.093954 - }, - "endPoint": { - "x": 314.115883, - "y": -2650.00653 - } - } - }, - { - "id": "020add7a-5f94-58cf-b78a-08a7c7a7eca7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.115883, - "y": -2650.00653 - }, - "endPoint": { - "x": 314.090541, - "y": -2649.851445 - } - } - }, - { - "id": "55b36270-b89f-5292-b3bd-1b765996381c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.090541, - "y": -2649.851445 - }, - "endPoint": { - "x": 314.101826, - "y": -2649.671036 - } - } - }, - { - "id": "8161e713-8486-5edc-86ad-200c31069f06", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.101826, - "y": -2649.671036 - }, - "endPoint": { - "x": 314.2034, - "y": -2649.465192 - } - } - }, - { - "id": "c04f6c7d-4f78-5f2b-8d67-2f76b5ebd20b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.2034, - "y": -2649.465192 - }, - "endPoint": { - "x": 314.33883, - "y": -2649.327008 - } - } - }, - { - "id": "4926549e-d319-5834-a734-9cf4e3b8913d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.33883, - "y": -2649.327008 - }, - "endPoint": { - "x": 314.468618, - "y": -2649.259348 - } - } - }, - { - "id": "985a520a-f10d-5608-86fa-c569020a8626", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.468618, - "y": -2649.259348 - }, - "endPoint": { - "x": 314.668995, - "y": -2649.298821 - } - } - }, - { - "id": "2b231fbc-f55c-5cc7-8f88-27b59891094a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.668995, - "y": -2649.298821 - }, - "endPoint": { - "x": 314.798782, - "y": -2649.363674 - } - } - }, - { - "id": "46debadb-4623-529c-a2c6-e8c671d7b372", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.798782, - "y": -2649.363674 - }, - "endPoint": { - "x": 315.112018, - "y": -2649.318585 - } - } - }, - { - "id": "3c459481-b501-59b6-9847-0162550ee2b0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.112018, - "y": -2649.318585 - }, - "endPoint": { - "x": 315.385649, - "y": -2649.321393 - } - } - }, - { - "id": "1cb8441f-11a6-5f4a-9926-b4782e6923cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.385649, - "y": -2649.321393 - }, - "endPoint": { - "x": 315.66318, - "y": -2649.315117 - } - } - }, - { - "id": "230c18fa-92a8-5940-a642-773166aeca56", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.66318, - "y": -2649.315117 - }, - "endPoint": { - "x": 316.092045, - "y": -2649.306639 - } - } - }, - { - "id": "7dbfa194-8a18-59b2-8395-5f2d24099b99", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.092045, - "y": -2649.306639 - }, - "endPoint": { - "x": 316.834144, - "y": -2649.26155 - } - } - }, - { - "id": "588e6106-eba3-5207-8136-3cf14b658a81", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.834144, - "y": -2649.26155 - }, - "endPoint": { - "x": 317.451175, - "y": -2649.295518 - } - } - }, - { - "id": "f1ab98de-2a1a-5df9-b06f-dcdc9d0e42bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.451175, - "y": -2649.295518 - }, - "endPoint": { - "x": 318.300491, - "y": -2649.346277 - } - } - }, - { - "id": "5b15fc09-bd41-560c-b431-e6af91d02b23", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.300491, - "y": -2649.346277 - }, - "endPoint": { - "x": 318.777372, - "y": -2649.303996 - } - } - }, - { - "id": "6a4cd887-2b3b-58b4-8e05-7d1879176735", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.777372, - "y": -2649.303996 - }, - "endPoint": { - "x": 319.262666, - "y": -2649.256045 - } - } - }, - { - "id": "68914b71-fdad-5033-bd18-21e68c2c081f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.262666, - "y": -2649.256045 - }, - "endPoint": { - "x": 319.563794, - "y": -2649.264303 - } - } - }, - { - "id": "c63ef600-4be3-5b80-b759-edc520ce263b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.563794, - "y": -2649.264303 - }, - "endPoint": { - "x": 319.961673, - "y": -2649.086701 - } - } - }, - { - "id": "4db6dca0-f640-5d70-a549-7c73e7274923", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.961673, - "y": -2649.086701 - }, - "endPoint": { - "x": 320.212426, - "y": -2648.865442 - } - } - }, - { - "id": "adaf4498-33fc-56e7-b1f6-ba1d37e056d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.212426, - "y": -2648.865442 - }, - "endPoint": { - "x": 320.291427, - "y": -2648.701879 - } - } - }, - { - "id": "4781c858-434d-5cb5-9782-f6889ce89761", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.291427, - "y": -2648.701879 - }, - "endPoint": { - "x": 320.280141, - "y": -2648.501706 - } - } - }, - { - "id": "f51c61d2-01c0-5b13-91d4-9c3cb06f88e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.280141, - "y": -2648.501706 - }, - "endPoint": { - "x": 320.373301, - "y": -2648.369193 - } - } - }, - { - "id": "9f7e40a1-66de-5e3a-aecf-2ae00772e7af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.373301, - "y": -2648.369193 - }, - "endPoint": { - "x": 320.311126, - "y": -2648.053408 - } - } - }, - { - "id": "9349f7bc-b5e7-558b-b4c9-7c3f69194247", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.311126, - "y": -2648.053408 - }, - "endPoint": { - "x": 320.229047, - "y": -2647.9166 - } - } - }, - { - "id": "d0f36583-1e84-590f-b0ac-4ca185f4d9f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.229047, - "y": -2647.9166 - }, - "endPoint": { - "x": 320.23469, - "y": -2647.795373 - } - } - }, - { - "id": "196b7d87-76ba-5476-ac06-87e6c6e25552", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.23469, - "y": -2647.795373 - }, - "endPoint": { - "x": 320.099259, - "y": -2647.648767 - } - } - }, - { - "id": "ad644448-f228-5ddd-8b7a-3ee333d0b972", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.099259, - "y": -2647.648767 - }, - "endPoint": { - "x": 319.907399, - "y": -2647.479588 - } - } - }, - { - "id": "79e9238f-64b6-58c6-bbe7-467db463f222", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.907399, - "y": -2647.479588 - }, - "endPoint": { - "x": 319.678808, - "y": -2647.406257 - } - } - }, - { - "id": "9e5a325f-ec39-5fec-b3eb-ade7190251bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.678808, - "y": -2647.406257 - }, - "endPoint": { - "x": 319.2048, - "y": -2647.383685 - } - } - }, - { - "id": "a62c4ca1-5fae-55df-b556-1fa70066f0fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.2048, - "y": -2647.383685 - }, - "endPoint": { - "x": 319.122926, - "y": -2647.392164 - } - } - }, - { - "id": "5ebcbe06-ea62-5f01-977d-e2cb68fd132e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.122926, - "y": -2647.392164 - }, - "endPoint": { - "x": 319.066496, - "y": -2647.510583 - } - } - }, - { - "id": "51fba311-cbe7-530c-9816-189764bfc489", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.066496, - "y": -2647.510583 - }, - "endPoint": { - "x": 319.026995, - "y": -2647.555672 - } - } - }, - { - "id": "63fba279-675b-5aa9-acca-da0b4fea3f55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.026995, - "y": -2647.555672 - }, - "endPoint": { - "x": 318.891565, - "y": -2647.535963 - } - } - }, - { - "id": "e4361469-acb7-5ebe-8c00-046d5a436007", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.891565, - "y": -2647.535963 - }, - "endPoint": { - "x": 318.756134, - "y": -2647.431637 - } - } - }, - { - "id": "d900a57c-cc3a-595f-8316-d929977e441a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.756134, - "y": -2647.431637 - }, - "endPoint": { - "x": 318.441975, - "y": -2647.417268 - } - } - }, - { - "id": "84b2c84d-caf6-52e8-b9a8-28cfd678714c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.441975, - "y": -2647.417268 - }, - "endPoint": { - "x": 318.185272, - "y": -2647.41446 - } - } - }, - { - "id": "dea3d3d1-f01a-5ec3-8868-6cf855897986", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.185272, - "y": -2647.41446 - }, - "endPoint": { - "x": 318.134485, - "y": -2647.341129 - } - } - }, - { - "id": "0a807c4a-4a89-53ba-aa0a-6aac7d1e6d67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.134485, - "y": -2647.341129 - }, - "endPoint": { - "x": 318.114684, - "y": -2647.203001 - } - } - }, - { - "id": "b59732bc-9f22-5273-8372-2125ead5a896", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.114684, - "y": -2647.203001 - }, - "endPoint": { - "x": 318.241702, - "y": -2647.124055 - } - } - }, - { - "id": "161f9bf8-2737-5975-9cb1-11e7fc778067", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.241702, - "y": -2647.124055 - }, - "endPoint": { - "x": 318.484349, - "y": -2647.070488 - } - } - }, - { - "id": "fe5ee053-46b8-5d2d-9709-4843e35933a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.484349, - "y": -2647.070488 - }, - "endPoint": { - "x": 318.71571, - "y": -2647.059202 - } - } - }, - { - "id": "a31d76a7-1eb3-5820-a0fa-528d23bf9769", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.71571, - "y": -2647.059202 - }, - "endPoint": { - "x": 318.769677, - "y": -2647.004149 - } - } - }, - { - "id": "83254e21-9541-532f-8be1-d3c89db7001a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.769677, - "y": -2647.004149 - }, - "endPoint": { - "x": 318.859964, - "y": -2646.888537 - } - } - }, - { - "id": "e8f3a7ff-1570-5cd4-9d73-fc17887b3f53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.859964, - "y": -2646.888537 - }, - "endPoint": { - "x": 318.919266, - "y": -2646.837778 - } - } - }, - { - "id": "f3d684d5-e733-5b41-ac04-c2668a6662ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.919266, - "y": -2646.837778 - }, - "endPoint": { - "x": 319.034895, - "y": -2646.956197 - } - } - }, - { - "id": "f634c826-3466-528b-86b2-430f700f2dc0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.034895, - "y": -2646.956197 - }, - "endPoint": { - "x": 319.153397, - "y": -2647.032336 - } - } - }, - { - "id": "2db4f992-fa7b-5de5-b2c2-2df4e770cc13", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.153397, - "y": -2647.032336 - }, - "endPoint": { - "x": 319.317043, - "y": -2647.085903 - } - } - }, - { - "id": "876240c3-9b3e-52ac-8a75-97a8de1123c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.317043, - "y": -2647.085903 - }, - "endPoint": { - "x": 319.492077, - "y": -2647.080232 - } - } - }, - { - "id": "616e7514-6ef4-5ea9-a520-3cf0ef1a08d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.492077, - "y": -2647.080232 - }, - "endPoint": { - "x": 319.647207, - "y": -2647.052045 - } - } - }, - { - "id": "5aaf5b32-f8fa-5931-8c54-5a57f67f9f77", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.647207, - "y": -2647.052045 - }, - "endPoint": { - "x": 319.714923, - "y": -2647.08871 - } - } - }, - { - "id": "e11342a7-a433-5f5c-9bae-52d06b6d0942", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.714923, - "y": -2647.08871 - }, - "endPoint": { - "x": 320.039444, - "y": -2646.959005 - } - } - }, - { - "id": "6d75f847-129c-5253-876c-9e29e49079a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.039444, - "y": -2646.959005 - }, - "endPoint": { - "x": 320.253876, - "y": -2646.792689 - } - } - }, - { - "id": "d5dab27a-f920-5268-997f-eb3d0b763e58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.253876, - "y": -2646.792689 - }, - "endPoint": { - "x": 320.358322, - "y": -2646.657314 - } - } - }, - { - "id": "ea1db3fc-be91-5ec2-9d52-c07d9383e765", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.358322, - "y": -2646.657314 - }, - "endPoint": { - "x": 320.386536, - "y": -2646.555851 - } - } - }, - { - "id": "ab8cacee-cea2-5915-a107-8fb92dfb0958", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.386536, - "y": -2646.555851 - }, - "endPoint": { - "x": 320.403465, - "y": -2646.465618 - } - } - }, - { - "id": "a135dea8-d7ff-5aa3-89c8-0b874156b68c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.403465, - "y": -2646.465618 - }, - "endPoint": { - "x": 320.40285, - "y": -2646.414474 - } - } - } - ] - }, - { - "id": "9d1314f9-186c-505c-8f1c-84d07f4db43c", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "8843f76f-edf0-5d8e-ab4d-c3325f6755e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.437598, - "y": -2647.568829 - }, - "endPoint": { - "x": 316.423337, - "y": -2647.199202 - } - } - }, - { - "id": "762276fc-76a8-5f6d-9b99-d25b52902563", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.423337, - "y": -2647.199202 - }, - "endPoint": { - "x": 316.123542, - "y": -2647.174208 - } - } - }, - { - "id": "81b6752a-88c6-5e73-ba7d-a2ed18a036bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.123542, - "y": -2647.174208 - }, - "endPoint": { - "x": 315.683905, - "y": -2647.1812 - } - } - }, - { - "id": "8bee8798-75bf-502b-914e-c28e03113ffb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.683905, - "y": -2647.1812 - }, - "endPoint": { - "x": 315.279254, - "y": -2647.198597 - } - } - }, - { - "id": "a1fc4271-81d6-54d2-8e7f-f33d042987ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.279254, - "y": -2647.198597 - }, - "endPoint": { - "x": 314.895739, - "y": -2647.203772 - } - } - }, - { - "id": "dd0c519e-3558-5631-9703-6b15cac9b55b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.895739, - "y": -2647.203772 - }, - "endPoint": { - "x": 314.689822, - "y": -2647.155655 - } - } - }, - { - "id": "0a5ee69f-2247-5bfb-92a6-88ce9ee95d63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.689822, - "y": -2647.155655 - }, - "endPoint": { - "x": 314.554083, - "y": -2647.138148 - } - } - }, - { - "id": "1aaa2513-feee-5ac1-ab4a-b24c687b59ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.554083, - "y": -2647.138148 - }, - "endPoint": { - "x": 314.427066, - "y": -2647.146902 - } - } - }, - { - "id": "01f991d7-121d-5658-a151-7764252a27d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.427066, - "y": -2647.146902 - }, - "endPoint": { - "x": 314.356991, - "y": -2647.225683 - } - } - }, - { - "id": "febf0e06-fce2-53cb-a85b-f80c3339b7d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.356991, - "y": -2647.225683 - }, - "endPoint": { - "x": 314.34827, - "y": -2647.308813 - } - } - }, - { - "id": "c908638e-53f1-5274-84a9-d4e3348f393c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.34827, - "y": -2647.308813 - }, - "endPoint": { - "x": 314.265062, - "y": -2647.361334 - } - } - }, - { - "id": "b67bc6ec-8575-50f6-83fd-91df38a5a897", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.265062, - "y": -2647.361334 - }, - "endPoint": { - "x": 314.212428, - "y": -2647.440115 - } - } - }, - { - "id": "dc5b292b-4c6c-51cb-8e5c-8eadb44788a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.212428, - "y": -2647.440115 - }, - "endPoint": { - "x": 314.278194, - "y": -2647.632636 - } - } - }, - { - "id": "d4d054c1-fa36-5af0-900f-34439bc8670a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.278194, - "y": -2647.632636 - }, - "endPoint": { - "x": 314.4008, - "y": -2647.702664 - } - } - }, - { - "id": "15420b25-a26b-5ad1-ad86-543e31002d76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.4008, - "y": -2647.702664 - }, - "endPoint": { - "x": 314.624159, - "y": -2647.733328 - } - } - }, - { - "id": "d855ddcc-eb62-569f-8269-4398809f3826", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.624159, - "y": -2647.733328 - }, - "endPoint": { - "x": 314.794986, - "y": -2647.680808 - } - } - }, - { - "id": "2f5e629b-217c-5fc8-9b33-067da1d4b8fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.794986, - "y": -2647.680808 - }, - "endPoint": { - "x": 314.91318, - "y": -2647.672054 - } - } - }, - { - "id": "35cf8889-348a-5926-b7f1-9045a4a45712", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.91318, - "y": -2647.672054 - }, - "endPoint": { - "x": 315.040198, - "y": -2647.571417 - } - } - }, - { - "id": "84215bf7-c406-566a-8295-f958742d2083", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.040198, - "y": -2647.571417 - }, - "endPoint": { - "x": 315.206717, - "y": -2647.545157 - } - } - }, - { - "id": "a5a228fc-c204-565a-9bb8-af6335c7cf61", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.206717, - "y": -2647.545157 - }, - "endPoint": { - "x": 315.40381, - "y": -2647.575766 - } - } - }, - { - "id": "0582543a-bb7d-5c52-80fc-28f346d2f775", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.40381, - "y": -2647.575766 - }, - "endPoint": { - "x": 315.767318, - "y": -2647.58452 - } - } - }, - { - "id": "f01abc6c-3433-5b78-8685-0ab7a6613271", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.767318, - "y": -2647.58452 - }, - "endPoint": { - "x": 315.959999, - "y": -2647.575766 - } - } - }, - { - "id": "471ac381-6060-524d-b330-a086539005fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.959999, - "y": -2647.575766 - }, - "endPoint": { - "x": 316.279698, - "y": -2647.575766 - } - } - }, - { - "id": "b8edf503-7842-587f-b2f6-a147469a2396", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.279698, - "y": -2647.575766 - }, - "endPoint": { - "x": 316.437598, - "y": -2647.568829 - } - } - } - ] - }, - { - "id": "35e09329-b0f8-5bf9-a3f7-736c67f78b52", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "33807523-c06b-5e3c-abfe-33aac146ab1d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.977544, - "y": -2648.12283 - }, - "endPoint": { - "x": 316.19649, - "y": -2648.144686 - } - } - }, - { - "id": "6817c13d-3a78-5785-a063-c466587b932f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.19649, - "y": -2648.144686 - }, - "endPoint": { - "x": 316.336641, - "y": -2648.214713 - } - } - }, - { - "id": "2796a153-1c1e-5af1-a870-b19745386cac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.336641, - "y": -2648.214713 - }, - "endPoint": { - "x": 316.376039, - "y": -2648.341611 - } - } - }, - { - "id": "861d5cb8-e2bd-5d4c-9b33-8b69b84ac4d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.376039, - "y": -2648.341611 - }, - "endPoint": { - "x": 316.297243, - "y": -2648.446653 - } - } - }, - { - "id": "9cdcdab0-b0a0-5092-82a8-32e8dc01256f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.297243, - "y": -2648.446653 - }, - "endPoint": { - "x": 316.214035, - "y": -2648.494769 - } - } - }, - { - "id": "cda15b80-10f7-5867-82c4-de6ef19e6ac2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.214035, - "y": -2648.494769 - }, - "endPoint": { - "x": 316.043207, - "y": -2648.556043 - } - } - }, - { - "id": "d12b9dd1-e85b-5988-bccc-340fa2098f95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.043207, - "y": -2648.556043 - }, - "endPoint": { - "x": 315.754186, - "y": -2648.54729 - } - } - }, - { - "id": "953d12ef-0754-5a50-96d9-d5b1508fdbb5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.754186, - "y": -2648.54729 - }, - "endPoint": { - "x": 315.635889, - "y": -2648.363522 - } - } - }, - { - "id": "d37c1a0e-5510-50ee-977d-93e190e7ee5d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.635889, - "y": -2648.363522 - }, - "endPoint": { - "x": 315.710376, - "y": -2648.26283 - } - } - }, - { - "id": "3b6ff1ed-ae12-525b-8fe7-9789a57151c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.710376, - "y": -2648.26283 - }, - "endPoint": { - "x": 315.819849, - "y": -2648.140337 - } - } - }, - { - "id": "0edb3daf-2706-5f03-ac0f-753c8f56bb6c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.819849, - "y": -2648.140337 - }, - "endPoint": { - "x": 315.977544, - "y": -2648.12283 - } - } - } - ] - }, - { - "id": "caf0fb72-cab3-5f4f-9eab-aaf2b8ec8838", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "8bc5c847-85c4-5bbd-ab9c-0b035b819ea4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.257878, - "y": -2648.053518 - }, - "endPoint": { - "x": 317.214069, - "y": -2648.044764 - } - } - }, - { - "id": "d2c2bf79-fb76-52dc-8abf-be8e1b9e9df7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.214069, - "y": -2648.044764 - }, - "endPoint": { - "x": 317.091463, - "y": -2648.127895 - } - } - }, - { - "id": "bfc2a161-7b7e-5705-b915-67e68924534a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.091463, - "y": -2648.127895 - }, - "endPoint": { - "x": 317.030211, - "y": -2648.281108 - } - } - }, - { - "id": "21e5a3fd-817a-55af-a721-45cc50d1ece2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.030211, - "y": -2648.281108 - }, - "endPoint": { - "x": 317.07833, - "y": -2648.447368 - } - } - }, - { - "id": "d7806a18-3475-5647-bb68-1d9cb6851c09", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.07833, - "y": -2648.447368 - }, - "endPoint": { - "x": 317.275423, - "y": -2648.548061 - } - } - }, - { - "id": "ac1cce62-2b6d-5c5b-8449-87e897654bd1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.275423, - "y": -2648.548061 - }, - "endPoint": { - "x": 317.468104, - "y": -2648.574321 - } - } - }, - { - "id": "dc8fac96-0ac4-54e2-afaf-489544eeb588", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.468104, - "y": -2648.574321 - }, - "endPoint": { - "x": 317.599534, - "y": -2648.49554 - } - } - }, - { - "id": "ad0a2fa1-3d10-57be-b995-6e0f95e344d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.599534, - "y": -2648.49554 - }, - "endPoint": { - "x": 317.691462, - "y": -2648.368587 - } - } - }, - { - "id": "57f9d070-5129-5193-8f77-70054be037a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.691462, - "y": -2648.368587 - }, - "endPoint": { - "x": 317.700286, - "y": -2648.206676 - } - } - }, - { - "id": "737d3a2f-de92-5530-9a90-e88b676b3f8e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.700286, - "y": -2648.206676 - }, - "endPoint": { - "x": 317.617078, - "y": -2648.018504 - } - } - }, - { - "id": "f6791c16-5a04-52b6-baac-dd0e8bb09998", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.617078, - "y": -2648.018504 - }, - "endPoint": { - "x": 317.44625, - "y": -2647.98349 - } - } - }, - { - "id": "4810d7c5-6aba-535a-9ee4-1e234ae7d736", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.44625, - "y": -2647.98349 - }, - "endPoint": { - "x": 317.297277, - "y": -2648.00975 - } - } - }, - { - "id": "63cd1161-9455-5ab5-ac4e-d3a6a56ed59d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.297277, - "y": -2648.00975 - }, - "endPoint": { - "x": 317.257878, - "y": -2648.053518 - } - } - } - ] - }, - { - "id": "23982e25-587a-5d2c-b4d2-8f07c65eefda", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "037176f7-9a81-51ff-8d68-e87d1e75affd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.304697, - "y": -2648.075374 - }, - "endPoint": { - "x": 318.440436, - "y": -2647.965983 - } - } - }, - { - "id": "e1622423-11e6-598f-a09d-1fc93b9ed4d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.440436, - "y": -2647.965983 - }, - "endPoint": { - "x": 318.479834, - "y": -2647.887202 - } - } - }, - { - "id": "f385a5c0-6dee-5175-b3ae-cc0dbc1595d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.479834, - "y": -2647.887202 - }, - "endPoint": { - "x": 318.624396, - "y": -2647.882853 - } - } - }, - { - "id": "b175beb1-ac95-5ce9-beb1-717da1f62938", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.624396, - "y": -2647.882853 - }, - "endPoint": { - "x": 318.782091, - "y": -2647.904709 - } - } - }, - { - "id": "fed2f8ff-4c21-58a3-b5d6-5c0786b20770", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.782091, - "y": -2647.904709 - }, - "endPoint": { - "x": 318.869608, - "y": -2648.000997 - } - } - }, - { - "id": "071f632d-e5c6-590f-8d39-b1aed2aeaa92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.869608, - "y": -2648.000997 - }, - "endPoint": { - "x": 318.979184, - "y": -2648.027257 - } - } - }, - { - "id": "a41ee789-2855-5791-aa37-ab744dabaab6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.979184, - "y": -2648.027257 - }, - "endPoint": { - "x": 318.992317, - "y": -2648.162908 - } - } - }, - { - "id": "0047f264-819b-5357-ac6f-31db21fff370", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.992317, - "y": -2648.162908 - }, - "endPoint": { - "x": 319.00545, - "y": -2648.337978 - } - } - }, - { - "id": "1020ce6e-6950-59e1-b5f8-da8010ee3711", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.00545, - "y": -2648.337978 - }, - "endPoint": { - "x": 318.913418, - "y": -2648.499889 - } - } - }, - { - "id": "e64a99c7-d919-53bf-a8bd-4e75d2340594", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.913418, - "y": -2648.499889 - }, - "endPoint": { - "x": 318.803945, - "y": -2648.543656 - } - } - }, - { - "id": "87a4ef70-fd8d-543f-927e-a7ebb336691a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.803945, - "y": -2648.543656 - }, - "endPoint": { - "x": 318.541188, - "y": -2648.534903 - } - } - }, - { - "id": "b6f4e729-2f7e-5cb5-ac90-fbd766e541e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.541188, - "y": -2648.534903 - }, - "endPoint": { - "x": 318.46229, - "y": -2648.460526 - } - } - }, - { - "id": "46d1d8d4-84db-59a9-be11-38a76aca0e93", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.46229, - "y": -2648.460526 - }, - "endPoint": { - "x": 318.330963, - "y": -2648.408005 - } - } - }, - { - "id": "aa2c4eb2-946c-590e-9fc4-ead2fc8d4153", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.330963, - "y": -2648.408005 - }, - "endPoint": { - "x": 318.291565, - "y": -2648.298615 - } - } - }, - { - "id": "4ed1fd63-fbf7-5dce-b981-01e3cec66dc8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.291565, - "y": -2648.298615 - }, - "endPoint": { - "x": 318.287153, - "y": -2648.189169 - } - } - }, - { - "id": "626322ac-1d60-53a2-b3e0-5542056fed88", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.287153, - "y": -2648.189169 - }, - "endPoint": { - "x": 318.304697, - "y": -2648.075374 - } - } - } - ] - }, - { - "id": "ebf370fc-a0ca-5d1b-a282-7674a9701ea3", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "d2ebe0f6-243c-564e-ad66-232de716c127", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.258807, - "y": -2636.387471 - }, - "endPoint": { - "x": 305.396495, - "y": -2636.693181 - } - } - }, - { - "id": "a93a0774-8529-57c3-9783-e6c328c70ed2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.396495, - "y": -2636.693181 - }, - "endPoint": { - "x": 305.47129, - "y": -2636.866488 - } - } - }, - { - "id": "9ebd639b-a523-5651-9def-bbda6ff356fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.47129, - "y": -2636.866488 - }, - "endPoint": { - "x": 305.460825, - "y": -2637.302234 - } - } - }, - { - "id": "3c9a1f00-80a9-5f59-ad99-fccf87bea029", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.460825, - "y": -2637.302234 - }, - "endPoint": { - "x": 305.423992, - "y": -2637.66977 - } - } - }, - { - "id": "42bd5362-df64-5881-932a-b88d78294d53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.423992, - "y": -2637.66977 - }, - "endPoint": { - "x": 305.529053, - "y": -2637.906003 - } - } - }, - { - "id": "0d21093a-a49d-5e00-a1c1-aa86591eaad4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.529053, - "y": -2637.906003 - }, - "endPoint": { - "x": 305.902104, - "y": -2637.963754 - } - } - }, - { - "id": "31f2b80d-10fc-5e0d-8a21-84a1af671fc3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.902104, - "y": -2637.963754 - }, - "endPoint": { - "x": 306.322452, - "y": -2638.021504 - } - } - }, - { - "id": "097db11d-4e58-5fb0-84d5-0dca355f6950", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.322452, - "y": -2638.021504 - }, - "endPoint": { - "x": 306.427514, - "y": -2638.095 - } - } - }, - { - "id": "27bd73b8-e5d4-5ad6-92f6-a92b2196b7b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.427514, - "y": -2638.095 - }, - "endPoint": { - "x": 306.627172, - "y": -2638.158036 - } - } - }, - { - "id": "5f413fd5-131a-5dfd-b067-859365080aab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.627172, - "y": -2638.158036 - }, - "endPoint": { - "x": 306.727001, - "y": -2638.03202 - } - } - }, - { - "id": "61dbc22f-ee3c-5de1-9471-ea4722bdcf12", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.727001, - "y": -2638.03202 - }, - "endPoint": { - "x": 306.821597, - "y": -2637.690745 - } - } - }, - { - "id": "5a59c4b3-6d0c-5805-9f13-c5fb8ba2f9e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.821597, - "y": -2637.690745 - }, - "endPoint": { - "x": 306.984524, - "y": -2637.029226 - } - } - }, - { - "id": "cea99840-30f4-5fe5-be16-994b293a3a0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.984524, - "y": -2637.029226 - }, - "endPoint": { - "x": 307.546665, - "y": -2636.719496 - } - } - }, - { - "id": "331a6d74-ace5-5418-b679-06aeb3d5b1dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.546665, - "y": -2636.719496 - }, - "endPoint": { - "x": 308.100803, - "y": -2636.564907 - } - } - }, - { - "id": "74599eef-5ec4-549b-9ba5-6b2c47deefcb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.100803, - "y": -2636.564907 - }, - "endPoint": { - "x": 308.557985, - "y": -2636.517671 - } - } - }, - { - "id": "33317448-8d70-5903-9513-7cb1aff4de10", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.557985, - "y": -2636.517671 - }, - "endPoint": { - "x": 309.177991, - "y": -2636.470436 - } - } - }, - { - "id": "7f4ea51a-12bf-5599-bb8f-3f4d075abe8c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.177991, - "y": -2636.470436 - }, - "endPoint": { - "x": 309.897724, - "y": -2636.512441 - } - } - }, - { - "id": "077ff552-1c6f-56bb-985f-aab85b37f4ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.897724, - "y": -2636.512441 - }, - "endPoint": { - "x": 310.559797, - "y": -2636.774935 - } - } - }, - { - "id": "e3900a1e-e358-53a8-b987-f1cdec75ed1d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.559797, - "y": -2636.774935 - }, - "endPoint": { - "x": 310.848818, - "y": -2637.105695 - } - } - }, - { - "id": "882bd0eb-eefa-5671-b023-523a998bf1e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.848818, - "y": -2637.105695 - }, - "endPoint": { - "x": 310.974913, - "y": -2637.284177 - } - } - }, - { - "id": "5ea73438-29bb-59f7-8d84-fc2353e4d024", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.974913, - "y": -2637.284177 - }, - "endPoint": { - "x": 310.947621, - "y": -2638.029212 - } - } - }, - { - "id": "d19781b3-bdaf-5d0e-85ec-13fe51bf329d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.947621, - "y": -2638.029212 - }, - "endPoint": { - "x": 311.005385, - "y": -2638.412327 - } - } - }, - { - "id": "1ddb7925-92a7-5fdd-9768-028432bd4838", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.005385, - "y": -2638.412327 - }, - "endPoint": { - "x": 310.955829, - "y": -2639.415286 - } - } - }, - { - "id": "ee22c836-e09a-51ef-a0fd-1f57d7ad68c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.955829, - "y": -2639.415286 - }, - "endPoint": { - "x": 310.980556, - "y": -2639.913793 - } - } - }, - { - "id": "caa488f0-3de0-5bf6-8df6-0d76e5309e98", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.980556, - "y": -2639.913793 - }, - "endPoint": { - "x": 311.04232, - "y": -2640.696869 - } - } - }, - { - "id": "8a382d9f-2a12-5a62-a473-1b916695d526", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.04232, - "y": -2640.696869 - }, - "endPoint": { - "x": 311.108599, - "y": -2641.284287 - } - } - }, - { - "id": "c03f6e9c-49b2-5153-b925-4424b88b0db0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.108599, - "y": -2641.284287 - }, - "endPoint": { - "x": 311.125118, - "y": -2642.1778 - } - } - }, - { - "id": "3381f3e6-f948-5d96-8618-6f77f60853c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.125118, - "y": -2642.1778 - }, - "endPoint": { - "x": 311.166568, - "y": -2642.665902 - } - } - }, - { - "id": "c959741e-1f51-50bf-8950-ddac0c75543e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.166568, - "y": -2642.665902 - }, - "endPoint": { - "x": 311.125118, - "y": -2643.336065 - } - } - }, - { - "id": "14ba5e98-3712-54ff-8ca1-77850bc515ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.125118, - "y": -2643.336065 - }, - "endPoint": { - "x": 311.141739, - "y": -2643.617331 - } - } - }, - { - "id": "52286d1c-7f18-5cd6-9ca0-7dee13a76432", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.141739, - "y": -2643.617331 - }, - "endPoint": { - "x": 311.025802, - "y": -2643.956569 - } - } - }, - { - "id": "5e0ac9e2-7410-5a2a-b933-d45694d6c6ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.025802, - "y": -2643.956569 - }, - "endPoint": { - "x": 310.909352, - "y": -2644.30891 - } - } - }, - { - "id": "bb97c91d-d258-5b93-b61a-cc05b37e988e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.909352, - "y": -2644.30891 - }, - "endPoint": { - "x": 310.329769, - "y": -2644.780495 - } - } - }, - { - "id": "6d514794-1f55-53d2-83c7-1d9c3066a283", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.329769, - "y": -2644.780495 - }, - "endPoint": { - "x": 309.741876, - "y": -2644.970759 - } - } - }, - { - "id": "af3eff12-dc0b-595f-9c12-21b17505c6a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.741876, - "y": -2644.970759 - }, - "endPoint": { - "x": 309.187123, - "y": -2644.937672 - } - } - }, - { - "id": "7ebb0287-08c5-5af7-b671-d42f2a08a610", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.187123, - "y": -2644.937672 - }, - "endPoint": { - "x": 308.731788, - "y": -2645.028675 - } - } - }, - { - "id": "955d2411-52dd-5c89-9e93-1bc579685774", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.731788, - "y": -2645.028675 - }, - "endPoint": { - "x": 308.110755, - "y": -2644.863185 - } - } - }, - { - "id": "66fb303a-ac57-504d-87c0-2017dffebc13", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.110755, - "y": -2644.863185 - }, - "endPoint": { - "x": 307.539483, - "y": -2644.69775 - } - } - }, - { - "id": "569b00e7-aa12-5dc3-8749-3b03a5775026", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.539483, - "y": -2644.69775 - }, - "endPoint": { - "x": 307.059217, - "y": -2644.300596 - } - } - }, - { - "id": "4ac3f425-6928-54f7-bd08-f41204a3009b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.059217, - "y": -2644.300596 - }, - "endPoint": { - "x": 306.785995, - "y": -2643.870411 - } - } - }, - { - "id": "3a8166e2-380a-5d7b-bdd3-7f31508f80ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.785995, - "y": -2643.870411 - }, - "endPoint": { - "x": 306.759012, - "y": -2643.271432 - } - } - }, - { - "id": "4b6b8c3b-5c34-5c70-abd7-3e4799a60d89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.759012, - "y": -2643.271432 - }, - "endPoint": { - "x": 306.734183, - "y": -2642.568238 - } - } - }, - { - "id": "108466d3-7b5b-5c34-9277-9e941f0f0cbb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.734183, - "y": -2642.568238 - }, - "endPoint": { - "x": 306.767322, - "y": -2642.270345 - } - } - }, - { - "id": "f7d5526a-09ca-5a9f-bba6-f34f67a44eed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.767322, - "y": -2642.270345 - }, - "endPoint": { - "x": 306.709354, - "y": -2642.013907 - } - } - }, - { - "id": "e1ad5b0d-9962-5ce1-a4c5-718cab168925", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.709354, - "y": -2642.013907 - }, - "endPoint": { - "x": 306.568588, - "y": -2642.005649 - } - } - }, - { - "id": "7ecfad38-38c6-5b51-803f-a2d92898cb71", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.568588, - "y": -2642.005649 - }, - "endPoint": { - "x": 306.419511, - "y": -2642.162826 - } - } - }, - { - "id": "86a0c24f-773a-528d-925e-29047f2f2704", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.419511, - "y": -2642.162826 - }, - "endPoint": { - "x": 306.378164, - "y": -2642.262087 - } - } - }, - { - "id": "157edfcc-7008-50c4-8111-e58675b352f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.378164, - "y": -2642.262087 - }, - "endPoint": { - "x": 306.245708, - "y": -2642.286916 - } - } - }, - { - "id": "6c674138-bd7f-5d91-9f0f-ffda1e4c03f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.245708, - "y": -2642.286916 - }, - "endPoint": { - "x": 306.088321, - "y": -2642.171084 - } - } - }, - { - "id": "d5714e0d-886a-58d0-bbbf-76d97e79372f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.088321, - "y": -2642.171084 - }, - "endPoint": { - "x": 305.931037, - "y": -2642.071823 - } - } - }, - { - "id": "53b1eec4-b45a-5458-8f9f-96c584f9f921", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.931037, - "y": -2642.071823 - }, - "endPoint": { - "x": 305.757131, - "y": -2642.088339 - } - } - }, - { - "id": "13575949-7701-5212-aee7-34b2599c0a25", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.757131, - "y": -2642.088339 - }, - "endPoint": { - "x": 305.599847, - "y": -2642.129739 - } - } - }, - { - "id": "f5aec8d8-a661-5e6f-8685-a008327bd39e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.599847, - "y": -2642.129739 - }, - "endPoint": { - "x": 305.583328, - "y": -2642.303487 - } - } - }, - { - "id": "c75ff3c2-6520-546b-b2ff-f0030b22de58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.583328, - "y": -2642.303487 - }, - "endPoint": { - "x": 305.707473, - "y": -2642.609583 - } - } - }, - { - "id": "445fde6f-38ab-56ad-af56-957a050cd6f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.707473, - "y": -2642.609583 - }, - "endPoint": { - "x": 305.78196, - "y": -2642.841246 - } - } - }, - { - "id": "43b850c1-a166-5967-bb50-28302913350e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.78196, - "y": -2642.841246 - }, - "endPoint": { - "x": 305.78196, - "y": -2643.122513 - } - } - }, - { - "id": "fef79331-99d9-5abd-9e6c-73157205f7ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.78196, - "y": -2643.122513 - }, - "endPoint": { - "x": 305.757131, - "y": -2643.561012 - } - } - }, - { - "id": "1e28566c-2441-5a3b-b654-245b27d2182c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.757131, - "y": -2643.561012 - }, - "endPoint": { - "x": 305.85655, - "y": -2643.726502 - } - } - }, - { - "id": "69b597a9-f927-568c-8922-747eab966665", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.85655, - "y": -2643.726502 - }, - "endPoint": { - "x": 305.85655, - "y": -2643.916766 - } - } - }, - { - "id": "dc34b083-0c0c-5f0c-b8c6-39921c765e78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.85655, - "y": -2643.916766 - }, - "endPoint": { - "x": 305.839929, - "y": -2644.140171 - } - } - }, - { - "id": "ef8cf0df-03ee-5aab-bb0c-a911ff0176cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.839929, - "y": -2644.140171 - }, - "endPoint": { - "x": 305.839929, - "y": -2644.37178 - } - } - }, - { - "id": "2151086d-d38f-59d7-9a3d-667bfb58ecfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.839929, - "y": -2644.37178 - }, - "endPoint": { - "x": 305.666126, - "y": -2644.669618 - } - } - }, - { - "id": "b3007e57-382d-54ee-ae11-489ca7edfa20", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.666126, - "y": -2644.669618 - }, - "endPoint": { - "x": 305.425941, - "y": -2644.893024 - } - } - }, - { - "id": "5607cfa5-5251-5b39-96af-c14093c05c07", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.425941, - "y": -2644.893024 - }, - "endPoint": { - "x": 305.227207, - "y": -2645.050201 - } - } - }, - { - "id": "4f59e2a1-f420-592f-ac9c-f5a264099a4f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.227207, - "y": -2645.050201 - }, - "endPoint": { - "x": 304.86298, - "y": -2645.058514 - } - } - }, - { - "id": "3060a95c-ec4f-5ea5-ad78-e54b983f85a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.86298, - "y": -2645.058514 - }, - "endPoint": { - "x": 304.664245, - "y": -2645.091601 - } - } - }, - { - "id": "8b02027c-c405-5cbc-a292-1f34d03e59c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.664245, - "y": -2645.091601 - }, - "endPoint": { - "x": 304.506858, - "y": -2644.926111 - } - } - }, - { - "id": "b076ebc8-9cb4-52ea-ba3a-9ba25028752e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.506858, - "y": -2644.926111 - }, - "endPoint": { - "x": 304.283397, - "y": -2644.595186 - } - } - }, - { - "id": "f2781efe-7de7-5d79-a3f2-43b8095756b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.283397, - "y": -2644.595186 - }, - "endPoint": { - "x": 304.283397, - "y": -2644.073942 - } - } - }, - { - "id": "8ae36f9b-3bad-5035-aeec-04468aa55e9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.283397, - "y": -2644.073942 - }, - "endPoint": { - "x": 304.308226, - "y": -2643.354177 - } - } - }, - { - "id": "1f0a444a-88f8-55e0-9940-85c18f89f31e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.308226, - "y": -2643.354177 - }, - "endPoint": { - "x": 304.308226, - "y": -2642.866075 - } - } - }, - { - "id": "f62ef776-6ebe-5450-8e66-810e1c0eb229", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.308226, - "y": -2642.866075 - }, - "endPoint": { - "x": 304.399231, - "y": -2642.634412 - } - } - }, - { - "id": "c18116fa-98df-5e16-8be5-724dc0e6a8ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.399231, - "y": -2642.634412 - }, - "endPoint": { - "x": 304.366195, - "y": -2642.402748 - } - } - }, - { - "id": "820ed86a-48b0-51ad-a729-486057bc0879", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.366195, - "y": -2642.402748 - }, - "endPoint": { - "x": 304.2006, - "y": -2642.386177 - } - } - }, - { - "id": "13888200-2811-52f2-98d2-c0fa3bc3c4df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.2006, - "y": -2642.386177 - }, - "endPoint": { - "x": 303.968726, - "y": -2642.667499 - } - } - }, - { - "id": "d524ba5f-6b15-5e17-8123-f5307d41f1fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.968726, - "y": -2642.667499 - }, - "endPoint": { - "x": 303.79482, - "y": -2642.890849 - } - } - }, - { - "id": "aaf8d7b7-aa71-5633-bd18-8da7c284a4fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.79482, - "y": -2642.890849 - }, - "endPoint": { - "x": 303.571256, - "y": -2642.965336 - } - } - }, - { - "id": "5d927af8-0c29-5a9d-bc25-eaaf5190db74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.571256, - "y": -2642.965336 - }, - "endPoint": { - "x": 303.447112, - "y": -2642.998423 - } - } - }, - { - "id": "0e2dcff9-f84a-5fc8-a326-da8660c5cef9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.447112, - "y": -2642.998423 - }, - "endPoint": { - "x": 303.215237, - "y": -2643.1556 - } - } - }, - { - "id": "a2dce8bb-67a2-5e9e-973e-1e4c9e41f13d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.215237, - "y": -2643.1556 - }, - "endPoint": { - "x": 302.958637, - "y": -2643.07291 - } - } - }, - { - "id": "5f052157-d455-5d2f-b154-bde4b2f5bcd3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.958637, - "y": -2643.07291 - }, - "endPoint": { - "x": 302.677105, - "y": -2642.882591 - } - } - }, - { - "id": "f413202a-4fb5-541a-99e4-5fe4c168dc92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.677105, - "y": -2642.882591 - }, - "endPoint": { - "x": 302.412091, - "y": -2642.617841 - } - } - }, - { - "id": "eec2bfca-c403-51c9-8d15-7040d50e2817", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.412091, - "y": -2642.617841 - }, - "endPoint": { - "x": 302.312775, - "y": -2642.286916 - } - } - }, - { - "id": "9938ad38-dd33-5350-b154-bbdd399a3218", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.312775, - "y": -2642.286916 - }, - "endPoint": { - "x": 302.370744, - "y": -2641.881504 - } - } - }, - { - "id": "262f773c-1248-5855-bea7-25ec692196fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.370744, - "y": -2641.881504 - }, - "endPoint": { - "x": 302.528028, - "y": -2641.674669 - } - } - }, - { - "id": "7dab4e50-4bcd-57cd-9f64-455391bafc0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.528028, - "y": -2641.674669 - }, - "endPoint": { - "x": 302.569479, - "y": -2641.484405 - } - } - }, - { - "id": "a9637813-b6a5-570b-9a1a-44f4feefd6ff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.569479, - "y": -2641.484405 - }, - "endPoint": { - "x": 302.850908, - "y": -2641.434747 - } - } - }, - { - "id": "b6b82fec-1189-5777-a460-d5290f04b1cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.850908, - "y": -2641.434747 - }, - "endPoint": { - "x": 303.594444, - "y": -2640.719166 - } - } - }, - { - "id": "267dc29a-7d70-5675-81ee-38e1ba3dcae9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.594444, - "y": -2640.719166 - }, - "endPoint": { - "x": 303.960415, - "y": -2640.387801 - } - } - }, - { - "id": "c852edc6-8f12-5752-9140-2d14a6ba5cf2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.960415, - "y": -2640.387801 - }, - "endPoint": { - "x": 304.069991, - "y": -2640.253911 - } - } - }, - { - "id": "eeff088e-9b1b-55a4-8599-6b3fc0919399", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.069991, - "y": -2640.253911 - }, - "endPoint": { - "x": 304.090305, - "y": -2640.193023 - } - } - }, - { - "id": "a8b227d4-d764-53e1-b789-c5082496926b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.090305, - "y": -2640.193023 - }, - "endPoint": { - "x": 304.005046, - "y": -2639.986078 - } - } - }, - { - "id": "faa3cb8b-f60c-5a35-9637-1431261789f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.005046, - "y": -2639.986078 - }, - "endPoint": { - "x": 303.879156, - "y": -2639.835948 - } - } - }, - { - "id": "722fcbc5-ecb0-5167-b5fe-a895dbbc5350", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.879156, - "y": -2639.835948 - }, - "endPoint": { - "x": 303.408021, - "y": -2639.811559 - } - } - }, - { - "id": "d1f1000c-ca95-5442-a2f2-8dff4b73d487", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.408021, - "y": -2639.811559 - }, - "endPoint": { - "x": 303.119718, - "y": -2639.762892 - } - } - }, - { - "id": "aaa464c0-1a0d-5431-a5b9-72f4d4d96b5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.119718, - "y": -2639.762892 - }, - "endPoint": { - "x": 302.993829, - "y": -2639.730411 - } - } - }, - { - "id": "a5403421-5697-5991-aedf-a710bd779728", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.993829, - "y": -2639.730411 - }, - "endPoint": { - "x": 302.773753, - "y": -2639.550827 - } - } - }, - { - "id": "c1d04c1c-7a28-5d62-bd9c-62fe066b290b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.773753, - "y": -2639.550827 - }, - "endPoint": { - "x": 302.65597, - "y": -2639.274845 - } - } - }, - { - "id": "11abf109-16e9-5253-8cd9-ba9b87cc9299", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.65597, - "y": -2639.274845 - }, - "endPoint": { - "x": 302.50166, - "y": -2639.189678 - } - } - }, - { - "id": "1dfcee18-7400-5981-9a83-c117c4f4a1a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.50166, - "y": -2639.189678 - }, - "endPoint": { - "x": 303.079601, - "y": -2638.225587 - } - } - }, - { - "id": "861aa5e7-8c63-5b0c-a4c6-4be5e37ce14f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.079601, - "y": -2638.225587 - }, - "endPoint": { - "x": 303.650566, - "y": -2637.720308 - } - } - }, - { - "id": "c30cc61b-944f-56d1-9286-6242922201d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.650566, - "y": -2637.720308 - }, - "endPoint": { - "x": 304.311201, - "y": -2637.141699 - } - } - }, - { - "id": "d6ba63de-cfb5-5cea-b6d4-85f2ff5ae71b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.311201, - "y": -2637.141699 - }, - "endPoint": { - "x": 304.910791, - "y": -2636.530829 - } - } - }, - { - "id": "42602182-0d0c-5b45-8b0f-81595d757b0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.910791, - "y": -2636.530829 - }, - "endPoint": { - "x": 305.173547, - "y": -2636.336822 - } - } - }, - { - "id": "0e96c76a-a54a-5561-806d-9e2acc1b42ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.173547, - "y": -2636.336822 - }, - "endPoint": { - "x": 305.220332, - "y": -2636.342877 - } - } - }, - { - "id": "01f69af8-529e-55a7-a5dc-2afb0ac7d971", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.220332, - "y": -2636.342877 - }, - "endPoint": { - "x": 305.258807, - "y": -2636.387471 - } - } - } - ] - }, - { - "id": "ca59f4f2-4ca0-520c-8ef8-6fa55e328eaa", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "2e4380e5-28f2-5112-bae0-7eb10b53dfd5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.71886, - "y": -2638.228284 - }, - "endPoint": { - "x": 308.533771, - "y": -2638.189362 - } - } - }, - { - "id": "e354b401-1da4-5b94-9796-aece57e0c9f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.533771, - "y": -2638.189362 - }, - "endPoint": { - "x": 308.353505, - "y": -2638.247773 - } - } - }, - { - "id": "1ab10fc1-965f-5d0d-bfef-14e962991b2c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.353505, - "y": -2638.247773 - }, - "endPoint": { - "x": 308.23172, - "y": -2638.413263 - } - } - }, - { - "id": "85882b6e-547d-5c02-acb6-84f2ccca3723", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.23172, - "y": -2638.413263 - }, - "endPoint": { - "x": 308.215304, - "y": -2638.467215 - } - } - }, - { - "id": "1f764997-82a4-5bdd-93a3-036ef6156867", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.215304, - "y": -2638.467215 - }, - "endPoint": { - "x": 308.220126, - "y": -2638.538839 - } - } - }, - { - "id": "36f67b00-c534-52ef-b500-e1627958c0b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.220126, - "y": -2638.538839 - }, - "endPoint": { - "x": 308.38254, - "y": -2638.610519 - } - } - }, - { - "id": "d5fd084a-1a65-5ae1-8b93-32e6ac7f3c58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.38254, - "y": -2638.610519 - }, - "endPoint": { - "x": 308.647862, - "y": -2638.691667 - } - } - }, - { - "id": "fa7ea159-3536-5e13-b7c8-4ad8ded3256a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.647862, - "y": -2638.691667 - }, - "endPoint": { - "x": 308.853368, - "y": -2638.674986 - } - } - }, - { - "id": "e615fce2-6f19-55f5-9830-1f45a6a7dc4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.853368, - "y": -2638.674986 - }, - "endPoint": { - "x": 309.152034, - "y": -2638.660617 - } - } - }, - { - "id": "c7560587-2f25-5396-b324-ec76f407625a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.152034, - "y": -2638.660617 - }, - "endPoint": { - "x": 309.300187, - "y": -2638.64867 - } - } - }, - { - "id": "5e3b8a25-1b13-5729-bbd5-3544ae762f0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.300187, - "y": -2638.64867 - }, - "endPoint": { - "x": 309.405864, - "y": -2638.559319 - } - } - }, - { - "id": "a096e131-49e9-590b-af40-d0dd6cc8de49", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.405864, - "y": -2638.559319 - }, - "endPoint": { - "x": 309.55689, - "y": -2638.510652 - } - } - }, - { - "id": "62cb750d-2f0e-5765-ad94-14a966fec6d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.55689, - "y": -2638.510652 - }, - "endPoint": { - "x": 309.459421, - "y": -2638.359751 - } - } - }, - { - "id": "c48a432e-841f-5733-83d3-ee13aa6f7ba1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.459421, - "y": -2638.359751 - }, - "endPoint": { - "x": 309.308395, - "y": -2638.194206 - } - } - }, - { - "id": "22ffed2d-a015-50dc-9f9f-2f092b928429", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.308395, - "y": -2638.194206 - }, - "endPoint": { - "x": 309.069647, - "y": -2638.174773 - } - } - }, - { - "id": "a79b62c7-8ce2-545f-85d7-d51d92585403", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.069647, - "y": -2638.174773 - }, - "endPoint": { - "x": 308.71886, - "y": -2638.228284 - } - } - } - ] - }, - { - "id": "279ba308-c4dd-513e-9cbf-07c74cfbae43", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "b2d08cbd-3865-5986-9764-33605cd7fb2e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.341021, - "y": -2640.409877 - }, - "endPoint": { - "x": 309.483121, - "y": -2640.360605 - } - } - }, - { - "id": "50abf1a7-2523-5062-8f6e-e4a73ec9260b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.483121, - "y": -2640.360605 - }, - "endPoint": { - "x": 309.532061, - "y": -2640.259031 - } - } - }, - { - "id": "706c557c-cf97-5eec-880b-ebbea2d1c190", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.532061, - "y": -2640.259031 - }, - "endPoint": { - "x": 309.528265, - "y": -2640.13863 - } - } - }, - { - "id": "e0335197-2ee2-5d8e-a5da-073f9dfc24bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.528265, - "y": -2640.13863 - }, - "endPoint": { - "x": 309.539653, - "y": -2640.025771 - } - } - }, - { - "id": "7dde384f-4155-571f-a0ea-56c3e63c1b6c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.539653, - "y": -2640.025771 - }, - "endPoint": { - "x": 309.407813, - "y": -2639.98817 - } - } - }, - { - "id": "46311623-5368-501e-9b9b-4979e367a670", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.407813, - "y": -2639.98817 - }, - "endPoint": { - "x": 309.253402, - "y": -2639.894084 - } - } - }, - { - "id": "1f5681e9-e671-596f-9724-71808b39946c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.253402, - "y": -2639.894084 - }, - "endPoint": { - "x": 309.076521, - "y": -2639.864025 - } - } - }, - { - "id": "87afc4df-a20d-52fa-a3bb-843f81c0941c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.076521, - "y": -2639.864025 - }, - "endPoint": { - "x": 308.790269, - "y": -2639.897882 - } - } - }, - { - "id": "ae451d55-8808-55e1-8909-16dd53506411", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.790269, - "y": -2639.897882 - }, - "endPoint": { - "x": 308.669818, - "y": -2639.965598 - } - } - }, - { - "id": "db84b7c2-4993-5f93-a585-21f754480770", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.669818, - "y": -2639.965598 - }, - "endPoint": { - "x": 308.54557, - "y": -2640.010741 - } - } - }, - { - "id": "3f20cab1-185b-597d-a517-368cc8a7e9cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.54557, - "y": -2640.010741 - }, - "endPoint": { - "x": 308.323443, - "y": -2640.003199 - } - } - }, - { - "id": "692b5d23-a88b-5329-a70f-71e67ae3c815", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.323443, - "y": -2640.003199 - }, - "endPoint": { - "x": 308.314107, - "y": -2640.082971 - } - } - }, - { - "id": "329f9300-8cfa-539b-b5f2-eef79b3f4bcf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.314107, - "y": -2640.082971 - }, - "endPoint": { - "x": 308.2941, - "y": -2640.186581 - } - } - }, - { - "id": "cda7992c-2640-5657-90a1-0eb211590500", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.2941, - "y": -2640.186581 - }, - "endPoint": { - "x": 308.310516, - "y": -2640.33016 - } - } - }, - { - "id": "b7d68bd4-ba2a-5268-aaa0-aecb85c6fc2a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.310516, - "y": -2640.33016 - }, - "endPoint": { - "x": 308.359558, - "y": -2640.368312 - } - } - }, - { - "id": "43698485-10fe-5935-af4e-700c65d915cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.359558, - "y": -2640.368312 - }, - "endPoint": { - "x": 308.552444, - "y": -2640.388296 - } - } - }, - { - "id": "aa0b679e-e881-5352-9e5e-1a581cd99fdf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.552444, - "y": -2640.388296 - }, - "endPoint": { - "x": 308.857985, - "y": -2640.399197 - } - } - }, - { - "id": "fcf11ba3-8251-5cb1-ab7c-cb51b5cbf9d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.857985, - "y": -2640.399197 - }, - "endPoint": { - "x": 309.341021, - "y": -2640.409877 - } - } - } - ] - }, - { - "id": "6731ff8a-cb08-5b9b-a7c8-8694fc972480", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "ce272e2b-ca17-56c3-a546-4fdc8a1fee0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.851624, - "y": -2641.824579 - }, - "endPoint": { - "x": 308.673922, - "y": -2641.864658 - } - } - }, - { - "id": "6c87e722-5cf7-53a9-a243-753f3979ade2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.673922, - "y": -2641.864658 - }, - "endPoint": { - "x": 308.541979, - "y": -2641.973498 - } - } - }, - { - "id": "153ad009-f0d7-58ae-a05d-60452e02d53e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.541979, - "y": -2641.973498 - }, - "endPoint": { - "x": 308.398751, - "y": -2641.9964 - } - } - }, - { - "id": "2b2e8953-c391-5a20-9a45-f2fe887f3cea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.398751, - "y": -2641.9964 - }, - "endPoint": { - "x": 308.384387, - "y": -2642.082338 - } - } - }, - { - "id": "41605313-bfe3-5597-b804-fdd1a0b23b0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.384387, - "y": -2642.082338 - }, - "endPoint": { - "x": 308.458874, - "y": -2642.196904 - } - } - }, - { - "id": "6651bf70-0a95-5dc0-87b2-1bff62517987", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.458874, - "y": -2642.196904 - }, - "endPoint": { - "x": 308.63083, - "y": -2642.320058 - } - } - }, - { - "id": "e2087ff4-6f20-54a6-b94e-6ebe8628be74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.63083, - "y": -2642.320058 - }, - "endPoint": { - "x": 308.745536, - "y": -2642.388764 - } - } - }, - { - "id": "3a5c6208-11f9-535c-937a-28d810930f51", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.745536, - "y": -2642.388764 - }, - "endPoint": { - "x": 308.957608, - "y": -2642.460388 - } - } - }, - { - "id": "040654b8-842b-5bfb-b07b-8419a5f1d2a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.957608, - "y": -2642.460388 - }, - "endPoint": { - "x": 309.158292, - "y": -2642.471839 - } - } - }, - { - "id": "afe97f92-467e-5af7-a358-eefefce9e816", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.158292, - "y": -2642.471839 - }, - "endPoint": { - "x": 309.255762, - "y": -2642.405941 - } - } - }, - { - "id": "429ba168-83c0-5e86-b88c-feced79bcf4b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.255762, - "y": -2642.405941 - }, - "endPoint": { - "x": 309.333121, - "y": -2642.351548 - } - } - }, - { - "id": "6c9b79ba-a3a8-5352-baaf-ac8c1ca0f017", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.333121, - "y": -2642.351548 - }, - "endPoint": { - "x": 309.50795, - "y": -2642.302881 - } - } - }, - { - "id": "aa58f5b3-5e1a-50d4-aa70-752fe565f920", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.50795, - "y": -2642.302881 - }, - "endPoint": { - "x": 309.631172, - "y": -2642.136731 - } - } - }, - { - "id": "5f060744-6393-569b-a54f-a678c93b8785", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.631172, - "y": -2642.136731 - }, - "endPoint": { - "x": 309.571049, - "y": -2642.065162 - } - } - }, - { - "id": "44b44504-9ac7-5ef8-ae01-bf2ba0321903", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.571049, - "y": -2642.065162 - }, - "endPoint": { - "x": 309.50795, - "y": -2641.993537 - } - } - }, - { - "id": "6ba80211-39bc-51d5-ad5b-7f91e71f9ce4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.50795, - "y": -2641.993537 - }, - "endPoint": { - "x": 309.410481, - "y": -2641.91905 - } - } - }, - { - "id": "49d54f2e-7b88-51ca-a413-877b78f7ba3e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.410481, - "y": -2641.91905 - }, - "endPoint": { - "x": 309.301623, - "y": -2641.850344 - } - } - }, - { - "id": "616558da-0775-55a7-a317-33ff074a653c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.301623, - "y": -2641.850344 - }, - "endPoint": { - "x": 309.060823, - "y": -2641.818854 - } - } - }, - { - "id": "8c8b791c-bee0-537e-988d-f3bb92868620", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.060823, - "y": -2641.818854 - }, - "endPoint": { - "x": 308.851624, - "y": -2641.824579 - } - } - } - ] - }, - { - "id": "c1e9e397-341d-5157-9da4-ae393e5dac8c", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "24adee2e-9f6d-5bca-95b4-3706363fece1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.034251, - "y": -2639.65774 - }, - "endPoint": { - "x": 305.866091, - "y": -2639.529246 - } - } - }, - { - "id": "b6d92f65-b314-5526-8de8-8b9748fa80c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.866091, - "y": -2639.529246 - }, - "endPoint": { - "x": 305.67813, - "y": -2639.55892 - } - } - }, - { - "id": "67f0513f-4baf-50c2-a51c-7da99d1d6131", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.67813, - "y": -2639.55892 - }, - "endPoint": { - "x": 305.648479, - "y": -2639.66765 - } - } - }, - { - "id": "0ec0f2a0-d9ef-59b4-a7fb-b59b7826e1b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.648479, - "y": -2639.66765 - }, - "endPoint": { - "x": 305.650838, - "y": -2639.724245 - } - } - }, - { - "id": "2a874ee4-1a65-5263-b5e6-88d184dde653", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.650838, - "y": -2639.724245 - }, - "endPoint": { - "x": 305.701215, - "y": -2639.915665 - } - } - }, - { - "id": "14bf3ccf-4f1f-57a5-bb6b-a46fa4736c1b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.701215, - "y": -2639.915665 - }, - "endPoint": { - "x": 306.023889, - "y": -2640.157513 - } - } - }, - { - "id": "a690c9a9-38cd-5c26-944c-94617702b87f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.023889, - "y": -2640.157513 - }, - "endPoint": { - "x": 306.245811, - "y": -2640.308634 - } - } - }, - { - "id": "a686a6c6-142e-5ed8-b8bf-6e5ee7e28f6c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.245811, - "y": -2640.308634 - }, - "endPoint": { - "x": 306.487739, - "y": -2640.238111 - } - } - }, - { - "id": "614606c4-abe9-5476-85f9-2253f7eb63bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.487739, - "y": -2640.238111 - }, - "endPoint": { - "x": 306.659183, - "y": -2640.217962 - } - } - }, - { - "id": "86335645-0a2c-5712-b9b2-7d50a078e70e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.659183, - "y": -2640.217962 - }, - "endPoint": { - "x": 306.66934, - "y": -2639.814917 - } - } - }, - { - "id": "80621cbd-d1b0-575f-a43d-87327b3d1587", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.66934, - "y": -2639.814917 - }, - "endPoint": { - "x": 306.66934, - "y": -2639.583143 - } - } - }, - { - "id": "a26e1636-b66e-5b3d-a639-553214259a07", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.66934, - "y": -2639.583143 - }, - "endPoint": { - "x": 306.487739, - "y": -2639.593218 - } - } - }, - { - "id": "843b285a-48ff-53f5-9d68-ae1c1c874f50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.487739, - "y": -2639.593218 - }, - "endPoint": { - "x": 306.360722, - "y": -2639.682459 - } - } - }, - { - "id": "f726a3d2-9782-5dce-9ca2-5997a1136151", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.360722, - "y": -2639.682459 - }, - "endPoint": { - "x": 306.034251, - "y": -2639.65774 - } - } - } - ] - }, - { - "id": "81c5cf0d-6f10-5219-bc69-37ee0dd3fc95", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "d6ea388d-af5a-5043-a2da-d266ee72f59f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.483124, - "y": -2637.875779 - }, - "endPoint": { - "x": 303.488869, - "y": -2637.904682 - } - } - }, - { - "id": "490c0b84-249b-5be6-b1f2-ac8f2fa8f206", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.488869, - "y": -2637.904682 - }, - "endPoint": { - "x": 303.463835, - "y": -2638.075291 - } - } - }, - { - "id": "fda88f66-c416-56af-b3d7-b805532af447", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.463835, - "y": -2638.075291 - }, - "endPoint": { - "x": 303.589314, - "y": -2638.175653 - } - } - }, - { - "id": "b6a5f2e3-ad8f-5e47-b359-62585ee27e1a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.589314, - "y": -2638.175653 - }, - "endPoint": { - "x": 303.991092, - "y": -2638.065272 - } - } - }, - { - "id": "f7452327-338b-52ba-bf17-9dd6c1f3aa4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.991092, - "y": -2638.065272 - }, - "endPoint": { - "x": 304.121598, - "y": -2637.924776 - } - } - }, - { - "id": "f3dee7ea-7c9e-51b8-9534-222b5ff1ce3b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.121598, - "y": -2637.924776 - }, - "endPoint": { - "x": 304.151762, - "y": -2637.643784 - } - } - }, - { - "id": "eb2f5255-6f9d-555c-84bc-6a2e2c42d3de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.151762, - "y": -2637.643784 - }, - "endPoint": { - "x": 303.991092, - "y": -2637.483249 - } - } - }, - { - "id": "5f223b9c-d6af-5dd4-9ae0-5345121259db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.991092, - "y": -2637.483249 - }, - "endPoint": { - "x": 303.980884, - "y": -2637.431004 - } - } - }, - { - "id": "aadfd50a-010a-5603-858a-e6c24b59a0df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.980884, - "y": -2637.431004 - }, - "endPoint": { - "x": 303.483124, - "y": -2637.875779 - } - } - } - ] - }, - { - "id": "ccf88c7c-86b7-57b5-bf28-b027a9056503", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "b9075314-91f2-5803-93b6-8f43e3c287b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.258807, - "y": -2636.387471 - }, - "endPoint": { - "x": 305.396495, - "y": -2636.693181 - } - } - }, - { - "id": "912f3cff-c092-5a59-9d10-fce330f0fbc6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.396495, - "y": -2636.693181 - }, - "endPoint": { - "x": 305.47129, - "y": -2636.866488 - } - } - }, - { - "id": "2a321bcf-c625-5e8d-b833-66e8e9e1598b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.47129, - "y": -2636.866488 - }, - "endPoint": { - "x": 305.460825, - "y": -2637.302234 - } - } - }, - { - "id": "780af664-49b4-53f3-ad35-c23985de2844", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.460825, - "y": -2637.302234 - }, - "endPoint": { - "x": 305.423992, - "y": -2637.66977 - } - } - }, - { - "id": "76593311-501b-5c28-8fbc-2f0fdf13f81a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.423992, - "y": -2637.66977 - }, - "endPoint": { - "x": 305.529053, - "y": -2637.906003 - } - } - }, - { - "id": "48de76bd-6464-53af-ab16-35bcb755e6eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.529053, - "y": -2637.906003 - }, - "endPoint": { - "x": 305.902104, - "y": -2637.963754 - } - } - }, - { - "id": "cf5a858c-cf99-511f-a15f-3499e2abb038", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.902104, - "y": -2637.963754 - }, - "endPoint": { - "x": 306.322452, - "y": -2638.021504 - } - } - }, - { - "id": "62774f99-456d-5312-94de-e4bdc2e615b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.322452, - "y": -2638.021504 - }, - "endPoint": { - "x": 306.427514, - "y": -2638.095 - } - } - }, - { - "id": "ea0f20b9-e20b-561a-9fba-50f3e7b94828", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.427514, - "y": -2638.095 - }, - "endPoint": { - "x": 306.627172, - "y": -2638.158036 - } - } - }, - { - "id": "de336d04-fc0f-57d5-a569-49e5b39a5706", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.627172, - "y": -2638.158036 - }, - "endPoint": { - "x": 306.727001, - "y": -2638.03202 - } - } - }, - { - "id": "f6c7b1b0-e75d-5142-b39a-fdd659cf8b07", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.727001, - "y": -2638.03202 - }, - "endPoint": { - "x": 306.821597, - "y": -2637.690745 - } - } - }, - { - "id": "40c79916-e916-50db-8023-2d4335d13251", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.821597, - "y": -2637.690745 - }, - "endPoint": { - "x": 306.984524, - "y": -2637.029226 - } - } - }, - { - "id": "31d30e2f-84da-50b6-9cd7-4ecbe9fe63d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.984524, - "y": -2637.029226 - }, - "endPoint": { - "x": 307.546665, - "y": -2636.719496 - } - } - }, - { - "id": "2df1615d-3a14-589d-93b6-45c0e77b1239", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.546665, - "y": -2636.719496 - }, - "endPoint": { - "x": 308.100803, - "y": -2636.564907 - } - } - }, - { - "id": "0efdc518-951a-5c37-8341-d874a9483138", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.100803, - "y": -2636.564907 - }, - "endPoint": { - "x": 308.557985, - "y": -2636.517671 - } - } - }, - { - "id": "2621f06b-33a2-5fb4-af7b-bf06db6cbdb7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.557985, - "y": -2636.517671 - }, - "endPoint": { - "x": 309.177991, - "y": -2636.470436 - } - } - }, - { - "id": "dd979bd7-6f09-5d9c-91d0-e52f256a7e0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.177991, - "y": -2636.470436 - }, - "endPoint": { - "x": 309.897724, - "y": -2636.512441 - } - } - }, - { - "id": "10568ba2-bb57-5b1e-a11b-a53aff3014ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.897724, - "y": -2636.512441 - }, - "endPoint": { - "x": 310.559797, - "y": -2636.774935 - } - } - }, - { - "id": "86094290-db8d-566f-a6e4-f6d62fff8290", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.559797, - "y": -2636.774935 - }, - "endPoint": { - "x": 310.848818, - "y": -2637.105695 - } - } - }, - { - "id": "1eb132ba-c9a5-599a-903e-96d9cbb95f77", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.848818, - "y": -2637.105695 - }, - "endPoint": { - "x": 310.974913, - "y": -2637.284177 - } - } - }, - { - "id": "c59de7b4-caad-517a-ab0f-568d45b84dc7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.974913, - "y": -2637.284177 - }, - "endPoint": { - "x": 310.947621, - "y": -2638.029212 - } - } - }, - { - "id": "6b987f4d-9234-5fd0-92b6-48aab2445000", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.947621, - "y": -2638.029212 - }, - "endPoint": { - "x": 311.005385, - "y": -2638.412327 - } - } - }, - { - "id": "77b27bd2-e699-5da6-a9a7-17c80b7fa748", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.005385, - "y": -2638.412327 - }, - "endPoint": { - "x": 310.955829, - "y": -2639.415286 - } - } - }, - { - "id": "bc1b4911-d6d6-5d85-99d0-8cb69cf3fa97", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.955829, - "y": -2639.415286 - }, - "endPoint": { - "x": 310.980556, - "y": -2639.913793 - } - } - }, - { - "id": "20b3a084-2b32-5f89-b697-242ce6b25a07", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.980556, - "y": -2639.913793 - }, - "endPoint": { - "x": 311.04232, - "y": -2640.696869 - } - } - }, - { - "id": "70fbda6d-80b3-532f-b1aa-599cbfc73fa8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.04232, - "y": -2640.696869 - }, - "endPoint": { - "x": 311.108599, - "y": -2641.284287 - } - } - }, - { - "id": "0ae6cb8e-0181-5889-b4e6-26b9d1e89365", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.108599, - "y": -2641.284287 - }, - "endPoint": { - "x": 311.125118, - "y": -2642.1778 - } - } - }, - { - "id": "b07edba3-9fa3-591f-a818-845e6d1e3c27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.125118, - "y": -2642.1778 - }, - "endPoint": { - "x": 311.166568, - "y": -2642.665902 - } - } - }, - { - "id": "2560d894-6e48-5101-8321-55ece00b6e85", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.166568, - "y": -2642.665902 - }, - "endPoint": { - "x": 311.125118, - "y": -2643.336065 - } - } - }, - { - "id": "9ddae081-3a85-5f73-8ae9-6b73db0244e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.125118, - "y": -2643.336065 - }, - "endPoint": { - "x": 311.141739, - "y": -2643.617331 - } - } - }, - { - "id": "1088371d-3d92-52cd-b66b-04ab03318797", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.141739, - "y": -2643.617331 - }, - "endPoint": { - "x": 311.025802, - "y": -2643.956569 - } - } - }, - { - "id": "f7309d2c-9363-5303-aa9f-5c2d9a995eb0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.025802, - "y": -2643.956569 - }, - "endPoint": { - "x": 310.909352, - "y": -2644.30891 - } - } - }, - { - "id": "456c6281-48b1-57f3-abc0-29568864af25", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.909352, - "y": -2644.30891 - }, - "endPoint": { - "x": 310.329769, - "y": -2644.780495 - } - } - }, - { - "id": "48eadfdc-f42d-503b-94e8-74bf72c347c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.329769, - "y": -2644.780495 - }, - "endPoint": { - "x": 309.741876, - "y": -2644.970759 - } - } - }, - { - "id": "214a4114-4d1f-5478-b2b6-2c6ffa2d9af8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.741876, - "y": -2644.970759 - }, - "endPoint": { - "x": 309.187123, - "y": -2644.937672 - } - } - }, - { - "id": "a0e81f46-4c10-5041-9a63-68bb71a6633b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.187123, - "y": -2644.937672 - }, - "endPoint": { - "x": 308.731788, - "y": -2645.028675 - } - } - }, - { - "id": "ab48262a-4253-5602-8b14-836f22d195f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.731788, - "y": -2645.028675 - }, - "endPoint": { - "x": 308.110755, - "y": -2644.863185 - } - } - }, - { - "id": "3a59f871-371f-5289-9362-b23cfe0eb1d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.110755, - "y": -2644.863185 - }, - "endPoint": { - "x": 307.539483, - "y": -2644.69775 - } - } - }, - { - "id": "7ba6dc02-37b9-54e3-8b1c-f583df3c0a18", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.539483, - "y": -2644.69775 - }, - "endPoint": { - "x": 307.059217, - "y": -2644.300596 - } - } - }, - { - "id": "d87886a8-134d-5701-94d1-02a3ebc1eccd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.059217, - "y": -2644.300596 - }, - "endPoint": { - "x": 306.785995, - "y": -2643.870411 - } - } - }, - { - "id": "84f1927c-d62f-542b-b4a0-4a3f7cf9f000", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.785995, - "y": -2643.870411 - }, - "endPoint": { - "x": 306.759012, - "y": -2643.271432 - } - } - }, - { - "id": "691166da-d52d-5d7d-8e1c-5bdb4b2e2451", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.759012, - "y": -2643.271432 - }, - "endPoint": { - "x": 306.734183, - "y": -2642.568238 - } - } - }, - { - "id": "d12a2d61-9ba3-5d58-8bdb-69a93f17caed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.734183, - "y": -2642.568238 - }, - "endPoint": { - "x": 306.767322, - "y": -2642.270345 - } - } - }, - { - "id": "3a431e48-be04-5aa4-b3b9-240f2259afd9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.767322, - "y": -2642.270345 - }, - "endPoint": { - "x": 306.709354, - "y": -2642.013907 - } - } - }, - { - "id": "ebe02f06-231d-5ae9-8d87-d18473b064cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.709354, - "y": -2642.013907 - }, - "endPoint": { - "x": 306.568588, - "y": -2642.005649 - } - } - }, - { - "id": "f9dd16b8-92ad-5753-aab9-74d54db0d9df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.568588, - "y": -2642.005649 - }, - "endPoint": { - "x": 306.419511, - "y": -2642.162826 - } - } - }, - { - "id": "8ea3cb4a-dab9-5737-89f0-d6eaa1a796ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.419511, - "y": -2642.162826 - }, - "endPoint": { - "x": 306.378164, - "y": -2642.262087 - } - } - }, - { - "id": "a4a8d3e3-c85b-5555-9fa9-6e4487f755f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.378164, - "y": -2642.262087 - }, - "endPoint": { - "x": 306.245708, - "y": -2642.286916 - } - } - }, - { - "id": "5b1c672c-9360-5424-9381-19a1a53df480", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.245708, - "y": -2642.286916 - }, - "endPoint": { - "x": 306.088321, - "y": -2642.171084 - } - } - }, - { - "id": "c6a16b78-fe96-561f-b176-b439a66e3e13", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.088321, - "y": -2642.171084 - }, - "endPoint": { - "x": 305.931037, - "y": -2642.071823 - } - } - }, - { - "id": "87708171-eee1-514a-b7f6-eb2f2d7b2efc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.931037, - "y": -2642.071823 - }, - "endPoint": { - "x": 305.757131, - "y": -2642.088339 - } - } - }, - { - "id": "58a22d7b-eab9-5121-9d69-e6178ab7ea12", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.757131, - "y": -2642.088339 - }, - "endPoint": { - "x": 305.599847, - "y": -2642.129739 - } - } - }, - { - "id": "9e2684ee-672b-5b0b-b5e8-631a3b2682c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.599847, - "y": -2642.129739 - }, - "endPoint": { - "x": 305.583328, - "y": -2642.303487 - } - } - }, - { - "id": "80e0de74-9e8d-57ff-99e0-8ad3b3b402b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.583328, - "y": -2642.303487 - }, - "endPoint": { - "x": 305.707473, - "y": -2642.609583 - } - } - }, - { - "id": "b88f6449-a1c9-5129-8009-b005bbf293a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.707473, - "y": -2642.609583 - }, - "endPoint": { - "x": 305.78196, - "y": -2642.841246 - } - } - }, - { - "id": "06448a8b-a296-5f42-bc4c-0f1ef2533e76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.78196, - "y": -2642.841246 - }, - "endPoint": { - "x": 305.78196, - "y": -2643.122513 - } - } - }, - { - "id": "3738ca64-6db2-5742-8ebe-dca822cc0e62", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.78196, - "y": -2643.122513 - }, - "endPoint": { - "x": 305.757131, - "y": -2643.561012 - } - } - }, - { - "id": "c3a938dc-f68f-5e62-a7bb-ebc1e06408f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.757131, - "y": -2643.561012 - }, - "endPoint": { - "x": 305.85655, - "y": -2643.726502 - } - } - }, - { - "id": "6e1b1072-30fb-5ade-8677-7cf65bb07819", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.85655, - "y": -2643.726502 - }, - "endPoint": { - "x": 305.85655, - "y": -2643.916766 - } - } - }, - { - "id": "d2d827cf-70da-566e-8155-5781837ee897", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.85655, - "y": -2643.916766 - }, - "endPoint": { - "x": 305.839929, - "y": -2644.140171 - } - } - }, - { - "id": "ecfdd7ea-4abc-5ff1-b410-436b9cb2e4bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.839929, - "y": -2644.140171 - }, - "endPoint": { - "x": 305.839929, - "y": -2644.37178 - } - } - }, - { - "id": "eeeae662-b225-5cd7-b7f6-0ccdcc34f95b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.839929, - "y": -2644.37178 - }, - "endPoint": { - "x": 305.666126, - "y": -2644.669618 - } - } - }, - { - "id": "a1eb7cb5-a4a2-5154-abf4-629a78d282e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.666126, - "y": -2644.669618 - }, - "endPoint": { - "x": 305.425941, - "y": -2644.893024 - } - } - }, - { - "id": "1cf2b0fd-6daa-5b2a-9e87-4040ca8bf1b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.425941, - "y": -2644.893024 - }, - "endPoint": { - "x": 305.227207, - "y": -2645.050201 - } - } - }, - { - "id": "9aaeb71f-81e0-5537-8c22-c01865ca1b3f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.227207, - "y": -2645.050201 - }, - "endPoint": { - "x": 304.86298, - "y": -2645.058514 - } - } - }, - { - "id": "d06441d8-1a2b-5619-98f1-df00acda078d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.86298, - "y": -2645.058514 - }, - "endPoint": { - "x": 304.664245, - "y": -2645.091601 - } - } - }, - { - "id": "e51c1658-f606-53ef-ad65-40057cc58fbf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.664245, - "y": -2645.091601 - }, - "endPoint": { - "x": 304.506858, - "y": -2644.926111 - } - } - }, - { - "id": "8fee1cc3-3fa9-5914-8071-6d0808863cae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.506858, - "y": -2644.926111 - }, - "endPoint": { - "x": 304.283397, - "y": -2644.595186 - } - } - }, - { - "id": "c79f2bb8-6961-5e86-9f0c-7d2045688a46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.283397, - "y": -2644.595186 - }, - "endPoint": { - "x": 304.283397, - "y": -2644.073942 - } - } - }, - { - "id": "1ad6aa39-1371-5de3-8719-48e62cb91a29", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.283397, - "y": -2644.073942 - }, - "endPoint": { - "x": 304.308226, - "y": -2643.354177 - } - } - }, - { - "id": "5aa9191f-4d91-5d7e-86cc-b3db198c0797", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.308226, - "y": -2643.354177 - }, - "endPoint": { - "x": 304.308226, - "y": -2642.866075 - } - } - }, - { - "id": "6f37d0d4-f14d-5536-9ddd-980c329f8621", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.308226, - "y": -2642.866075 - }, - "endPoint": { - "x": 304.399231, - "y": -2642.634412 - } - } - }, - { - "id": "39d80624-e46c-52d0-b984-ad1f5b2e229f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.399231, - "y": -2642.634412 - }, - "endPoint": { - "x": 304.366195, - "y": -2642.402748 - } - } - }, - { - "id": "18fe662c-5520-5764-892b-0396f3ccb510", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.366195, - "y": -2642.402748 - }, - "endPoint": { - "x": 304.2006, - "y": -2642.386177 - } - } - }, - { - "id": "a55c4b5a-5e0c-5b03-8dca-0a3a46a6679e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.2006, - "y": -2642.386177 - }, - "endPoint": { - "x": 303.968726, - "y": -2642.667499 - } - } - }, - { - "id": "9b9e7dee-1858-5f3c-bbdf-ee8bb1fb1d69", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.968726, - "y": -2642.667499 - }, - "endPoint": { - "x": 303.79482, - "y": -2642.890849 - } - } - }, - { - "id": "d09483ab-cb5b-525c-a0cc-3a48695fd3c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.79482, - "y": -2642.890849 - }, - "endPoint": { - "x": 303.571256, - "y": -2642.965336 - } - } - }, - { - "id": "f0bdadf7-6466-50ec-b746-eba6333cc3cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.571256, - "y": -2642.965336 - }, - "endPoint": { - "x": 303.447112, - "y": -2642.998423 - } - } - }, - { - "id": "c8e08997-df36-5876-9303-57542f57695b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.447112, - "y": -2642.998423 - }, - "endPoint": { - "x": 303.215237, - "y": -2643.1556 - } - } - }, - { - "id": "7846ca8d-0234-5991-a152-671686efdac4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.215237, - "y": -2643.1556 - }, - "endPoint": { - "x": 302.958637, - "y": -2643.07291 - } - } - }, - { - "id": "d74c7ba0-7383-532d-baa2-ca1e76560296", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.958637, - "y": -2643.07291 - }, - "endPoint": { - "x": 302.677105, - "y": -2642.882591 - } - } - }, - { - "id": "a3284e86-53de-520b-9fd1-8ba58bccf93d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.677105, - "y": -2642.882591 - }, - "endPoint": { - "x": 302.412091, - "y": -2642.617841 - } - } - }, - { - "id": "da8d5f37-710a-5f9d-8b06-1fb14ea8e799", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.412091, - "y": -2642.617841 - }, - "endPoint": { - "x": 302.312775, - "y": -2642.286916 - } - } - }, - { - "id": "7d4afcd4-8047-5603-b55a-4ded2603802d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.312775, - "y": -2642.286916 - }, - "endPoint": { - "x": 302.370744, - "y": -2641.881504 - } - } - }, - { - "id": "7c053944-b17f-5376-a165-b8ce2e9e1352", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.370744, - "y": -2641.881504 - }, - "endPoint": { - "x": 302.528028, - "y": -2641.674669 - } - } - }, - { - "id": "b89dfc69-af4e-52c5-8d7c-984f27074bb9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.528028, - "y": -2641.674669 - }, - "endPoint": { - "x": 302.569479, - "y": -2641.484405 - } - } - }, - { - "id": "3971a805-e19e-519b-ad03-a530709dc1c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.569479, - "y": -2641.484405 - }, - "endPoint": { - "x": 302.850908, - "y": -2641.434747 - } - } - }, - { - "id": "50c67e6d-4cc7-58fb-879c-a56729395afd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.850908, - "y": -2641.434747 - }, - "endPoint": { - "x": 303.594444, - "y": -2640.719166 - } - } - }, - { - "id": "a0895c05-0ca3-54a6-ac11-78de094bff3a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.594444, - "y": -2640.719166 - }, - "endPoint": { - "x": 303.960415, - "y": -2640.387801 - } - } - }, - { - "id": "75d6c395-f8f2-5950-81f9-b8275e88ea16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.960415, - "y": -2640.387801 - }, - "endPoint": { - "x": 304.069991, - "y": -2640.253911 - } - } - }, - { - "id": "381aeb82-7a1c-5701-bc2a-3691ee4af18f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.069991, - "y": -2640.253911 - }, - "endPoint": { - "x": 304.090305, - "y": -2640.193023 - } - } - }, - { - "id": "478efd6c-35d5-588b-9499-6a573007aff1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.090305, - "y": -2640.193023 - }, - "endPoint": { - "x": 304.005046, - "y": -2639.986078 - } - } - }, - { - "id": "efc1aec6-8dd6-592a-8d0e-22a2bea7a45c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.005046, - "y": -2639.986078 - }, - "endPoint": { - "x": 303.879156, - "y": -2639.835948 - } - } - }, - { - "id": "9b82e899-4534-5bd9-bd5f-f9ca75eebc4a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.879156, - "y": -2639.835948 - }, - "endPoint": { - "x": 303.408021, - "y": -2639.811559 - } - } - }, - { - "id": "143b7831-1dfd-5219-a594-f87606d4d0cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.408021, - "y": -2639.811559 - }, - "endPoint": { - "x": 303.119718, - "y": -2639.762892 - } - } - }, - { - "id": "67b5db53-93f1-5891-9b69-b96d883688de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.119718, - "y": -2639.762892 - }, - "endPoint": { - "x": 302.993829, - "y": -2639.730411 - } - } - }, - { - "id": "ef6508c5-0727-515c-beee-3fd6e5a12345", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.993829, - "y": -2639.730411 - }, - "endPoint": { - "x": 302.773753, - "y": -2639.550827 - } - } - }, - { - "id": "c486eaa2-f199-528c-b495-65a34069b0dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.773753, - "y": -2639.550827 - }, - "endPoint": { - "x": 302.65597, - "y": -2639.274845 - } - } - }, - { - "id": "c91a14bc-2045-5b35-a6cf-5e10df966c80", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.65597, - "y": -2639.274845 - }, - "endPoint": { - "x": 302.50166, - "y": -2639.189678 - } - } - }, - { - "id": "3751a5f8-4fd3-5b5c-ab80-481e27f0c324", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.50166, - "y": -2639.189678 - }, - "endPoint": { - "x": 303.079601, - "y": -2638.225587 - } - } - }, - { - "id": "2dbb2f4a-207e-5079-b2e3-6eb948e3f2d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.079601, - "y": -2638.225587 - }, - "endPoint": { - "x": 303.650566, - "y": -2637.720308 - } - } - }, - { - "id": "03672e35-2892-58ca-8fcb-5ec8bdebb5b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.650566, - "y": -2637.720308 - }, - "endPoint": { - "x": 304.311201, - "y": -2637.141699 - } - } - }, - { - "id": "5a659650-4f39-53ad-8b61-6b1e21c67782", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.311201, - "y": -2637.141699 - }, - "endPoint": { - "x": 304.910791, - "y": -2636.530829 - } - } - }, - { - "id": "14fb0565-3399-520b-8fcc-aa4e58fe24c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.910791, - "y": -2636.530829 - }, - "endPoint": { - "x": 305.173547, - "y": -2636.336822 - } - } - }, - { - "id": "a413552e-699c-568e-891b-2c8d14bcb210", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.173547, - "y": -2636.336822 - }, - "endPoint": { - "x": 305.220332, - "y": -2636.342877 - } - } - }, - { - "id": "83e20a4d-7a0b-5d0b-9f11-f4499b1abc72", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.220332, - "y": -2636.342877 - }, - "endPoint": { - "x": 305.258807, - "y": -2636.387471 - } - } - } - ] - }, - { - "id": "ea75333e-d40f-5d96-aef1-486811926adb", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "9601c5cb-fd12-5d49-a914-8ec0db3f74c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.488869, - "y": -2637.904682 - }, - "endPoint": { - "x": 303.463835, - "y": -2638.075291 - } - } - }, - { - "id": "9b5b6458-beea-597f-b62a-931b9d0dd184", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.463835, - "y": -2638.075291 - }, - "endPoint": { - "x": 303.589314, - "y": -2638.175653 - } - } - }, - { - "id": "6be55772-b80a-57bf-8396-e06c86edbf85", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.589314, - "y": -2638.175653 - }, - "endPoint": { - "x": 303.991092, - "y": -2638.065272 - } - } - }, - { - "id": "5b972850-d475-5817-97aa-d09425f507e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.991092, - "y": -2638.065272 - }, - "endPoint": { - "x": 304.121598, - "y": -2637.924776 - } - } - }, - { - "id": "5cab6f8a-ab97-5f0c-928b-e026e3dc706b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.121598, - "y": -2637.924776 - }, - "endPoint": { - "x": 304.151762, - "y": -2637.643784 - } - } - }, - { - "id": "3e538d03-264d-5b6b-aeed-eaa3cee34194", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.151762, - "y": -2637.643784 - }, - "endPoint": { - "x": 303.991092, - "y": -2637.483249 - } - } - }, - { - "id": "a9465a0b-b1d1-52d6-8064-e0270b022930", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.991092, - "y": -2637.483249 - }, - "endPoint": { - "x": 303.980884, - "y": -2637.431004 - } - } - }, - { - "id": "8d74b9ff-2019-53c4-9300-fa46966b6df6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.980884, - "y": -2637.431004 - }, - "endPoint": { - "x": 303.483124, - "y": -2637.875779 - } - } - }, - { - "id": "0556237c-17bd-5b33-a98d-68056bf091c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.483124, - "y": -2637.875779 - }, - "endPoint": { - "x": 303.488869, - "y": -2637.904682 - } - } - } - ] - }, - { - "id": "bbe2fee5-d595-54ce-a113-184f9751d674", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "7a438d53-850e-5613-bd7d-e9389643de72", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.650838, - "y": -2639.724245 - }, - "endPoint": { - "x": 305.701215, - "y": -2639.915665 - } - } - }, - { - "id": "6872d964-6e02-5c61-ad53-2619877094fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.701215, - "y": -2639.915665 - }, - "endPoint": { - "x": 306.023889, - "y": -2640.157513 - } - } - }, - { - "id": "3f67ccd1-c576-557d-93f0-5acec00a9b79", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.023889, - "y": -2640.157513 - }, - "endPoint": { - "x": 306.245811, - "y": -2640.308634 - } - } - }, - { - "id": "586be087-1055-5f5a-84b9-727d5148d3fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.245811, - "y": -2640.308634 - }, - "endPoint": { - "x": 306.487739, - "y": -2640.238111 - } - } - }, - { - "id": "9f33e461-ba48-59ca-9247-08c3792fcc63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.487739, - "y": -2640.238111 - }, - "endPoint": { - "x": 306.659183, - "y": -2640.217962 - } - } - }, - { - "id": "c74dc287-a40d-531a-8011-f8ef992ba49c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.659183, - "y": -2640.217962 - }, - "endPoint": { - "x": 306.66934, - "y": -2639.814917 - } - } - }, - { - "id": "27c10c90-7bd0-5174-94b2-000c5a7b9344", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.66934, - "y": -2639.814917 - }, - "endPoint": { - "x": 306.66934, - "y": -2639.583143 - } - } - }, - { - "id": "9309d2ca-5b80-545e-ac50-60cdaa3a1027", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.66934, - "y": -2639.583143 - }, - "endPoint": { - "x": 306.487739, - "y": -2639.593218 - } - } - }, - { - "id": "39becda6-af68-5070-9635-dd405ff4cfe1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.487739, - "y": -2639.593218 - }, - "endPoint": { - "x": 306.360722, - "y": -2639.682459 - } - } - }, - { - "id": "9f496177-91d3-570a-8d45-59de2cb2b2a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.360722, - "y": -2639.682459 - }, - "endPoint": { - "x": 306.034251, - "y": -2639.65774 - } - } - }, - { - "id": "78bd375a-1e04-559b-900e-6d989477f310", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.034251, - "y": -2639.65774 - }, - "endPoint": { - "x": 305.866091, - "y": -2639.529246 - } - } - }, - { - "id": "b11a10d8-2c73-5957-b14f-4d2e407174ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.866091, - "y": -2639.529246 - }, - "endPoint": { - "x": 305.67813, - "y": -2639.55892 - } - } - }, - { - "id": "81b56af1-8613-55bf-9327-50e08b64f3b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.67813, - "y": -2639.55892 - }, - "endPoint": { - "x": 305.648479, - "y": -2639.66765 - } - } - }, - { - "id": "5c731e86-04bb-5f53-8898-209cac0d1642", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.648479, - "y": -2639.66765 - }, - "endPoint": { - "x": 305.650838, - "y": -2639.724245 - } - } - } - ] - }, - { - "id": "87d63145-2ce2-5d82-805a-26ff76d26329", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "c3b372d9-8a85-589a-9d49-40509cf9292b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.23172, - "y": -2638.413263 - }, - "endPoint": { - "x": 308.353505, - "y": -2638.247773 - } - } - }, - { - "id": "6984bd63-5089-5505-9720-1d049aa26b8f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.353505, - "y": -2638.247773 - }, - "endPoint": { - "x": 308.533771, - "y": -2638.189362 - } - } - }, - { - "id": "f535dd58-233c-5958-9bd8-a1db59354995", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.533771, - "y": -2638.189362 - }, - "endPoint": { - "x": 308.71886, - "y": -2638.228284 - } - } - }, - { - "id": "284e7c2b-1c92-5b2b-96c8-eadd2e4953d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.71886, - "y": -2638.228284 - }, - "endPoint": { - "x": 309.069647, - "y": -2638.174773 - } - } - }, - { - "id": "4707a7a8-a203-5d04-bc56-f92d079ab4d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.069647, - "y": -2638.174773 - }, - "endPoint": { - "x": 309.308395, - "y": -2638.194206 - } - } - }, - { - "id": "d075bfe2-bbca-5eaa-8c1f-d77f7bd22796", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.308395, - "y": -2638.194206 - }, - "endPoint": { - "x": 309.459421, - "y": -2638.359751 - } - } - }, - { - "id": "8197719f-88b0-5587-aad9-42df13e8573f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.459421, - "y": -2638.359751 - }, - "endPoint": { - "x": 309.55689, - "y": -2638.510652 - } - } - }, - { - "id": "ee01ba6d-aa19-5c44-806b-f425482047ff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.55689, - "y": -2638.510652 - }, - "endPoint": { - "x": 309.405864, - "y": -2638.559319 - } - } - }, - { - "id": "8a6f0d55-b3a6-5528-9551-0616da65be59", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.405864, - "y": -2638.559319 - }, - "endPoint": { - "x": 309.300187, - "y": -2638.64867 - } - } - }, - { - "id": "6a081212-92a6-5122-875c-0fe63d6fe548", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.300187, - "y": -2638.64867 - }, - "endPoint": { - "x": 309.152034, - "y": -2638.660617 - } - } - }, - { - "id": "b2ae543e-d0f4-5780-ba59-7e2918dedb10", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.152034, - "y": -2638.660617 - }, - "endPoint": { - "x": 308.853368, - "y": -2638.674986 - } - } - }, - { - "id": "f3e9812c-6394-55be-9705-8625b1f9c60d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.853368, - "y": -2638.674986 - }, - "endPoint": { - "x": 308.647862, - "y": -2638.691667 - } - } - }, - { - "id": "820726fb-397d-57b4-a6bf-89ac12bc3c8c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.647862, - "y": -2638.691667 - }, - "endPoint": { - "x": 308.38254, - "y": -2638.610519 - } - } - }, - { - "id": "bb0f44d2-5ba0-50b4-992d-1ce73064888f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.38254, - "y": -2638.610519 - }, - "endPoint": { - "x": 308.220126, - "y": -2638.538839 - } - } - }, - { - "id": "f0a0ea14-4031-5f6e-9674-4826a931a653", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.220126, - "y": -2638.538839 - }, - "endPoint": { - "x": 308.215304, - "y": -2638.467215 - } - } - }, - { - "id": "39f9aaf0-f261-5c25-8ca6-82cabb49b58d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.215304, - "y": -2638.467215 - }, - "endPoint": { - "x": 308.23172, - "y": -2638.413263 - } - } - } - ] - }, - { - "id": "9444d0d9-f088-5220-8b2d-d138381de164", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "bb9ff4a6-b5f2-5cf8-9d0d-4a9dc44d6576", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.323443, - "y": -2640.003199 - }, - "endPoint": { - "x": 308.54557, - "y": -2640.010741 - } - } - }, - { - "id": "8d6910c5-67be-5601-ad41-831300705487", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.54557, - "y": -2640.010741 - }, - "endPoint": { - "x": 308.669818, - "y": -2639.965598 - } - } - }, - { - "id": "895e1ea4-e3d6-562d-ad64-1e088ed3f539", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.669818, - "y": -2639.965598 - }, - "endPoint": { - "x": 308.790269, - "y": -2639.897882 - } - } - }, - { - "id": "986583ae-07b5-51e3-8508-282254f13810", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.790269, - "y": -2639.897882 - }, - "endPoint": { - "x": 309.076521, - "y": -2639.864025 - } - } - }, - { - "id": "ee2c7f81-4ecd-5820-9768-58878dc180f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.076521, - "y": -2639.864025 - }, - "endPoint": { - "x": 309.253402, - "y": -2639.894084 - } - } - }, - { - "id": "0a4166cb-c8d9-5d16-b5f4-0dca82236a92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.253402, - "y": -2639.894084 - }, - "endPoint": { - "x": 309.407813, - "y": -2639.98817 - } - } - }, - { - "id": "92aadf06-3f1a-53c0-8a88-ab215d9ffc03", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.407813, - "y": -2639.98817 - }, - "endPoint": { - "x": 309.539653, - "y": -2640.025771 - } - } - }, - { - "id": "17726652-8016-5578-9069-5b0b33b7584d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.539653, - "y": -2640.025771 - }, - "endPoint": { - "x": 309.528265, - "y": -2640.13863 - } - } - }, - { - "id": "c956fb11-6b3e-53ca-8b6b-22d2782a40ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.528265, - "y": -2640.13863 - }, - "endPoint": { - "x": 309.532061, - "y": -2640.259031 - } - } - }, - { - "id": "54821411-7bca-55c1-9f6d-ae107c055cf8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.532061, - "y": -2640.259031 - }, - "endPoint": { - "x": 309.483121, - "y": -2640.360605 - } - } - }, - { - "id": "b63731f4-9dc5-5cd3-b1bd-e1b4002d2878", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.483121, - "y": -2640.360605 - }, - "endPoint": { - "x": 309.341021, - "y": -2640.409877 - } - } - }, - { - "id": "68330af7-8461-54eb-9491-f5fa8b9eb6f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.341021, - "y": -2640.409877 - }, - "endPoint": { - "x": 308.857985, - "y": -2640.399197 - } - } - }, - { - "id": "3f8d1b83-c04f-5781-948a-cd404dd8e3f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.857985, - "y": -2640.399197 - }, - "endPoint": { - "x": 308.552444, - "y": -2640.388296 - } - } - }, - { - "id": "0f658665-a869-5a42-94f7-2f8baed025f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.552444, - "y": -2640.388296 - }, - "endPoint": { - "x": 308.359558, - "y": -2640.368312 - } - } - }, - { - "id": "de4dceb0-a695-523d-95c7-cbe25c4f44a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.359558, - "y": -2640.368312 - }, - "endPoint": { - "x": 308.310516, - "y": -2640.33016 - } - } - }, - { - "id": "2c3ccb88-a2a9-5668-9c28-983052c675fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.310516, - "y": -2640.33016 - }, - "endPoint": { - "x": 308.2941, - "y": -2640.186581 - } - } - }, - { - "id": "1cb3ad7c-9304-5f62-bfaf-f9bc5dc93272", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.2941, - "y": -2640.186581 - }, - "endPoint": { - "x": 308.314107, - "y": -2640.082971 - } - } - }, - { - "id": "b8b11252-f2f3-5b52-88d2-8777d5ed18c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.314107, - "y": -2640.082971 - }, - "endPoint": { - "x": 308.323443, - "y": -2640.003199 - } - } - } - ] - }, - { - "id": "f441568a-72ad-5bb2-97d4-7e8c2b8276e8", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "863c8daf-0290-506d-99ff-47ea6b1a5eb1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.398751, - "y": -2641.9964 - }, - "endPoint": { - "x": 308.541979, - "y": -2641.973498 - } - } - }, - { - "id": "979b17d7-4597-5e80-876a-bdbe9128baf9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.541979, - "y": -2641.973498 - }, - "endPoint": { - "x": 308.673922, - "y": -2641.864658 - } - } - }, - { - "id": "1599c042-2f75-55e6-990e-c6736f1f56b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.673922, - "y": -2641.864658 - }, - "endPoint": { - "x": 308.851624, - "y": -2641.824579 - } - } - }, - { - "id": "50442485-5c61-515e-abac-5a9ea433fa15", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.851624, - "y": -2641.824579 - }, - "endPoint": { - "x": 309.060823, - "y": -2641.818854 - } - } - }, - { - "id": "6c10c5c9-4004-52af-a545-920545adc157", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.060823, - "y": -2641.818854 - }, - "endPoint": { - "x": 309.301623, - "y": -2641.850344 - } - } - }, - { - "id": "734ff1de-aa19-5318-b21f-3469d288b705", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.301623, - "y": -2641.850344 - }, - "endPoint": { - "x": 309.410481, - "y": -2641.91905 - } - } - }, - { - "id": "d69327cd-db71-5da4-8a8c-659aa593c79f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.410481, - "y": -2641.91905 - }, - "endPoint": { - "x": 309.50795, - "y": -2641.993537 - } - } - }, - { - "id": "8ed71947-6f17-59b8-b6bd-1f740012cc92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.50795, - "y": -2641.993537 - }, - "endPoint": { - "x": 309.571049, - "y": -2642.065162 - } - } - }, - { - "id": "cf590136-845b-5034-8686-bf1a7c509b9b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.571049, - "y": -2642.065162 - }, - "endPoint": { - "x": 309.631172, - "y": -2642.136731 - } - } - }, - { - "id": "9622fcca-a212-5d6f-b5bc-a5fd8019d602", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.631172, - "y": -2642.136731 - }, - "endPoint": { - "x": 309.50795, - "y": -2642.302881 - } - } - }, - { - "id": "286af0a3-2098-5693-8104-9abf5c6da3fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.50795, - "y": -2642.302881 - }, - "endPoint": { - "x": 309.333121, - "y": -2642.351548 - } - } - }, - { - "id": "0bf5e9e8-e5ec-52bc-b9ec-8429b2250b30", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.333121, - "y": -2642.351548 - }, - "endPoint": { - "x": 309.255762, - "y": -2642.405941 - } - } - }, - { - "id": "7e8a8a50-acba-50b7-9170-4d85d8c0480e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.255762, - "y": -2642.405941 - }, - "endPoint": { - "x": 309.158292, - "y": -2642.471839 - } - } - }, - { - "id": "1c14be2c-f535-5b5b-ac8c-9fee6f3a29b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.158292, - "y": -2642.471839 - }, - "endPoint": { - "x": 308.957608, - "y": -2642.460388 - } - } - }, - { - "id": "5d400239-e78c-5039-abc4-987c79c3782e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.957608, - "y": -2642.460388 - }, - "endPoint": { - "x": 308.745536, - "y": -2642.388764 - } - } - }, - { - "id": "0a52ad2d-4fef-5ab4-b314-26b8058a3b0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.745536, - "y": -2642.388764 - }, - "endPoint": { - "x": 308.63083, - "y": -2642.320058 - } - } - }, - { - "id": "98b166ef-e37e-5d4e-bbae-4ee0ced66ce8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.63083, - "y": -2642.320058 - }, - "endPoint": { - "x": 308.458874, - "y": -2642.196904 - } - } - }, - { - "id": "289798e0-0cea-5d0f-ab67-5bb75cb67c76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.458874, - "y": -2642.196904 - }, - "endPoint": { - "x": 308.384387, - "y": -2642.082338 - } - } - }, - { - "id": "c8ec3a9e-9fff-5251-b45f-b9558a688ed1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.384387, - "y": -2642.082338 - }, - "endPoint": { - "x": 308.398751, - "y": -2641.9964 - } - } - } - ] - }, - { - "id": "2380dc52-8991-5e23-81ea-df3328128c34", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "414238d2-b5a7-59f9-82c2-72f1392ca9c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.506619, - "y": -2647.611716 - }, - "endPoint": { - "x": 303.393042, - "y": -2647.522089 - } - } - }, - { - "id": "5a45e665-e4c4-5de8-9153-d5cb93760f87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.393042, - "y": -2647.522089 - }, - "endPoint": { - "x": 303.129875, - "y": -2647.510143 - } - } - }, - { - "id": "0be8483f-ccb0-5ff2-945c-f00e6074289a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.129875, - "y": -2647.510143 - }, - "endPoint": { - "x": 303.010347, - "y": -2647.426462 - } - } - }, - { - "id": "25257790-3f97-5d2c-b598-b9b680cb3303", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.010347, - "y": -2647.426462 - }, - "endPoint": { - "x": 302.836647, - "y": -2647.106988 - } - } - }, - { - "id": "7502f952-48a9-5fae-bf66-855656adb2d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.836647, - "y": -2647.106988 - }, - "endPoint": { - "x": 302.794786, - "y": -2646.760483 - } - } - }, - { - "id": "782e0e0f-cc8e-5a99-9d02-221c0d4742c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.794786, - "y": -2646.760483 - }, - "endPoint": { - "x": 302.938322, - "y": -2646.282456 - } - } - }, - { - "id": "66831e4a-2e44-558e-8e5e-80a0d01ef03b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.938322, - "y": -2646.282456 - }, - "endPoint": { - "x": 303.344923, - "y": -2645.894111 - } - } - }, - { - "id": "da61ad82-c810-54cd-9845-07628450406d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.344923, - "y": -2645.894111 - }, - "endPoint": { - "x": 303.673753, - "y": -2645.613285 - } - } - }, - { - "id": "54ee1309-5643-5510-bb57-583505b57c09", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.673753, - "y": -2645.613285 - }, - "endPoint": { - "x": 304.283705, - "y": -2645.565499 - } - } - }, - { - "id": "d4d56e02-e0df-57b3-b69c-edd4b1042eaa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.283705, - "y": -2645.565499 - }, - "endPoint": { - "x": 304.536099, - "y": -2645.438876 - } - } - }, - { - "id": "c84f5f0b-a04f-5866-b506-91c65b3b521d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.536099, - "y": -2645.438876 - }, - "endPoint": { - "x": 304.805216, - "y": -2645.444877 - } - } - }, - { - "id": "7d32fb9f-3ff1-58c7-bf3c-f0cd205ffe28", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.805216, - "y": -2645.444877 - }, - "endPoint": { - "x": 304.99051, - "y": -2645.534504 - } - } - }, - { - "id": "f8bf9495-acf0-556d-b800-1b500a9f73ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.99051, - "y": -2645.534504 - }, - "endPoint": { - "x": 305.450975, - "y": -2645.474716 - } - } - }, - { - "id": "741c2539-97e0-5424-9cf8-08b97355bb5b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.450975, - "y": -2645.474716 - }, - "endPoint": { - "x": 306.042972, - "y": -2645.438876 - } - } - }, - { - "id": "1f3bc734-e4f3-508b-a38c-4776755bb651", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.042972, - "y": -2645.438876 - }, - "endPoint": { - "x": 306.515339, - "y": -2645.516556 - } - } - }, - { - "id": "56b4b3ab-0896-5d86-bb1c-3254a7f830cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.515339, - "y": -2645.516556 - }, - "endPoint": { - "x": 306.64092, - "y": -2645.648023 - } - } - }, - { - "id": "53b9f51d-ff6d-51ac-8b98-16d8b6c02877", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.64092, - "y": -2645.648023 - }, - "endPoint": { - "x": 306.727206, - "y": -2645.875008 - } - } - }, - { - "id": "b8f254c9-57fd-5a3d-b62f-e971254ecdf0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.727206, - "y": -2645.875008 - }, - "endPoint": { - "x": 306.894648, - "y": -2645.851115 - } - } - }, - { - "id": "0a823550-9114-5ddd-89d4-f992ceb66b3a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.894648, - "y": -2645.851115 - }, - "endPoint": { - "x": 307.187568, - "y": -2645.516501 - } - } - }, - { - "id": "fef71fc4-a664-5d45-862e-e58b06571d70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.187568, - "y": -2645.516501 - }, - "endPoint": { - "x": 307.378916, - "y": -2645.396981 - } - } - }, - { - "id": "3660985d-92f7-5f7b-b53a-aacaaec0d249", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.378916, - "y": -2645.396981 - }, - "endPoint": { - "x": 307.516501, - "y": -2645.307354 - } - } - }, - { - "id": "919faf6d-efaa-553b-a817-3008342c7ec3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.516501, - "y": -2645.307354 - }, - "endPoint": { - "x": 307.899196, - "y": -2645.241676 - } - } - }, - { - "id": "60394b85-3ef0-59b4-a9f6-e0a9bab83018", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.899196, - "y": -2645.241676 - }, - "endPoint": { - "x": 308.036679, - "y": -2645.492608 - } - } - }, - { - "id": "3be58e18-ca43-55a5-a5fb-3384ee671297", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.036679, - "y": -2645.492608 - }, - "endPoint": { - "x": 308.108498, - "y": -2645.671861 - } - } - }, - { - "id": "7ccd8e56-88cd-5ef5-bdb3-067afef72547", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.108498, - "y": -2645.671861 - }, - "endPoint": { - "x": 308.16226, - "y": -2645.869007 - } - } - }, - { - "id": "94e52695-1c14-502f-9dcd-c24b263db890", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.16226, - "y": -2645.869007 - }, - "endPoint": { - "x": 308.156309, - "y": -2646.2813 - } - } - }, - { - "id": "09557a72-66c6-538f-adda-a8c450b9b295", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.156309, - "y": -2646.2813 - }, - "endPoint": { - "x": 308.317698, - "y": -2646.227513 - } - } - }, - { - "id": "9aeb0497-88d9-57f1-8de7-ab33e2682570", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.317698, - "y": -2646.227513 - }, - "endPoint": { - "x": 308.473238, - "y": -2646.0841 - } - } - }, - { - "id": "6564008d-014c-5ae3-bf87-3102fb306907", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.473238, - "y": -2646.0841 - }, - "endPoint": { - "x": 308.527, - "y": -2645.946687 - } - } - }, - { - "id": "985ba41c-4582-514e-969a-6756a1e4a0c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.527, - "y": -2645.946687 - }, - "endPoint": { - "x": 308.521049, - "y": -2645.785381 - } - } - }, - { - "id": "65ce8760-c210-5dda-8a06-3ecf63a2ceda", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.521049, - "y": -2645.785381 - }, - "endPoint": { - "x": 308.389517, - "y": -2645.689754 - } - } - }, - { - "id": "50a27195-7d1f-5bbf-8bcc-1f5dea54db83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.389517, - "y": -2645.689754 - }, - "endPoint": { - "x": 308.281891, - "y": -2645.641968 - } - } - }, - { - "id": "317788f8-bd07-5fc5-97b4-527e02bade08", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.281891, - "y": -2645.641968 - }, - "endPoint": { - "x": 308.297178, - "y": -2645.408817 - } - } - }, - { - "id": "62c14e81-d8cd-5cbe-87a5-cf430d99971f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.297178, - "y": -2645.408817 - }, - "endPoint": { - "x": 308.40029, - "y": -2645.231546 - } - } - }, - { - "id": "632646ac-367f-5c1c-9c1c-eb0dc1f4a183", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.40029, - "y": -2645.231546 - }, - "endPoint": { - "x": 308.569373, - "y": -2645.206827 - } - } - }, - { - "id": "febd2b5a-5110-53c3-9a67-eea572b13066", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.569373, - "y": -2645.206827 - }, - "endPoint": { - "x": 308.771494, - "y": -2645.219214 - } - } - }, - { - "id": "c7f5eded-67f9-52b0-a216-3a80e4c3535c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.771494, - "y": -2645.219214 - }, - "endPoint": { - "x": 309.031377, - "y": -2645.346993 - } - } - }, - { - "id": "752b848a-8b82-577d-a300-fbb210fc4541", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.031377, - "y": -2645.346993 - }, - "endPoint": { - "x": 309.146904, - "y": -2645.392301 - } - } - }, - { - "id": "c48bfc39-b0ba-55f2-a1b4-7dbcb2f86429", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.146904, - "y": -2645.392301 - }, - "endPoint": { - "x": 309.464551, - "y": -2645.433536 - } - } - }, - { - "id": "a9061684-7b36-5d7b-b4f3-4f66d3f6cb5d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.464551, - "y": -2645.433536 - }, - "endPoint": { - "x": 309.613012, - "y": -2645.52008 - } - } - }, - { - "id": "75bee6c7-2290-575b-afa2-d529fb9ba815", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.613012, - "y": -2645.52008 - }, - "endPoint": { - "x": 309.77953, - "y": -2645.672963 - } - } - }, - { - "id": "b086db74-c3e9-58f7-a650-e7e40e2c57a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.77953, - "y": -2645.672963 - }, - "endPoint": { - "x": 310.126007, - "y": -2645.94498 - } - } - }, - { - "id": "13e31910-3ee8-5a25-8458-27614e47fd24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.126007, - "y": -2645.94498 - }, - "endPoint": { - "x": 310.406513, - "y": -2646.184021 - } - } - }, - { - "id": "9892569e-d179-50ec-8da1-f115fdd56380", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.406513, - "y": -2646.184021 - }, - "endPoint": { - "x": 310.608634, - "y": -2646.33239 - } - } - }, - { - "id": "08e3ecb0-0522-517b-a42b-f7a14e2f4593", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.608634, - "y": -2646.33239 - }, - "endPoint": { - "x": 310.843688, - "y": -2646.629181 - } - } - }, - { - "id": "429c549b-8b14-5fff-ac45-d468c9b34368", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.843688, - "y": -2646.629181 - }, - "endPoint": { - "x": 310.975733, - "y": -2646.806398 - } - } - }, - { - "id": "47690159-87fb-53ac-bd09-d6b9e5ea1d6a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.975733, - "y": -2646.806398 - }, - "endPoint": { - "x": 311.262908, - "y": -2647.93207 - } - } - }, - { - "id": "c80dec55-5ad9-54db-a26c-3e6ed783a484", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.262908, - "y": -2647.93207 - }, - "endPoint": { - "x": 311.344167, - "y": -2648.923358 - } - } - }, - { - "id": "235c52e6-a560-53c8-8abf-2df01db45f9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.344167, - "y": -2648.923358 - }, - "endPoint": { - "x": 311.367457, - "y": -2649.418507 - } - } - }, - { - "id": "27fb45c9-92f1-5088-a926-1254d59e66b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.367457, - "y": -2649.418507 - }, - "endPoint": { - "x": 311.292047, - "y": -2649.650336 - } - } - }, - { - "id": "c9687c98-fb3e-59ec-95e6-7468cd2c2c9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.292047, - "y": -2649.650336 - }, - "endPoint": { - "x": 311.268859, - "y": -2649.870658 - } - } - }, - { - "id": "d4b28e48-fc0d-57b5-a231-49d5924de8d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.268859, - "y": -2649.870658 - }, - "endPoint": { - "x": 311.251417, - "y": -2650.137281 - } - } - }, - { - "id": "6cc2988e-b1ce-57d7-ad2f-a4e5a5897623", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.251417, - "y": -2650.137281 - }, - "endPoint": { - "x": 311.083155, - "y": -2650.554694 - } - } - }, - { - "id": "33ed0b32-7ada-51f3-8c8f-2a56e3f0171f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.083155, - "y": -2650.554694 - }, - "endPoint": { - "x": 310.796801, - "y": -2651.262623 - } - } - }, - { - "id": "0ee0f2a2-5094-5113-86ad-4145ee29d228", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.796801, - "y": -2651.262623 - }, - "endPoint": { - "x": 310.292013, - "y": -2651.663191 - } - } - }, - { - "id": "33422aaa-260d-5d4e-acf1-8c6ae9d6edf2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.292013, - "y": -2651.663191 - }, - "endPoint": { - "x": 309.753573, - "y": -2651.982499 - } - } - }, - { - "id": "218d37be-61e4-5aec-ab4f-bf50ab5d93ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.753573, - "y": -2651.982499 - }, - "endPoint": { - "x": 309.265714, - "y": -2652.069813 - } - } - }, - { - "id": "812fabe6-f19c-572c-a793-93648c306c54", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.265714, - "y": -2652.069813 - }, - "endPoint": { - "x": 308.80689, - "y": -2652.084402 - } - } - }, - { - "id": "a185bc26-aa30-5e3e-90fd-2acebb3b0f3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.80689, - "y": -2652.084402 - }, - "endPoint": { - "x": 308.428197, - "y": -2652.142594 - } - } - }, - { - "id": "e74fcf4a-6391-545d-8b4b-b0e3b9e6afb7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.428197, - "y": -2652.142594 - }, - "endPoint": { - "x": 308.280659, - "y": -2652.274611 - } - } - }, - { - "id": "22ecac21-69cb-54de-af6c-455d94f4c981", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.280659, - "y": -2652.274611 - }, - "endPoint": { - "x": 308.261371, - "y": -2652.432174 - } - } - }, - { - "id": "6a823678-57d8-5e2b-a2f0-ee88e8f6b8b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.261371, - "y": -2652.432174 - }, - "endPoint": { - "x": 308.322007, - "y": -2652.945379 - } - } - }, - { - "id": "1ef9da6e-c6d4-524f-9340-4c28c02a2500", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.322007, - "y": -2652.945379 - }, - "endPoint": { - "x": 308.348888, - "y": -2653.164932 - } - } - }, - { - "id": "7350d737-2474-5d92-90e0-5dea4296f76b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.348888, - "y": -2653.164932 - }, - "endPoint": { - "x": 308.456514, - "y": -2653.267936 - } - } - }, - { - "id": "ae62664a-cb27-5d94-92f8-046e9b50d438", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.456514, - "y": -2653.267936 - }, - "endPoint": { - "x": 308.505864, - "y": -2653.362022 - } - } - }, - { - "id": "1b0bb422-afc6-5d9b-a167-9bfe217e9fb8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.505864, - "y": -2653.362022 - }, - "endPoint": { - "x": 308.514791, - "y": -2653.509895 - } - } - }, - { - "id": "5797fccc-f391-5a92-bcff-672ea318bddd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.514791, - "y": -2653.509895 - }, - "endPoint": { - "x": 308.375769, - "y": -2653.715959 - } - } - }, - { - "id": "7cd95975-eb2a-5867-a5f1-97927e03ad23", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.375769, - "y": -2653.715959 - }, - "endPoint": { - "x": 308.209866, - "y": -2653.993757 - } - } - }, - { - "id": "1887d396-5931-5b1d-9657-3d9e7cb5eab7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.209866, - "y": -2653.993757 - }, - "endPoint": { - "x": 307.936439, - "y": -2654.07887 - } - } - }, - { - "id": "f0b8ab4c-46ae-5155-9666-f2d816306d0c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.936439, - "y": -2654.07887 - }, - "endPoint": { - "x": 307.479052, - "y": -2654.04303 - } - } - }, - { - "id": "acfee2fd-f2bf-572d-b9ca-594e6268cc78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.479052, - "y": -2654.04303 - }, - "endPoint": { - "x": 307.241433, - "y": -2653.819019 - } - } - }, - { - "id": "ec003646-9493-58b9-8ea6-8fc67f31af18", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.241433, - "y": -2653.819019 - }, - "endPoint": { - "x": 307.048649, - "y": -2653.581574 - } - } - }, - { - "id": "3e2326dc-67d3-59a7-bbc9-bce77263c638", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.048649, - "y": -2653.581574 - }, - "endPoint": { - "x": 306.981447, - "y": -2653.397862 - } - } - }, - { - "id": "2176dc81-cfd7-5333-ae05-f48f5cfa5b09", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.981447, - "y": -2653.397862 - }, - "endPoint": { - "x": 307.07553, - "y": -2652.999166 - } - } - }, - { - "id": "0138ba57-5a7d-587b-880f-ac99681a76b0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.07553, - "y": -2652.999166 - }, - "endPoint": { - "x": 307.138321, - "y": -2652.694502 - } - } - }, - { - "id": "397a2679-afe4-5503-a78e-cf18d12d8cf4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.138321, - "y": -2652.694502 - }, - "endPoint": { - "x": 307.205626, - "y": -2652.457058 - } - } - }, - { - "id": "5e4f88a3-1407-55e0-a46f-0bf8c7789e5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.205626, - "y": -2652.457058 - }, - "endPoint": { - "x": 307.120366, - "y": -2652.237505 - } - } - }, - { - "id": "1e1be1f9-6a17-52a3-9656-c6a4e90f02e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.120366, - "y": -2652.237505 - }, - "endPoint": { - "x": 307.035208, - "y": -2652.152393 - } - } - }, - { - "id": "df7a5b30-1f46-57e2-9dec-504365938ef5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.035208, - "y": -2652.152393 - }, - "endPoint": { - "x": 306.985858, - "y": -2652.121068 - } - } - }, - { - "id": "ecf4ec6d-b9bb-58d6-bf25-3eb13f017864", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.985858, - "y": -2652.121068 - }, - "endPoint": { - "x": 306.716843, - "y": -2652.129987 - } - } - }, - { - "id": "6a53c27b-7255-5599-aa4c-79ee2ca646d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.716843, - "y": -2652.129987 - }, - "endPoint": { - "x": 306.532986, - "y": -2652.10758 - } - } - }, - { - "id": "8f2503e1-46b9-52a6-a771-a4385e39bd65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.532986, - "y": -2652.10758 - }, - "endPoint": { - "x": 306.479224, - "y": -2652.192747 - } - } - }, - { - "id": "ed182d9b-907d-5b14-89b3-893e6461298c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.479224, - "y": -2652.192747 - }, - "endPoint": { - "x": 306.420947, - "y": -2652.210639 - } - } - }, - { - "id": "8bd207e0-7a8a-50c1-a764-d4b6243805bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.420947, - "y": -2652.210639 - }, - "endPoint": { - "x": 306.100633, - "y": -2652.272024 - } - } - }, - { - "id": "4a1e3e54-881d-522f-a101-956814fcbc31", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.100633, - "y": -2652.272024 - }, - "endPoint": { - "x": 305.907849, - "y": -2652.379543 - } - } - }, - { - "id": "3d94fbee-8c9c-5253-9be1-29fb891aa5bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.907849, - "y": -2652.379543 - }, - "endPoint": { - "x": 305.495298, - "y": -2652.415382 - } - } - }, - { - "id": "d8985d4d-dd79-59d4-838e-f0bb929c1647", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.495298, - "y": -2652.415382 - }, - "endPoint": { - "x": 304.988664, - "y": -2652.410923 - } - } - }, - { - "id": "afdb1c4a-adca-59fe-bb8d-a5b0b106a883", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.988664, - "y": -2652.410923 - }, - "endPoint": { - "x": 304.863185, - "y": -2652.312323 - } - } - }, - { - "id": "1edac6ec-4723-5e4b-8a9d-6644a989acc0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.863185, - "y": -2652.312323 - }, - "endPoint": { - "x": 304.603096, - "y": -2652.245158 - } - } - }, - { - "id": "6c637252-93cb-55c1-9b5a-c8c504e2c376", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.603096, - "y": -2652.245158 - }, - "endPoint": { - "x": 303.911373, - "y": -2652.236239 - } - } - }, - { - "id": "322107ce-d4d0-5c74-8364-95914c9bd1ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.911373, - "y": -2652.236239 - }, - "endPoint": { - "x": 303.799745, - "y": -2652.241579 - } - } - }, - { - "id": "be45354e-31d7-5a50-9e57-ffc8fc1a8464", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.799745, - "y": -2652.241579 - }, - "endPoint": { - "x": 303.534834, - "y": -2652.014705 - } - } - }, - { - "id": "85625858-3fe8-5622-ab8b-6983e0155258", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.534834, - "y": -2652.014705 - }, - "endPoint": { - "x": 303.238527, - "y": -2651.460264 - } - } - }, - { - "id": "ce6fb717-cbfe-5e21-90d1-5b32c59fdb1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.238527, - "y": -2651.460264 - }, - "endPoint": { - "x": 303.093452, - "y": -2650.993964 - } - } - }, - { - "id": "646a574a-44e0-532f-b864-007d5d170dd5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.093452, - "y": -2650.993964 - }, - "endPoint": { - "x": 302.909287, - "y": -2650.195748 - } - } - }, - { - "id": "4b058e0d-5565-50aa-9d72-1c5a97f769d4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.909287, - "y": -2650.195748 - }, - "endPoint": { - "x": 303.079499, - "y": -2648.815839 - } - } - }, - { - "id": "2d09bd95-9964-5d76-a806-f3abe0dafe55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.079499, - "y": -2648.815839 - }, - "endPoint": { - "x": 303.33179, - "y": -2648.110167 - } - } - }, - { - "id": "c7070783-8c79-5249-8e1a-043012448454", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.33179, - "y": -2648.110167 - }, - "endPoint": { - "x": 303.483329, - "y": -2647.886211 - } - } - }, - { - "id": "311840ef-e3c2-5236-941c-3bb7b17c4265", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.483329, - "y": -2647.886211 - }, - "endPoint": { - "x": 303.506619, - "y": -2647.611716 - } - } - } - ] - }, - { - "id": "39e499e2-b6dd-52cb-8b88-eaf312cf21bc", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "15e80120-683b-563a-84c6-d2fa630fa4c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.175187, - "y": -2648.994817 - }, - "endPoint": { - "x": 308.152513, - "y": -2649.75323 - } - } - }, - { - "id": "b95a0042-f09c-5123-8a39-ccbf5dacf40e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.152513, - "y": -2649.75323 - }, - "endPoint": { - "x": 308.323546, - "y": -2650.147521 - } - } - }, - { - "id": "4dc0bce8-6060-5bac-8014-58e5a9de4b0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.323546, - "y": -2650.147521 - }, - "endPoint": { - "x": 308.441945, - "y": -2650.200097 - } - } - }, - { - "id": "4d2edfa0-105c-5d30-9f11-693994192d80", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.441945, - "y": -2650.200097 - }, - "endPoint": { - "x": 308.678641, - "y": -2650.489291 - } - } - }, - { - "id": "e18b7503-c23f-5932-8b59-439cd0da3ea3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.678641, - "y": -2650.489291 - }, - "endPoint": { - "x": 309.139106, - "y": -2650.489291 - } - } - }, - { - "id": "cc046edd-449a-56c9-b21d-a5be58a3ef6d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.139106, - "y": -2650.489291 - }, - "endPoint": { - "x": 309.481172, - "y": -2650.173836 - } - } - }, - { - "id": "a3f246ff-6d3d-5f8c-a9fc-8f4cf6f411d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.481172, - "y": -2650.173836 - }, - "endPoint": { - "x": 309.665337, - "y": -2649.77949 - } - } - }, - { - "id": "a26a3cf3-e13a-5be2-956f-d10f462f930a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.665337, - "y": -2649.77949 - }, - "endPoint": { - "x": 309.751623, - "y": -2649.579537 - } - } - }, - { - "id": "b11ba16a-b704-51a4-8cf7-2a2006cc763e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.751623, - "y": -2649.579537 - }, - "endPoint": { - "x": 309.811438, - "y": -2648.891758 - } - } - }, - { - "id": "cc7c6783-77f0-5842-b7ae-bea8c7bdaaec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.811438, - "y": -2648.891758 - }, - "endPoint": { - "x": 309.766603, - "y": -2648.29366 - } - } - }, - { - "id": "8223ee94-b265-5fa2-ab3e-de667b7efdd7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.766603, - "y": -2648.29366 - }, - "endPoint": { - "x": 309.676726, - "y": -2648.02456 - } - } - }, - { - "id": "0645547a-61ff-51ef-8b1f-bac82aafefb3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.676726, - "y": -2648.02456 - }, - "endPoint": { - "x": 309.497177, - "y": -2647.725511 - } - } - }, - { - "id": "9aa92ba3-aab5-528e-9936-24bfcef04a02", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.497177, - "y": -2647.725511 - }, - "endPoint": { - "x": 309.542116, - "y": -2647.48625 - } - } - }, - { - "id": "358e4658-44b1-59ba-9354-a75db739cdb4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.542116, - "y": -2647.48625 - }, - "endPoint": { - "x": 309.287772, - "y": -2647.276937 - } - } - }, - { - "id": "accbc3ba-f557-51d2-b54a-57e85d1e0b3e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.287772, - "y": -2647.276937 - }, - "endPoint": { - "x": 308.928573, - "y": -2646.977888 - } - } - }, - { - "id": "73c96724-6aec-5054-8183-918fcf6b8f75", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.928573, - "y": -2646.977888 - }, - "endPoint": { - "x": 308.344989, - "y": -2647.097519 - } - } - }, - { - "id": "bfb8a732-891e-540b-bb06-daee35239dea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.344989, - "y": -2647.097519 - }, - "endPoint": { - "x": 308.225358, - "y": -2647.516199 - } - } - }, - { - "id": "685ed3df-7864-59a1-821f-01f136bf3ef2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.225358, - "y": -2647.516199 - }, - "endPoint": { - "x": 308.210379, - "y": -2648.233872 - } - } - }, - { - "id": "0e98f8d3-e1d6-5723-83d7-d40111f1629e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.210379, - "y": -2648.233872 - }, - "endPoint": { - "x": 308.175187, - "y": -2648.994817 - } - } - } - ] - }, - { - "id": "e48eb781-6d4c-5def-a919-3f52c52d66cb", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "d1155edb-71d5-5615-931a-26ab09c04839", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.122863, - "y": -2647.578409 - }, - "endPoint": { - "x": 304.866776, - "y": -2647.672495 - } - } - }, - { - "id": "3083606e-e550-530e-b591-584ae7bca715", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.866776, - "y": -2647.672495 - }, - "endPoint": { - "x": 304.685893, - "y": -2647.830607 - } - } - }, - { - "id": "70f9609d-2e7f-5ba3-a0e3-648635df3e7d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.685893, - "y": -2647.830607 - }, - "endPoint": { - "x": 304.441092, - "y": -2647.951064 - } - } - }, - { - "id": "61573419-edd8-59a2-9029-9cc23b52b889", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.441092, - "y": -2647.951064 - }, - "endPoint": { - "x": 304.248924, - "y": -2648.222036 - } - } - }, - { - "id": "99610b30-85b5-57b6-b9bb-146cd146e506", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.248924, - "y": -2648.222036 - }, - "endPoint": { - "x": 304.20378, - "y": -2648.429091 - } - } - }, - { - "id": "49b9f917-488f-50e2-9044-11b5db609454", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.20378, - "y": -2648.429091 - }, - "endPoint": { - "x": 303.992734, - "y": -2648.688832 - } - } - }, - { - "id": "106bfc68-e52e-5383-a944-ea5003af19c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.992734, - "y": -2648.688832 - }, - "endPoint": { - "x": 303.939998, - "y": -2648.775375 - } - } - }, - { - "id": "3ef681f9-daea-514e-8c82-4ae8efb58d2c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.939998, - "y": -2648.775375 - }, - "endPoint": { - "x": 303.886749, - "y": -2649.12744 - } - } - }, - { - "id": "e3153d92-825f-579f-a62e-9857f74251ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.886749, - "y": -2649.12744 - }, - "endPoint": { - "x": 303.916913, - "y": -2649.477469 - } - } - }, - { - "id": "672d308f-2210-58d5-9ccc-e959796a90a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.916913, - "y": -2649.477469 - }, - "endPoint": { - "x": 303.973445, - "y": -2649.744752 - } - } - }, - { - "id": "e06a3254-2c67-5aba-8ddb-6ff87c2cbe35", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.973445, - "y": -2649.744752 - }, - "endPoint": { - "x": 303.954567, - "y": -2649.917894 - } - } - }, - { - "id": "5dbf669a-bc76-5d1a-8914-1f6ada1ae2be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.954567, - "y": -2649.917894 - }, - "endPoint": { - "x": 304.093999, - "y": -2650.072208 - } - } - }, - { - "id": "b81969df-7086-5552-80e7-f5536d8c7023", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.093999, - "y": -2650.072208 - }, - "endPoint": { - "x": 304.357679, - "y": -2650.29633 - } - } - }, - { - "id": "48a05f90-002c-598e-b68f-1a6faa0b47a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.357679, - "y": -2650.29633 - }, - "endPoint": { - "x": 304.892631, - "y": -2650.458186 - } - } - }, - { - "id": "dc52197a-fb0b-5228-8bdc-4b27bd157448", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.892631, - "y": -2650.458186 - }, - "endPoint": { - "x": 305.393622, - "y": -2650.522213 - } - } - }, - { - "id": "bc0205fc-6fa5-5735-8801-78ff26c760da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.393622, - "y": -2650.522213 - }, - "endPoint": { - "x": 305.838082, - "y": -2650.428072 - } - } - }, - { - "id": "71565489-046b-50fe-a843-b957973f9297", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.838082, - "y": -2650.428072 - }, - "endPoint": { - "x": 306.212466, - "y": -2650.390746 - } - } - }, - { - "id": "78d987cc-39e1-56b0-92c5-2508e161f560", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.212466, - "y": -2650.390746 - }, - "endPoint": { - "x": 306.461064, - "y": -2650.225091 - } - } - }, - { - "id": "5c2fd456-e85b-5b57-813f-021307176fe8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.461064, - "y": -2650.225091 - }, - "endPoint": { - "x": 306.656925, - "y": -2650.078319 - } - } - }, - { - "id": "9eb1f5b9-1914-5dd9-8044-9564d6750a2e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.656925, - "y": -2650.078319 - }, - "endPoint": { - "x": 306.90183, - "y": -2650.104635 - } - } - }, - { - "id": "a74d6351-f20d-503f-b8e5-f3e5b07c3ffd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.90183, - "y": -2650.104635 - }, - "endPoint": { - "x": 307.218245, - "y": -2650.082063 - } - } - }, - { - "id": "f1631357-098f-5430-9eeb-f5ce9c5b2a79", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.218245, - "y": -2650.082063 - }, - "endPoint": { - "x": 307.338799, - "y": -2649.886349 - } - } - }, - { - "id": "e97c133c-c9c0-51a3-917c-d3595a87baba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.338799, - "y": -2649.886349 - }, - "endPoint": { - "x": 307.387739, - "y": -2649.769636 - } - } - }, - { - "id": "5827f39e-8aad-55bd-bbca-756d33aa7dc4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.387739, - "y": -2649.769636 - }, - "endPoint": { - "x": 307.395844, - "y": -2649.691295 - } - } - }, - { - "id": "e7ea5ac5-49c1-513c-8bd3-bd3bc944b909", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.395844, - "y": -2649.691295 - }, - "endPoint": { - "x": 307.249025, - "y": -2649.544578 - } - } - }, - { - "id": "c4f15df5-0175-518b-9d7b-bf6f07b29804", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.249025, - "y": -2649.544578 - }, - "endPoint": { - "x": 307.258772, - "y": -2648.859992 - } - } - }, - { - "id": "f366ed79-4724-5343-a8a7-9456aaacfe23", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.258772, - "y": -2648.859992 - }, - "endPoint": { - "x": 307.209832, - "y": -2647.969947 - } - } - }, - { - "id": "56f46a3f-de76-5895-a586-e6ad4389fdc7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.209832, - "y": -2647.969947 - }, - "endPoint": { - "x": 307.072862, - "y": -2647.627681 - } - } - }, - { - "id": "9d13cf22-37b2-516c-be94-f300431ba2f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.072862, - "y": -2647.627681 - }, - "endPoint": { - "x": 306.994477, - "y": -2647.471165 - } - } - }, - { - "id": "1c188d6d-9220-5314-8d48-4da609b8409d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.994477, - "y": -2647.471165 - }, - "endPoint": { - "x": 306.887158, - "y": -2647.441106 - } - } - }, - { - "id": "cfed421e-2046-5baf-bf1a-cfb6b7de6075", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.887158, - "y": -2647.441106 - }, - "endPoint": { - "x": 306.752856, - "y": -2647.417543 - } - } - }, - { - "id": "ce694082-22c7-5d1b-addd-c120af85e068", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.752856, - "y": -2647.417543 - }, - "endPoint": { - "x": 306.571563, - "y": -2647.481075 - } - } - }, - { - "id": "97e14f15-0ab0-59be-972b-bee97cc110ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.571563, - "y": -2647.481075 - }, - "endPoint": { - "x": 306.39499, - "y": -2647.575216 - } - } - }, - { - "id": "ca221c86-8e3b-5086-8f35-3d835edc44d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.39499, - "y": -2647.575216 - }, - "endPoint": { - "x": 305.804737, - "y": -2647.597237 - } - } - }, - { - "id": "d4120b0c-8a38-5664-9c8c-9b5b94058b50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.804737, - "y": -2647.597237 - }, - "endPoint": { - "x": 305.122863, - "y": -2647.578409 - } - } - } - ] - }, - { - "id": "d410435e-e681-5b76-b157-c7e6572e4e9a", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "ce87e1d1-b914-590f-8d64-951d1962f773", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.506619, - "y": -2647.611716 - }, - "endPoint": { - "x": 303.393042, - "y": -2647.522089 - } - } - }, - { - "id": "b0a00ffc-f40e-51d7-9ab2-7c38f925d1e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.393042, - "y": -2647.522089 - }, - "endPoint": { - "x": 303.129875, - "y": -2647.510143 - } - } - }, - { - "id": "50f5b07a-ef64-590b-90fc-4fe01efc17ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.129875, - "y": -2647.510143 - }, - "endPoint": { - "x": 303.010347, - "y": -2647.426462 - } - } - }, - { - "id": "2ad1520e-e4c9-5441-bf3e-8d3b4390c278", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.010347, - "y": -2647.426462 - }, - "endPoint": { - "x": 302.836647, - "y": -2647.106988 - } - } - }, - { - "id": "e00a5b7b-20e1-543e-9307-2d6807873f6c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.836647, - "y": -2647.106988 - }, - "endPoint": { - "x": 302.794786, - "y": -2646.760483 - } - } - }, - { - "id": "2cef7b04-16ce-55be-8f56-83b9faa2fd89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.794786, - "y": -2646.760483 - }, - "endPoint": { - "x": 302.938322, - "y": -2646.282456 - } - } - }, - { - "id": "1e5a2d6a-23ea-5003-949d-cce56cf51845", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.938322, - "y": -2646.282456 - }, - "endPoint": { - "x": 303.344923, - "y": -2645.894111 - } - } - }, - { - "id": "1a1dd26a-9544-5ee5-9b61-6adab25ea5f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.344923, - "y": -2645.894111 - }, - "endPoint": { - "x": 303.673753, - "y": -2645.613285 - } - } - }, - { - "id": "5e635c01-c33f-5400-b94d-912d0b80a869", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.673753, - "y": -2645.613285 - }, - "endPoint": { - "x": 304.283705, - "y": -2645.565499 - } - } - }, - { - "id": "43f5ee1c-3178-5e5b-9286-321bc18bcef9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.283705, - "y": -2645.565499 - }, - "endPoint": { - "x": 304.536099, - "y": -2645.438876 - } - } - }, - { - "id": "3a47d0be-9f5e-5503-b4bc-819186ff0b7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.536099, - "y": -2645.438876 - }, - "endPoint": { - "x": 304.805216, - "y": -2645.444877 - } - } - }, - { - "id": "40df1b3b-2c62-5d3d-b616-1687c4f66d26", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.805216, - "y": -2645.444877 - }, - "endPoint": { - "x": 304.99051, - "y": -2645.534504 - } - } - }, - { - "id": "6b8570a5-9f68-5156-9013-4aa35fe970ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.99051, - "y": -2645.534504 - }, - "endPoint": { - "x": 305.450975, - "y": -2645.474716 - } - } - }, - { - "id": "a17ab853-fc78-51b4-9dbf-0fb350245e9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.450975, - "y": -2645.474716 - }, - "endPoint": { - "x": 306.042972, - "y": -2645.438876 - } - } - }, - { - "id": "f051d963-fade-5b64-a761-1d738104711f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.042972, - "y": -2645.438876 - }, - "endPoint": { - "x": 306.515339, - "y": -2645.516556 - } - } - }, - { - "id": "5034eff6-fae0-5cd1-a97b-7d1459ed6699", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.515339, - "y": -2645.516556 - }, - "endPoint": { - "x": 306.64092, - "y": -2645.648023 - } - } - }, - { - "id": "81859159-bcaf-5d16-9a25-d057c5a0e6f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.64092, - "y": -2645.648023 - }, - "endPoint": { - "x": 306.727206, - "y": -2645.875008 - } - } - }, - { - "id": "6f7965ba-01ac-50ff-b6a6-0d03d98615bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.727206, - "y": -2645.875008 - }, - "endPoint": { - "x": 306.894648, - "y": -2645.851115 - } - } - }, - { - "id": "adb58c50-bc45-5de8-8ce7-78304b5e6271", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.894648, - "y": -2645.851115 - }, - "endPoint": { - "x": 307.187568, - "y": -2645.516501 - } - } - }, - { - "id": "88ae104d-3fa7-5d20-aebf-fa6e0b090e57", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.187568, - "y": -2645.516501 - }, - "endPoint": { - "x": 307.378916, - "y": -2645.396981 - } - } - }, - { - "id": "64fad625-af3f-5419-a5a6-3d5f3e95bf19", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.378916, - "y": -2645.396981 - }, - "endPoint": { - "x": 307.516501, - "y": -2645.307354 - } - } - }, - { - "id": "156566ee-dc08-5afd-89b1-01dc4c959ae9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.516501, - "y": -2645.307354 - }, - "endPoint": { - "x": 307.899196, - "y": -2645.241676 - } - } - }, - { - "id": "622edb92-7653-566e-8457-0a36db0b8db3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.899196, - "y": -2645.241676 - }, - "endPoint": { - "x": 308.036679, - "y": -2645.492608 - } - } - }, - { - "id": "61d713c6-2666-5f20-9b6b-71f081d0330b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.036679, - "y": -2645.492608 - }, - "endPoint": { - "x": 308.108498, - "y": -2645.671861 - } - } - }, - { - "id": "87d8f162-4945-5b0b-9e81-7ab2263888cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.108498, - "y": -2645.671861 - }, - "endPoint": { - "x": 308.16226, - "y": -2645.869007 - } - } - }, - { - "id": "f6f18ff8-be8d-59ad-bcbf-12a6c283693b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.16226, - "y": -2645.869007 - }, - "endPoint": { - "x": 308.156309, - "y": -2646.2813 - } - } - }, - { - "id": "de7f9eb0-2650-5839-be16-41bf43d46f53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.156309, - "y": -2646.2813 - }, - "endPoint": { - "x": 308.317698, - "y": -2646.227513 - } - } - }, - { - "id": "1d050742-6ce1-57c2-aa64-02f997123d9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.317698, - "y": -2646.227513 - }, - "endPoint": { - "x": 308.473238, - "y": -2646.0841 - } - } - }, - { - "id": "88d29963-e8af-536b-8ac0-707144aed64e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.473238, - "y": -2646.0841 - }, - "endPoint": { - "x": 308.527, - "y": -2645.946687 - } - } - }, - { - "id": "8135ccb9-37b2-5d2a-a926-96fdceedc89b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.527, - "y": -2645.946687 - }, - "endPoint": { - "x": 308.521049, - "y": -2645.785381 - } - } - }, - { - "id": "8e4ab778-b79c-53b0-8c9f-44d6b0315abd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.521049, - "y": -2645.785381 - }, - "endPoint": { - "x": 308.389517, - "y": -2645.689754 - } - } - }, - { - "id": "5aafa5e6-ca3b-5df6-83ef-2adf79a81580", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.389517, - "y": -2645.689754 - }, - "endPoint": { - "x": 308.281891, - "y": -2645.641968 - } - } - }, - { - "id": "58826095-6fcc-5eca-8e17-dfc75969620f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.281891, - "y": -2645.641968 - }, - "endPoint": { - "x": 308.297178, - "y": -2645.408817 - } - } - }, - { - "id": "21af633b-c317-581b-9ef2-0c2633a52e1a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.297178, - "y": -2645.408817 - }, - "endPoint": { - "x": 308.40029, - "y": -2645.231546 - } - } - }, - { - "id": "afeb7854-4ff2-54f1-8c42-9fda70d3063d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.40029, - "y": -2645.231546 - }, - "endPoint": { - "x": 308.569373, - "y": -2645.206827 - } - } - }, - { - "id": "3fd6bf26-d281-512c-9387-832d3493bfd8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.569373, - "y": -2645.206827 - }, - "endPoint": { - "x": 308.771494, - "y": -2645.219214 - } - } - }, - { - "id": "6eab82a3-7c26-5d1a-a06b-2748d665abd4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.771494, - "y": -2645.219214 - }, - "endPoint": { - "x": 309.031377, - "y": -2645.346993 - } - } - }, - { - "id": "30342a7a-efbb-559c-be19-8604af5e0277", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.031377, - "y": -2645.346993 - }, - "endPoint": { - "x": 309.146904, - "y": -2645.392301 - } - } - }, - { - "id": "4da65737-2eec-57eb-8652-8dcdef3bd83d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.146904, - "y": -2645.392301 - }, - "endPoint": { - "x": 309.464551, - "y": -2645.433536 - } - } - }, - { - "id": "3407cf26-1e31-5d4c-a829-d459618da1c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.464551, - "y": -2645.433536 - }, - "endPoint": { - "x": 309.613012, - "y": -2645.52008 - } - } - }, - { - "id": "eb44152e-5d4c-508d-b952-5e3a6f7c9c8c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.613012, - "y": -2645.52008 - }, - "endPoint": { - "x": 309.77953, - "y": -2645.672963 - } - } - }, - { - "id": "71e829cb-f211-5803-a09f-c58f147187d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.77953, - "y": -2645.672963 - }, - "endPoint": { - "x": 310.126007, - "y": -2645.94498 - } - } - }, - { - "id": "4976809d-f51d-5743-9aab-e930468303f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.126007, - "y": -2645.94498 - }, - "endPoint": { - "x": 310.406513, - "y": -2646.184021 - } - } - }, - { - "id": "9bd4f058-eea8-5afa-8d8c-135631d60162", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.406513, - "y": -2646.184021 - }, - "endPoint": { - "x": 310.608634, - "y": -2646.33239 - } - } - }, - { - "id": "f3a00395-7af8-5e98-a0f7-bf603954428f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.608634, - "y": -2646.33239 - }, - "endPoint": { - "x": 310.843688, - "y": -2646.629181 - } - } - }, - { - "id": "21248333-3ebf-5682-96dd-4eba82a69cd6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.843688, - "y": -2646.629181 - }, - "endPoint": { - "x": 310.975733, - "y": -2646.806398 - } - } - }, - { - "id": "5d0861c6-c739-5328-80ca-928bf067e46d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.975733, - "y": -2646.806398 - }, - "endPoint": { - "x": 311.262908, - "y": -2647.93207 - } - } - }, - { - "id": "6005dd5e-20cb-5095-a714-1b043c51b67f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.262908, - "y": -2647.93207 - }, - "endPoint": { - "x": 311.344167, - "y": -2648.923358 - } - } - }, - { - "id": "485facf3-88ac-5b3b-ac77-656246b7cb2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.344167, - "y": -2648.923358 - }, - "endPoint": { - "x": 311.367457, - "y": -2649.418507 - } - } - }, - { - "id": "a6688da1-a824-5e71-b420-4fb6e84376f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.367457, - "y": -2649.418507 - }, - "endPoint": { - "x": 311.292047, - "y": -2649.650336 - } - } - }, - { - "id": "1626dfb7-42c0-5d69-8366-fd93f0afee3a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.292047, - "y": -2649.650336 - }, - "endPoint": { - "x": 311.268859, - "y": -2649.870658 - } - } - }, - { - "id": "540b2f59-5e56-5d7c-b9c5-e9deb18b0ebd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.268859, - "y": -2649.870658 - }, - "endPoint": { - "x": 311.251417, - "y": -2650.137281 - } - } - }, - { - "id": "836368a2-3e07-55a8-a538-ca332516ac03", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.251417, - "y": -2650.137281 - }, - "endPoint": { - "x": 311.083155, - "y": -2650.554694 - } - } - }, - { - "id": "a0ca0341-1d43-5763-9557-0f1f5693cf46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.083155, - "y": -2650.554694 - }, - "endPoint": { - "x": 310.796801, - "y": -2651.262623 - } - } - }, - { - "id": "722abfe4-338b-504b-baa7-1e47ef3bec2e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.796801, - "y": -2651.262623 - }, - "endPoint": { - "x": 310.292013, - "y": -2651.663191 - } - } - }, - { - "id": "fb51cc2c-82ad-5c6f-bdff-90df68d1e2fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.292013, - "y": -2651.663191 - }, - "endPoint": { - "x": 309.753573, - "y": -2651.982499 - } - } - }, - { - "id": "cc127f7f-1192-5c9a-bf4c-bc8a33c568f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.753573, - "y": -2651.982499 - }, - "endPoint": { - "x": 309.265714, - "y": -2652.069813 - } - } - }, - { - "id": "90f6691e-6e3e-57cb-ac9c-97c7b7f9c747", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.265714, - "y": -2652.069813 - }, - "endPoint": { - "x": 308.80689, - "y": -2652.084402 - } - } - }, - { - "id": "c8eac3c1-f379-5156-9a9f-a1e8b9e47753", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.80689, - "y": -2652.084402 - }, - "endPoint": { - "x": 308.428197, - "y": -2652.142594 - } - } - }, - { - "id": "9f50af82-f87e-57e9-8f7e-42afd94d1aef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.428197, - "y": -2652.142594 - }, - "endPoint": { - "x": 308.280659, - "y": -2652.274611 - } - } - }, - { - "id": "36574616-c259-5740-a342-f6ab90b4c2ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.280659, - "y": -2652.274611 - }, - "endPoint": { - "x": 308.261371, - "y": -2652.432174 - } - } - }, - { - "id": "63df33f9-477b-58d6-bf30-a77f1558d090", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.261371, - "y": -2652.432174 - }, - "endPoint": { - "x": 308.322007, - "y": -2652.945379 - } - } - }, - { - "id": "9475861d-b324-5696-9d59-2d6956a1abac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.322007, - "y": -2652.945379 - }, - "endPoint": { - "x": 308.348888, - "y": -2653.164932 - } - } - }, - { - "id": "738e5c13-a49f-5d75-a05d-9d58a288bb8a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.348888, - "y": -2653.164932 - }, - "endPoint": { - "x": 308.456514, - "y": -2653.267936 - } - } - }, - { - "id": "303c68e8-99a3-5c7e-8528-80b31bd792cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.456514, - "y": -2653.267936 - }, - "endPoint": { - "x": 308.505864, - "y": -2653.362022 - } - } - }, - { - "id": "fafb450b-d4ae-5840-925a-bc075aa88e09", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.505864, - "y": -2653.362022 - }, - "endPoint": { - "x": 308.514791, - "y": -2653.509895 - } - } - }, - { - "id": "94dfabb2-75d7-5fb3-84fb-889c81e5383d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.514791, - "y": -2653.509895 - }, - "endPoint": { - "x": 308.375769, - "y": -2653.715959 - } - } - }, - { - "id": "78b34c2e-68a9-5abb-8160-e6f20a8eb4b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.375769, - "y": -2653.715959 - }, - "endPoint": { - "x": 308.209866, - "y": -2653.993757 - } - } - }, - { - "id": "c69e5f6d-4419-5553-85c6-99022e7df4b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.209866, - "y": -2653.993757 - }, - "endPoint": { - "x": 307.936439, - "y": -2654.07887 - } - } - }, - { - "id": "92e6195f-c8f2-5520-938c-8a5ead986472", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.936439, - "y": -2654.07887 - }, - "endPoint": { - "x": 307.479052, - "y": -2654.04303 - } - } - }, - { - "id": "7f973c02-6c68-5921-904e-0384804b551d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.479052, - "y": -2654.04303 - }, - "endPoint": { - "x": 307.241433, - "y": -2653.819019 - } - } - }, - { - "id": "bc8aa1bd-c56d-58e0-b301-2631d01a539e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.241433, - "y": -2653.819019 - }, - "endPoint": { - "x": 307.048649, - "y": -2653.581574 - } - } - }, - { - "id": "b1274834-65ae-5a39-a565-88e273e25df4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.048649, - "y": -2653.581574 - }, - "endPoint": { - "x": 306.981447, - "y": -2653.397862 - } - } - }, - { - "id": "56fb1586-bd6e-5ae1-8a51-5fd5b94e0dcc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.981447, - "y": -2653.397862 - }, - "endPoint": { - "x": 307.07553, - "y": -2652.999166 - } - } - }, - { - "id": "7328fb3f-711d-50e9-9ea5-c462a3e353a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.07553, - "y": -2652.999166 - }, - "endPoint": { - "x": 307.138321, - "y": -2652.694502 - } - } - }, - { - "id": "9044648d-7956-5732-a922-27dad929b244", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.138321, - "y": -2652.694502 - }, - "endPoint": { - "x": 307.205626, - "y": -2652.457058 - } - } - }, - { - "id": "6ba4c65b-42c9-574f-b3e0-5ab68e0342dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.205626, - "y": -2652.457058 - }, - "endPoint": { - "x": 307.120366, - "y": -2652.237505 - } - } - }, - { - "id": "30713661-bf64-56b5-b6ba-1cd6fb413bb8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.120366, - "y": -2652.237505 - }, - "endPoint": { - "x": 307.035208, - "y": -2652.152393 - } - } - }, - { - "id": "2dd755f1-7016-5937-acfd-82bcc4adfe22", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.035208, - "y": -2652.152393 - }, - "endPoint": { - "x": 306.985858, - "y": -2652.121068 - } - } - }, - { - "id": "667c4939-fa07-5429-9ea9-234bfb2ccf12", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.985858, - "y": -2652.121068 - }, - "endPoint": { - "x": 306.716843, - "y": -2652.129987 - } - } - }, - { - "id": "4d369d5f-ae87-5d1b-972f-c51df5de4f67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.716843, - "y": -2652.129987 - }, - "endPoint": { - "x": 306.532986, - "y": -2652.10758 - } - } - }, - { - "id": "4fbecf9c-8be3-5b3f-bab6-0f7cbc77d357", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.532986, - "y": -2652.10758 - }, - "endPoint": { - "x": 306.479224, - "y": -2652.192747 - } - } - }, - { - "id": "803e6283-7bd7-55f0-9b7a-5c394fd2f04b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.479224, - "y": -2652.192747 - }, - "endPoint": { - "x": 306.420947, - "y": -2652.210639 - } - } - }, - { - "id": "df55b810-641b-5ac4-95c5-5dc2bc809c77", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.420947, - "y": -2652.210639 - }, - "endPoint": { - "x": 306.100633, - "y": -2652.272024 - } - } - }, - { - "id": "2a4f1e25-edf6-5d1c-b95a-6874b35ef92b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.100633, - "y": -2652.272024 - }, - "endPoint": { - "x": 305.907849, - "y": -2652.379543 - } - } - }, - { - "id": "d09c6b25-921b-541d-89a5-2ef1efdd7ec4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.907849, - "y": -2652.379543 - }, - "endPoint": { - "x": 305.495298, - "y": -2652.415382 - } - } - }, - { - "id": "d88c270e-3afe-5e4c-97b4-6c5ff01f6d92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.495298, - "y": -2652.415382 - }, - "endPoint": { - "x": 304.988664, - "y": -2652.410923 - } - } - }, - { - "id": "5a3d8eb1-8702-5621-868e-c6369d8aea61", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.988664, - "y": -2652.410923 - }, - "endPoint": { - "x": 304.863185, - "y": -2652.312323 - } - } - }, - { - "id": "1efdcf76-3280-5623-b1d4-0f929ab252f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.863185, - "y": -2652.312323 - }, - "endPoint": { - "x": 304.603096, - "y": -2652.245158 - } - } - }, - { - "id": "363a5bb9-6548-50d8-b78f-fdbbb7fae54f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.603096, - "y": -2652.245158 - }, - "endPoint": { - "x": 303.911373, - "y": -2652.236239 - } - } - }, - { - "id": "17e4a8f0-5d7f-5644-8894-1a6afd1b0de1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.911373, - "y": -2652.236239 - }, - "endPoint": { - "x": 303.799745, - "y": -2652.241579 - } - } - }, - { - "id": "a6f10e6b-cb8b-5c1d-8e5a-b5b37ddad410", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.799745, - "y": -2652.241579 - }, - "endPoint": { - "x": 303.534834, - "y": -2652.014705 - } - } - }, - { - "id": "5169522f-f84a-598e-b5db-c69c57230355", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.534834, - "y": -2652.014705 - }, - "endPoint": { - "x": 303.238527, - "y": -2651.460264 - } - } - }, - { - "id": "bfafb1f7-60d0-505e-b4fd-dcd34197f988", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.238527, - "y": -2651.460264 - }, - "endPoint": { - "x": 303.093452, - "y": -2650.993964 - } - } - }, - { - "id": "8f18b07a-d89b-5426-9333-98c27ba6001c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.093452, - "y": -2650.993964 - }, - "endPoint": { - "x": 302.909287, - "y": -2650.195748 - } - } - }, - { - "id": "774a1725-0724-5af6-9ae9-688aea132150", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.909287, - "y": -2650.195748 - }, - "endPoint": { - "x": 303.079499, - "y": -2648.815839 - } - } - }, - { - "id": "7b9f65cf-06af-57fb-8751-f3d25e9ffed9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.079499, - "y": -2648.815839 - }, - "endPoint": { - "x": 303.33179, - "y": -2648.110167 - } - } - }, - { - "id": "fb0b9928-1cd0-5eaf-9e89-8706dead6fb1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.33179, - "y": -2648.110167 - }, - "endPoint": { - "x": 303.483329, - "y": -2647.886211 - } - } - }, - { - "id": "1f316d51-5ab8-5378-b470-b6d3d0a687c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.483329, - "y": -2647.886211 - }, - "endPoint": { - "x": 303.506619, - "y": -2647.611716 - } - } - } - ] - }, - { - "id": "7389e85a-9273-59a2-985a-576e8fc158c8", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "f42f4f3f-9f9d-5266-90d6-3b983b1fda5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.395844, - "y": -2649.691295 - }, - "endPoint": { - "x": 307.249025, - "y": -2649.544578 - } - } - }, - { - "id": "ee8d05b3-1cbe-56a9-af18-2cadd3a75edb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.249025, - "y": -2649.544578 - }, - "endPoint": { - "x": 307.258772, - "y": -2648.859992 - } - } - }, - { - "id": "f0e46d9c-8a93-54aa-aab2-ab7dd1c82b81", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.258772, - "y": -2648.859992 - }, - "endPoint": { - "x": 307.209832, - "y": -2647.969947 - } - } - }, - { - "id": "e1289a95-d4f1-5a90-8d88-f263547c2744", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.209832, - "y": -2647.969947 - }, - "endPoint": { - "x": 307.072862, - "y": -2647.627681 - } - } - }, - { - "id": "ed4ea5b4-0db4-5250-803a-9e313274ce62", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.072862, - "y": -2647.627681 - }, - "endPoint": { - "x": 306.994477, - "y": -2647.471165 - } - } - }, - { - "id": "52c389dc-3c5f-58d1-91ee-3b2f1c1b1e3a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.994477, - "y": -2647.471165 - }, - "endPoint": { - "x": 306.887158, - "y": -2647.441106 - } - } - }, - { - "id": "d09ad606-6d88-5383-804c-0731ccc5cc3a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.887158, - "y": -2647.441106 - }, - "endPoint": { - "x": 306.752856, - "y": -2647.417543 - } - } - }, - { - "id": "2a236ce0-7eac-5238-aa30-708ef2aca550", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.752856, - "y": -2647.417543 - }, - "endPoint": { - "x": 306.571563, - "y": -2647.481075 - } - } - }, - { - "id": "4bad2124-96b1-5a01-a576-1e04e90a1ae3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.571563, - "y": -2647.481075 - }, - "endPoint": { - "x": 306.39499, - "y": -2647.575216 - } - } - }, - { - "id": "64f97aab-9c78-5449-b897-20f8a66a795a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.39499, - "y": -2647.575216 - }, - "endPoint": { - "x": 305.804737, - "y": -2647.597237 - } - } - }, - { - "id": "b318883e-9eca-5ce8-ad7e-5e3ae5aa0731", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.804737, - "y": -2647.597237 - }, - "endPoint": { - "x": 305.122863, - "y": -2647.578409 - } - } - }, - { - "id": "fd539bd3-bc7a-5abe-a69e-e464f1a378d4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.122863, - "y": -2647.578409 - }, - "endPoint": { - "x": 304.866776, - "y": -2647.672495 - } - } - }, - { - "id": "66834239-6032-5d98-91c6-515be78be3ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.866776, - "y": -2647.672495 - }, - "endPoint": { - "x": 304.685893, - "y": -2647.830607 - } - } - }, - { - "id": "52bbe54c-0a82-573f-8c69-65a1a8e450ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.685893, - "y": -2647.830607 - }, - "endPoint": { - "x": 304.441092, - "y": -2647.951064 - } - } - }, - { - "id": "7ad590fc-dba7-5845-991f-658d3e71dbeb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.441092, - "y": -2647.951064 - }, - "endPoint": { - "x": 304.248924, - "y": -2648.222036 - } - } - }, - { - "id": "35e704ec-b6cd-53a0-a598-9568718bc976", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.248924, - "y": -2648.222036 - }, - "endPoint": { - "x": 304.20378, - "y": -2648.429091 - } - } - }, - { - "id": "859f7aa3-1f32-55fb-9450-658a033d204f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.20378, - "y": -2648.429091 - }, - "endPoint": { - "x": 303.992734, - "y": -2648.688832 - } - } - }, - { - "id": "b87a17c3-bd4d-5a16-b02d-a17aa4a65c1a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.992734, - "y": -2648.688832 - }, - "endPoint": { - "x": 303.939998, - "y": -2648.775375 - } - } - }, - { - "id": "aa6ce77d-deb2-53d8-a622-65f6572475f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.939998, - "y": -2648.775375 - }, - "endPoint": { - "x": 303.886749, - "y": -2649.12744 - } - } - }, - { - "id": "4a3a7ed6-2a13-5901-be36-c380e8b75c12", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.886749, - "y": -2649.12744 - }, - "endPoint": { - "x": 303.916913, - "y": -2649.477469 - } - } - }, - { - "id": "c00e1cf9-5f71-5542-b5eb-84898688f827", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.916913, - "y": -2649.477469 - }, - "endPoint": { - "x": 303.973445, - "y": -2649.744752 - } - } - }, - { - "id": "0a5d9247-f8a6-5170-8254-e4df749d1691", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.973445, - "y": -2649.744752 - }, - "endPoint": { - "x": 303.954567, - "y": -2649.917894 - } - } - }, - { - "id": "a7cf0acd-405a-538e-a965-be07357ebb89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.954567, - "y": -2649.917894 - }, - "endPoint": { - "x": 304.093999, - "y": -2650.072208 - } - } - }, - { - "id": "991baa95-ec2a-5cf0-80c0-a576d5fbc43e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.093999, - "y": -2650.072208 - }, - "endPoint": { - "x": 304.357679, - "y": -2650.29633 - } - } - }, - { - "id": "75351578-8da2-5f6d-af43-0f1bc07d98c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.357679, - "y": -2650.29633 - }, - "endPoint": { - "x": 304.892631, - "y": -2650.458186 - } - } - }, - { - "id": "50ef144e-783c-5fe9-b251-282b9bc31d7e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.892631, - "y": -2650.458186 - }, - "endPoint": { - "x": 305.393622, - "y": -2650.522213 - } - } - }, - { - "id": "35856a51-5ff3-5bf1-bbff-df5118570680", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.393622, - "y": -2650.522213 - }, - "endPoint": { - "x": 305.838082, - "y": -2650.428072 - } - } - }, - { - "id": "4006bdd8-287a-5dfe-b66d-140f11106766", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.838082, - "y": -2650.428072 - }, - "endPoint": { - "x": 306.212466, - "y": -2650.390746 - } - } - }, - { - "id": "63a2651b-9f68-5fcb-a264-32852c6ba083", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.212466, - "y": -2650.390746 - }, - "endPoint": { - "x": 306.461064, - "y": -2650.225091 - } - } - }, - { - "id": "703e5744-1091-5bc9-b825-9edbe7751226", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.461064, - "y": -2650.225091 - }, - "endPoint": { - "x": 306.656925, - "y": -2650.078319 - } - } - }, - { - "id": "4113d95b-69bc-54f9-91fd-19ec01d64b8d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.656925, - "y": -2650.078319 - }, - "endPoint": { - "x": 306.90183, - "y": -2650.104635 - } - } - }, - { - "id": "0367ae2f-9f0c-5f2f-8b14-ead771aee040", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.90183, - "y": -2650.104635 - }, - "endPoint": { - "x": 307.218245, - "y": -2650.082063 - } - } - }, - { - "id": "2051f4e6-ff66-5250-a282-69ce39143b5f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.218245, - "y": -2650.082063 - }, - "endPoint": { - "x": 307.338799, - "y": -2649.886349 - } - } - }, - { - "id": "b0da55e8-7299-576e-b8e9-e50b67c124fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.338799, - "y": -2649.886349 - }, - "endPoint": { - "x": 307.387739, - "y": -2649.769636 - } - } - }, - { - "id": "3e04a07b-e3f2-53b6-8ef0-5c2a232a88ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.387739, - "y": -2649.769636 - }, - "endPoint": { - "x": 307.395844, - "y": -2649.691295 - } - } - } - ] - }, - { - "id": "9aa8b8bf-6826-5c1b-b8ca-5f80fce8b325", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "21566fb0-bbcd-52cb-9b1d-d6b4651916cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.654155, - "y": -2649.566435 - }, - "endPoint": { - "x": 306.821187, - "y": -2649.378703 - } - } - }, - { - "id": "19d2dd52-0e92-5ba4-913b-74332caac2b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.821187, - "y": -2649.378703 - }, - "endPoint": { - "x": 306.857712, - "y": -2649.044971 - } - } - }, - { - "id": "b101efa3-8b97-5f9c-9638-63f8477d1eda", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.857712, - "y": -2649.044971 - }, - "endPoint": { - "x": 306.810722, - "y": -2648.695658 - } - } - }, - { - "id": "e7dcd369-85a2-5003-a7f2-3399d93734ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.810722, - "y": -2648.695658 - }, - "endPoint": { - "x": 306.638355, - "y": -2648.328949 - } - } - }, - { - "id": "e06298e3-efdb-5bf6-befd-91aefff2bb46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.638355, - "y": -2648.328949 - }, - "endPoint": { - "x": 306.262637, - "y": -2648.052582 - } - } - }, - { - "id": "efa14ff0-f532-5c64-a924-96a915e2690f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.262637, - "y": -2648.052582 - }, - "endPoint": { - "x": 306.00696, - "y": -2647.927446 - } - } - }, - { - "id": "6713671b-53b8-5f8b-806f-a1574b8aae62", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.00696, - "y": -2647.927446 - }, - "endPoint": { - "x": 305.719888, - "y": -2647.963946 - } - } - }, - { - "id": "8d85d9d9-a71c-5ebf-b80d-6e17efa2ba92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.719888, - "y": -2647.963946 - }, - "endPoint": { - "x": 305.469443, - "y": -2647.979581 - } - } - }, - { - "id": "a686285b-bee4-5bde-9760-6f6f073bcdcb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.469443, - "y": -2647.979581 - }, - "endPoint": { - "x": 305.333807, - "y": -2648.083852 - } - } - }, - { - "id": "0410b0bc-8a3c-53e6-a03f-f27345df05b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.333807, - "y": -2648.083852 - }, - "endPoint": { - "x": 305.093725, - "y": -2648.250718 - } - } - }, - { - "id": "6eaec1eb-91cb-578c-bd71-466a1ca885ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.093725, - "y": -2648.250718 - }, - "endPoint": { - "x": 304.81722, - "y": -2648.412354 - } - } - }, - { - "id": "9b24007c-a291-541e-9630-9c011575e834", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.81722, - "y": -2648.412354 - }, - "endPoint": { - "x": 304.634491, - "y": -2648.584451 - } - } - }, - { - "id": "92b55228-2458-55da-b1a5-514036173dab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.634491, - "y": -2648.584451 - }, - "endPoint": { - "x": 304.498855, - "y": -2648.865993 - } - } - }, - { - "id": "677e7d5e-5281-5a7a-976c-e20aaed2a625", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.498855, - "y": -2648.865993 - }, - "endPoint": { - "x": 304.524915, - "y": -2649.147535 - } - } - }, - { - "id": "e2b3925a-8cad-5dbf-9c35-84f2703d0b77", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.524915, - "y": -2649.147535 - }, - "endPoint": { - "x": 304.618896, - "y": -2649.507362 - } - } - }, - { - "id": "296b8bc9-e738-50ab-8906-9eacf4b01896", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.618896, - "y": -2649.507362 - }, - "endPoint": { - "x": 304.926796, - "y": -2649.747174 - } - } - }, - { - "id": "97c8a225-4cad-5b62-aa1b-552dcaba0794", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.926796, - "y": -2649.747174 - }, - "endPoint": { - "x": 305.208533, - "y": -2649.945311 - } - } - }, - { - "id": "ea09c0ff-d6c2-5053-8853-19b3df52441b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.208533, - "y": -2649.945311 - }, - "endPoint": { - "x": 305.599949, - "y": -2649.924445 - } - } - }, - { - "id": "45b5f1ed-99d0-5893-9ebf-802ffcd92abc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.599949, - "y": -2649.924445 - }, - "endPoint": { - "x": 306.043485, - "y": -2649.929676 - } - } - }, - { - "id": "537d1ebc-bf2b-50ac-abb4-2d1128dabeaf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.043485, - "y": -2649.929676 - }, - "endPoint": { - "x": 306.330455, - "y": -2649.903635 - } - } - }, - { - "id": "f372dac6-227b-55a0-9412-d5aace89a67b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.330455, - "y": -2649.903635 - }, - "endPoint": { - "x": 306.534012, - "y": -2649.80977 - } - } - }, - { - "id": "90ae34fb-c77c-593f-8d2f-3c65f9ebd5b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.534012, - "y": -2649.80977 - }, - "endPoint": { - "x": 306.549607, - "y": -2649.674174 - } - } - }, - { - "id": "80961d95-f10d-57f4-86cf-8da7d2232aa7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.549607, - "y": -2649.674174 - }, - "endPoint": { - "x": 306.654155, - "y": -2649.566435 - } - } - } - ] - }, - { - "id": "60f8afea-5fea-5cfd-9a92-f72cd4ddb6ea", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "21738a45-7368-5714-bbe1-9bed5d516f54", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.654155, - "y": -2649.566435 - }, - "endPoint": { - "x": 306.821187, - "y": -2649.378703 - } - } - }, - { - "id": "cffaecaf-c384-5aa5-bc56-52e212540f64", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.821187, - "y": -2649.378703 - }, - "endPoint": { - "x": 306.857712, - "y": -2649.044971 - } - } - }, - { - "id": "756b6629-aaf8-5ded-85b7-ed55484a609e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.857712, - "y": -2649.044971 - }, - "endPoint": { - "x": 306.810722, - "y": -2648.695658 - } - } - }, - { - "id": "2a80edee-6653-5c4b-9d50-50d6d7b3870f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.810722, - "y": -2648.695658 - }, - "endPoint": { - "x": 306.638355, - "y": -2648.328949 - } - } - }, - { - "id": "10b47c96-f2e0-54a2-8758-47f74968d8c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.638355, - "y": -2648.328949 - }, - "endPoint": { - "x": 306.262637, - "y": -2648.052582 - } - } - }, - { - "id": "e6f8a3ff-1a3d-5f6a-be12-9890cccf7200", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.262637, - "y": -2648.052582 - }, - "endPoint": { - "x": 306.00696, - "y": -2647.927446 - } - } - }, - { - "id": "13a285ed-455b-51db-a904-d50cb97f052f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.00696, - "y": -2647.927446 - }, - "endPoint": { - "x": 305.719888, - "y": -2647.963946 - } - } - }, - { - "id": "925623c3-4b7c-5b2b-8e2e-8099495add50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.719888, - "y": -2647.963946 - }, - "endPoint": { - "x": 305.469443, - "y": -2647.979581 - } - } - }, - { - "id": "65c9d1fe-4256-5ccb-a541-8dbe49d56154", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.469443, - "y": -2647.979581 - }, - "endPoint": { - "x": 305.333807, - "y": -2648.083852 - } - } - }, - { - "id": "c686f19a-cf5d-5ccb-944d-00a6e0cdc111", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.333807, - "y": -2648.083852 - }, - "endPoint": { - "x": 305.093725, - "y": -2648.250718 - } - } - }, - { - "id": "334760f8-5274-5d91-993a-9f9c41dd7ce8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.093725, - "y": -2648.250718 - }, - "endPoint": { - "x": 304.81722, - "y": -2648.412354 - } - } - }, - { - "id": "a1edc036-8be1-5de7-b337-d2802a2971b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.81722, - "y": -2648.412354 - }, - "endPoint": { - "x": 304.634491, - "y": -2648.584451 - } - } - }, - { - "id": "61c06f61-58e6-50d2-af08-bc5c8dfb2a5d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.634491, - "y": -2648.584451 - }, - "endPoint": { - "x": 304.498855, - "y": -2648.865993 - } - } - }, - { - "id": "68c93e38-0d8a-5b77-b9f8-337b0ae2024b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.498855, - "y": -2648.865993 - }, - "endPoint": { - "x": 304.524915, - "y": -2649.147535 - } - } - }, - { - "id": "4db07b40-efc2-51f7-9cfd-000352fe25ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.524915, - "y": -2649.147535 - }, - "endPoint": { - "x": 304.618896, - "y": -2649.507362 - } - } - }, - { - "id": "3e584628-c2dc-52b4-aa99-79ce93e50b3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.618896, - "y": -2649.507362 - }, - "endPoint": { - "x": 304.926796, - "y": -2649.747174 - } - } - }, - { - "id": "3976fdbf-7187-577a-b246-c5bb4310c3cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.926796, - "y": -2649.747174 - }, - "endPoint": { - "x": 305.208533, - "y": -2649.945311 - } - } - }, - { - "id": "c5eccfab-03fc-5bca-a1ea-9a3d1c231141", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.208533, - "y": -2649.945311 - }, - "endPoint": { - "x": 305.599949, - "y": -2649.924445 - } - } - }, - { - "id": "b1e69515-c1bf-5956-b959-f571984c27a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.599949, - "y": -2649.924445 - }, - "endPoint": { - "x": 306.043485, - "y": -2649.929676 - } - } - }, - { - "id": "a8471aa2-d33e-5939-a59b-93f35080d807", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.043485, - "y": -2649.929676 - }, - "endPoint": { - "x": 306.330455, - "y": -2649.903635 - } - } - }, - { - "id": "0838bac3-94b9-57d6-b4e9-fb54ce39c949", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.330455, - "y": -2649.903635 - }, - "endPoint": { - "x": 306.534012, - "y": -2649.80977 - } - } - }, - { - "id": "5fb3d7d4-78bf-5422-bc7e-f9b0494dc78e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.534012, - "y": -2649.80977 - }, - "endPoint": { - "x": 306.549607, - "y": -2649.674174 - } - } - }, - { - "id": "7e5f6fd0-9883-5a3d-b428-bc7af47334fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.549607, - "y": -2649.674174 - }, - "endPoint": { - "x": 306.654155, - "y": -2649.566435 - } - } - } - ] - }, - { - "id": "15026557-61c3-5244-8fef-9887ff4fd10e", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "f4e73cab-bd6b-5fa2-b5fc-bddda34ced58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.751623, - "y": -2649.579537 - }, - "endPoint": { - "x": 309.811438, - "y": -2648.891758 - } - } - }, - { - "id": "40bc9b94-0603-5ec2-bfb4-efe01f885975", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.811438, - "y": -2648.891758 - }, - "endPoint": { - "x": 309.766603, - "y": -2648.29366 - } - } - }, - { - "id": "9559c719-8a2b-5788-b8c0-8b741a3c9a23", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.766603, - "y": -2648.29366 - }, - "endPoint": { - "x": 309.676726, - "y": -2648.02456 - } - } - }, - { - "id": "a0f80359-4666-593f-bbb0-7d684835ef03", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.676726, - "y": -2648.02456 - }, - "endPoint": { - "x": 309.497177, - "y": -2647.725511 - } - } - }, - { - "id": "3ea81244-3760-516f-81f3-72117a042c9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.497177, - "y": -2647.725511 - }, - "endPoint": { - "x": 309.542116, - "y": -2647.48625 - } - } - }, - { - "id": "d892b7b4-3dc3-5ff0-96bd-64c12971c324", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.542116, - "y": -2647.48625 - }, - "endPoint": { - "x": 309.287772, - "y": -2647.276937 - } - } - }, - { - "id": "d8da4663-c063-5048-8f42-216f3b7397dc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.287772, - "y": -2647.276937 - }, - "endPoint": { - "x": 308.928573, - "y": -2646.977888 - } - } - }, - { - "id": "97e68b36-1111-5aa1-8c86-9f98a6754aeb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.928573, - "y": -2646.977888 - }, - "endPoint": { - "x": 308.344989, - "y": -2647.097519 - } - } - }, - { - "id": "25508f69-010f-56ea-9f56-69d6b4d3e6cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.344989, - "y": -2647.097519 - }, - "endPoint": { - "x": 308.225358, - "y": -2647.516199 - } - } - }, - { - "id": "1c0e5810-237c-5188-80c1-5749d265da46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.225358, - "y": -2647.516199 - }, - "endPoint": { - "x": 308.210379, - "y": -2648.233872 - } - } - }, - { - "id": "a18305b7-20ca-5f3a-9df2-7a45c84fec95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.210379, - "y": -2648.233872 - }, - "endPoint": { - "x": 308.175187, - "y": -2648.994817 - } - } - }, - { - "id": "c092e863-6a2d-54fe-88e4-9b004b96b247", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.175187, - "y": -2648.994817 - }, - "endPoint": { - "x": 308.152513, - "y": -2649.75323 - } - } - }, - { - "id": "5f15d292-f1b3-5ad7-b898-c5773019acf0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.152513, - "y": -2649.75323 - }, - "endPoint": { - "x": 308.323546, - "y": -2650.147521 - } - } - }, - { - "id": "c075720b-7e46-51dc-9438-7eba5384ec1e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.323546, - "y": -2650.147521 - }, - "endPoint": { - "x": 308.441945, - "y": -2650.200097 - } - } - }, - { - "id": "00f56d39-f9a8-592a-b7f5-fb1b228ac411", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.441945, - "y": -2650.200097 - }, - "endPoint": { - "x": 308.678641, - "y": -2650.489291 - } - } - }, - { - "id": "ba2bef31-e558-5d7b-8e44-f4c8cdb8ac2d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.678641, - "y": -2650.489291 - }, - "endPoint": { - "x": 309.139106, - "y": -2650.489291 - } - } - }, - { - "id": "048725f0-d28d-5b7e-9491-1bdc5085376d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.139106, - "y": -2650.489291 - }, - "endPoint": { - "x": 309.481172, - "y": -2650.173836 - } - } - }, - { - "id": "44d66e8c-7f4c-59a2-8dd9-e0ec715ee1ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.481172, - "y": -2650.173836 - }, - "endPoint": { - "x": 309.665337, - "y": -2649.77949 - } - } - }, - { - "id": "c518ffdf-94f7-5323-9d4b-b23bc8a78e05", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.665337, - "y": -2649.77949 - }, - "endPoint": { - "x": 309.751623, - "y": -2649.579537 - } - } - } - ] - }, - { - "id": "98db6e27-ec04-58a4-8502-08058e4d80c8", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "center": { - "x": 311.58219692558123, - "y": -2644.971199457894 - }, - "radius": 10.608872725901202 - } - }, - { - "id": "b8c67280-eb85-5a91-865f-2fc962218422", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "3586c10c-956f-55e9-8480-7cd62d7307aa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.95478, - "y": -2644.968337 - }, - "endPoint": { - "x": 322.896087, - "y": -2646.130677 - } - } - }, - { - "id": "3c5172d0-5b53-5560-9455-a9f305d8b006", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.896087, - "y": -2646.130677 - }, - "endPoint": { - "x": 322.723817, - "y": -2647.25944 - } - } - }, - { - "id": "e466141a-58ab-5181-a268-f513003ca347", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.723817, - "y": -2647.25944 - }, - "endPoint": { - "x": 322.443685, - "y": -2648.348914 - } - } - }, - { - "id": "acced5a5-774f-5195-beff-0f898a5d0337", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.443685, - "y": -2648.348914 - }, - "endPoint": { - "x": 322.061405, - "y": -2649.393382 - } - } - }, - { - "id": "9f1fd9ee-2133-5d02-bf07-8be08a068d90", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.061405, - "y": -2649.393382 - }, - "endPoint": { - "x": 321.582691, - "y": -2650.387131 - } - } - }, - { - "id": "4b508f3b-3fc1-57aa-a15c-6d65984ddece", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.582691, - "y": -2650.387131 - }, - "endPoint": { - "x": 321.013258, - "y": -2651.324447 - } - } - }, - { - "id": "0cf85494-9c24-5d36-98c9-0c9b8ab839a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.013258, - "y": -2651.324447 - }, - "endPoint": { - "x": 320.358819, - "y": -2652.199615 - } - } - }, - { - "id": "fb009f97-c7b3-50bc-83c6-eabf44008635", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.358819, - "y": -2652.199615 - }, - "endPoint": { - "x": 319.62509, - "y": -2653.006921 - } - } - }, - { - "id": "693c890e-0e1b-5286-971e-af573039e1d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.62509, - "y": -2653.006921 - }, - "endPoint": { - "x": 318.817784, - "y": -2653.74065 - } - } - }, - { - "id": "ec2ef243-d38d-52ee-84c8-56dbfd1e73c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.817784, - "y": -2653.74065 - }, - "endPoint": { - "x": 317.942616, - "y": -2654.395088 - } - } - }, - { - "id": "f4fbc78d-48fe-5aae-83aa-858d6f0c9955", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.942616, - "y": -2654.395088 - }, - "endPoint": { - "x": 317.005301, - "y": -2654.964522 - } - } - }, - { - "id": "03afa893-2272-54fd-85b8-9cfffd55f6df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.005301, - "y": -2654.964522 - }, - "endPoint": { - "x": 316.011551, - "y": -2655.443236 - } - } - }, - { - "id": "97c632cb-80c9-5edc-868b-3f9e15434519", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.011551, - "y": -2655.443236 - }, - "endPoint": { - "x": 314.967083, - "y": -2655.825516 - } - } - }, - { - "id": "65f42763-f435-5c4d-b2e1-f3d34f8975aa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.967083, - "y": -2655.825516 - }, - "endPoint": { - "x": 313.87761, - "y": -2656.105648 - } - } - }, - { - "id": "14456e65-7e36-5668-9f5b-94b27401b8de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.87761, - "y": -2656.105648 - }, - "endPoint": { - "x": 312.748846, - "y": -2656.277918 - } - } - }, - { - "id": "874b0716-bfe6-5aa5-a94f-33284d6d17a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.748846, - "y": -2656.277918 - }, - "endPoint": { - "x": 311.586506, - "y": -2656.336611 - } - } - }, - { - "id": "926d6a73-f5d6-5963-a965-d5185c524f17", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.586506, - "y": -2656.336611 - }, - "endPoint": { - "x": 310.424166, - "y": -2656.277918 - } - } - }, - { - "id": "4e54ec10-ea59-5568-b8ee-0b992d0bbce7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.424166, - "y": -2656.277918 - }, - "endPoint": { - "x": 309.295402, - "y": -2656.105648 - } - } - }, - { - "id": "64eef890-b1fc-5d4f-b0bc-2ac0f1316a5d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.295402, - "y": -2656.105648 - }, - "endPoint": { - "x": 308.205929, - "y": -2655.825516 - } - } - }, - { - "id": "596a1ece-1c3f-5655-8ede-78a8403998fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.205929, - "y": -2655.825516 - }, - "endPoint": { - "x": 307.161461, - "y": -2655.443236 - } - } - }, - { - "id": "a0409e33-23ac-5349-8051-d440edc2129b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.161461, - "y": -2655.443236 - }, - "endPoint": { - "x": 306.167712, - "y": -2654.964522 - } - } - }, - { - "id": "777a8a00-45a1-5d19-aeeb-7f6b1dd77f43", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.167712, - "y": -2654.964522 - }, - "endPoint": { - "x": 305.230396, - "y": -2654.395088 - } - } - }, - { - "id": "3cb8c942-fdfd-5f92-a3b7-3cc8f41f9662", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.230396, - "y": -2654.395088 - }, - "endPoint": { - "x": 304.355228, - "y": -2653.74065 - } - } - }, - { - "id": "434bc986-2cb4-5623-b069-1f4990ddad0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.355228, - "y": -2653.74065 - }, - "endPoint": { - "x": 303.547922, - "y": -2653.006921 - } - } - }, - { - "id": "58aead50-8cc3-5a6d-9e56-ac9456d9ad6d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.547922, - "y": -2653.006921 - }, - "endPoint": { - "x": 302.814193, - "y": -2652.199615 - } - } - }, - { - "id": "a536d458-80ec-53bf-b289-cdcdef2706da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.814193, - "y": -2652.199615 - }, - "endPoint": { - "x": 302.159755, - "y": -2651.324447 - } - } - }, - { - "id": "9caa0dc9-8206-535d-8b9d-a0f5f96ffcc0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.159755, - "y": -2651.324447 - }, - "endPoint": { - "x": 301.590321, - "y": -2650.387131 - } - } - }, - { - "id": "1bd28dea-9c09-5340-b67d-a46996f8ebe3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.590321, - "y": -2650.387131 - }, - "endPoint": { - "x": 301.111607, - "y": -2649.393382 - } - } - }, - { - "id": "2fc3e0aa-cc07-5b19-8423-9d8bafd7fd54", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.111607, - "y": -2649.393382 - }, - "endPoint": { - "x": 300.729327, - "y": -2648.348914 - } - } - }, - { - "id": "76b43c20-3c18-5640-9fd1-bc19db623337", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.729327, - "y": -2648.348914 - }, - "endPoint": { - "x": 300.449195, - "y": -2647.25944 - } - } - }, - { - "id": "1bdc9faa-6f8a-5bc7-ade1-fc4d5de60f72", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.449195, - "y": -2647.25944 - }, - "endPoint": { - "x": 300.276925, - "y": -2646.130677 - } - } - }, - { - "id": "7d0a87fd-fc6b-5bab-adb8-5489103fdbd4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.276925, - "y": -2646.130677 - }, - "endPoint": { - "x": 300.218232, - "y": -2644.968337 - } - } - }, - { - "id": "9a5b8cb4-0681-5636-ace0-707e2b7f46ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.218232, - "y": -2644.968337 - }, - "endPoint": { - "x": 300.276925, - "y": -2643.805997 - } - } - }, - { - "id": "ea9e8bad-30b8-555b-9231-b55565853f5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.276925, - "y": -2643.805997 - }, - "endPoint": { - "x": 300.449195, - "y": -2642.677233 - } - } - }, - { - "id": "4b71bb4b-3734-5364-ba8e-d38d49f93657", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.449195, - "y": -2642.677233 - }, - "endPoint": { - "x": 300.729327, - "y": -2641.58776 - } - } - }, - { - "id": "75df6e19-67c2-5c0e-8ff4-9691e56d3ccb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.729327, - "y": -2641.58776 - }, - "endPoint": { - "x": 301.111607, - "y": -2640.543291 - } - } - }, - { - "id": "f755239c-f244-5d70-b8d9-378d9598a463", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.111607, - "y": -2640.543291 - }, - "endPoint": { - "x": 301.590321, - "y": -2639.549542 - } - } - }, - { - "id": "33f99131-995e-59b1-8a3e-f6a55f126ec0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.590321, - "y": -2639.549542 - }, - "endPoint": { - "x": 302.159755, - "y": -2638.612226 - } - } - }, - { - "id": "1a8ce787-e2ac-54dd-a736-e712bc0c2442", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.159755, - "y": -2638.612226 - }, - "endPoint": { - "x": 302.814193, - "y": -2637.737059 - } - } - }, - { - "id": "851eebeb-eb86-5957-8ee2-6c33e8c77d6f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.814193, - "y": -2637.737059 - }, - "endPoint": { - "x": 303.547922, - "y": -2636.929753 - } - } - }, - { - "id": "5406a191-2349-5b15-9042-155ef70ca63a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.547922, - "y": -2636.929753 - }, - "endPoint": { - "x": 304.355228, - "y": -2636.196024 - } - } - }, - { - "id": "47efc9f4-a4d8-59b9-92d8-c09ee0d91c98", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.355228, - "y": -2636.196024 - }, - "endPoint": { - "x": 305.230396, - "y": -2635.541585 - } - } - }, - { - "id": "889ba44d-0924-5885-b865-dc799a09bbf3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.230396, - "y": -2635.541585 - }, - "endPoint": { - "x": 306.167712, - "y": -2634.972152 - } - } - }, - { - "id": "b6ce2170-9583-5982-a858-928a7c2f1fb1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.167712, - "y": -2634.972152 - }, - "endPoint": { - "x": 307.161461, - "y": -2634.493438 - } - } - }, - { - "id": "49eb1730-0503-5741-a5e7-bccf2418dfc8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.161461, - "y": -2634.493438 - }, - "endPoint": { - "x": 308.205929, - "y": -2634.111158 - } - } - }, - { - "id": "7f028c27-407e-586c-9278-c91881dfa3d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.205929, - "y": -2634.111158 - }, - "endPoint": { - "x": 309.295402, - "y": -2633.831025 - } - } - }, - { - "id": "9d5d9e1d-93ff-5a7a-b18d-efa1315efa28", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.295402, - "y": -2633.831025 - }, - "endPoint": { - "x": 310.424166, - "y": -2633.658756 - } - } - }, - { - "id": "9bc8a733-f870-5417-b4f2-65897f512ea1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.424166, - "y": -2633.658756 - }, - "endPoint": { - "x": 311.586506, - "y": -2633.600062 - } - } - }, - { - "id": "a1f0fca8-6ca5-5488-9edb-3158c2ec4e86", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.586506, - "y": -2633.600062 - }, - "endPoint": { - "x": 312.748846, - "y": -2633.658756 - } - } - }, - { - "id": "29868f5e-f9b9-57cf-b081-9a6495f4490d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.748846, - "y": -2633.658756 - }, - "endPoint": { - "x": 313.87761, - "y": -2633.831025 - } - } - }, - { - "id": "3d11e67b-322d-548d-b167-2a1f372ee9e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.87761, - "y": -2633.831025 - }, - "endPoint": { - "x": 314.967083, - "y": -2634.111158 - } - } - }, - { - "id": "f352b498-58e8-579b-8967-ce054c2741f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.967083, - "y": -2634.111158 - }, - "endPoint": { - "x": 316.011551, - "y": -2634.493438 - } - } - }, - { - "id": "7fc82359-73b3-5195-864a-1338f99baaa0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.011551, - "y": -2634.493438 - }, - "endPoint": { - "x": 317.005301, - "y": -2634.972152 - } - } - }, - { - "id": "058024c6-3582-5a08-bb77-539183b75b16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.005301, - "y": -2634.972152 - }, - "endPoint": { - "x": 317.942616, - "y": -2635.541585 - } - } - }, - { - "id": "5ae401ea-3c41-5955-af78-90a9cd576fb4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.942616, - "y": -2635.541585 - }, - "endPoint": { - "x": 318.817784, - "y": -2636.196024 - } - } - }, - { - "id": "b1e587e9-1ddc-5bdf-9c12-1b0d71bf0d74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.817784, - "y": -2636.196024 - }, - "endPoint": { - "x": 319.62509, - "y": -2636.929753 - } - } - }, - { - "id": "c6d255a9-fd29-5a1a-957f-a08945c510fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.62509, - "y": -2636.929753 - }, - "endPoint": { - "x": 320.358819, - "y": -2637.737059 - } - } - }, - { - "id": "a73e14f8-e66c-55b3-9ed7-1f63bc1f9d5b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.358819, - "y": -2637.737059 - }, - "endPoint": { - "x": 321.013258, - "y": -2638.612226 - } - } - }, - { - "id": "ce141203-4b7d-5d23-90e1-96ce3971ce0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.013258, - "y": -2638.612226 - }, - "endPoint": { - "x": 321.582691, - "y": -2639.549542 - } - } - }, - { - "id": "1c502c79-ef1e-51ec-8f9a-418f044dd256", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.582691, - "y": -2639.549542 - }, - "endPoint": { - "x": 322.061405, - "y": -2640.543291 - } - } - }, - { - "id": "e2371dfa-3179-5a24-a830-535ee81a3132", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.061405, - "y": -2640.543291 - }, - "endPoint": { - "x": 322.443685, - "y": -2641.58776 - } - } - }, - { - "id": "9acba59f-eb8c-52df-934e-1b00155ad27d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.443685, - "y": -2641.58776 - }, - "endPoint": { - "x": 322.723817, - "y": -2642.677233 - } - } - }, - { - "id": "20236985-888f-57aa-99e1-e19fbbf0068b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.723817, - "y": -2642.677233 - }, - "endPoint": { - "x": 322.896087, - "y": -2643.805997 - } - } - }, - { - "id": "1c152ef3-574e-5beb-8efd-89033903d2be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.896087, - "y": -2643.805997 - }, - "endPoint": { - "x": 322.95478, - "y": -2644.968337 - } - } - } - ] - }, - { - "id": "5e54435f-424b-5f34-b759-26769b9235af", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "f707e14b-c260-511d-aa75-9452cda485bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.19107, - "y": -2644.971199 - }, - "endPoint": { - "x": 322.136297, - "y": -2643.886504 - } - } - }, - { - "id": "74ed9ad6-5f5e-53b7-82ef-da33e9d60847", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.136297, - "y": -2643.886504 - }, - "endPoint": { - "x": 321.975535, - "y": -2642.833142 - } - } - }, - { - "id": "70b84aeb-b938-57cb-a31c-ed7188c7d941", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.975535, - "y": -2642.833142 - }, - "endPoint": { - "x": 321.714116, - "y": -2641.816445 - } - } - }, - { - "id": "29b2e19c-e5fd-598a-afa6-4ab7f0af62f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.714116, - "y": -2641.816445 - }, - "endPoint": { - "x": 321.357372, - "y": -2640.841747 - } - } - }, - { - "id": "47c2017a-f54e-5c52-8d1b-f5ede5119e6d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.357372, - "y": -2640.841747 - }, - "endPoint": { - "x": 320.379241, - "y": -2639.039678 - } - } - }, - { - "id": "c5729d2a-8937-5c58-bf3d-63a1386e71af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.379241, - "y": -2639.039678 - }, - "endPoint": { - "x": 319.083803, - "y": -2637.469594 - } - } - }, - { - "id": "530f8ebb-9c7a-5d42-82c5-e20893726250", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.083803, - "y": -2637.469594 - }, - "endPoint": { - "x": 317.513719, - "y": -2636.174156 - } - } - }, - { - "id": "8dd3a578-2f5c-5c44-9b56-10dba1c116d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.513719, - "y": -2636.174156 - }, - "endPoint": { - "x": 315.711649, - "y": -2635.196025 - } - } - }, - { - "id": "95700f82-69c5-540d-aa98-e797ff90b8d4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.711649, - "y": -2635.196025 - }, - "endPoint": { - "x": 314.736951, - "y": -2634.839281 - } - } - }, - { - "id": "1b874dd4-56a2-507a-9a89-322f1516c3b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.736951, - "y": -2634.839281 - }, - "endPoint": { - "x": 313.720255, - "y": -2634.577861 - } - } - }, - { - "id": "b8c04755-8852-5f23-9478-ce6294cfc43d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.720255, - "y": -2634.577861 - }, - "endPoint": { - "x": 312.666893, - "y": -2634.417099 - } - } - }, - { - "id": "6aa5e512-969f-5f2b-8eb8-d5ed11cfcca1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.666893, - "y": -2634.417099 - }, - "endPoint": { - "x": 311.582197, - "y": -2634.362327 - } - } - }, - { - "id": "bda03f91-4110-58de-b10f-09590ff28765", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.582197, - "y": -2634.362327 - }, - "endPoint": { - "x": 310.497501, - "y": -2634.417099 - } - } - }, - { - "id": "0e77546a-4f42-56ff-b4c3-7094805e9361", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.497501, - "y": -2634.417099 - }, - "endPoint": { - "x": 309.444139, - "y": -2634.577861 - } - } - }, - { - "id": "6740f717-be8f-56c5-9e95-c154c827ccff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.444139, - "y": -2634.577861 - }, - "endPoint": { - "x": 308.427443, - "y": -2634.839281 - } - } - }, - { - "id": "f491863d-10ab-5031-b9f0-57e6c428be0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.427443, - "y": -2634.839281 - }, - "endPoint": { - "x": 307.452745, - "y": -2635.196025 - } - } - }, - { - "id": "e933c91e-c9fd-5691-b410-baf3614a3083", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.452745, - "y": -2635.196025 - }, - "endPoint": { - "x": 305.650675, - "y": -2636.174156 - } - } - }, - { - "id": "39006ed2-76e0-50cb-b370-a5a83fa3f15d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.650675, - "y": -2636.174156 - }, - "endPoint": { - "x": 304.080591, - "y": -2637.469594 - } - } - }, - { - "id": "91be2c91-b2d7-5750-ad80-cc6b45454411", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.080591, - "y": -2637.469594 - }, - "endPoint": { - "x": 302.785153, - "y": -2639.039678 - } - } - }, - { - "id": "ab7eab99-6900-5b67-a5ca-b0e6583cff1e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.785153, - "y": -2639.039678 - }, - "endPoint": { - "x": 301.807022, - "y": -2640.841747 - } - } - }, - { - "id": "e538a71a-8cf1-5552-9908-e71533c04dfc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.807022, - "y": -2640.841747 - }, - "endPoint": { - "x": 301.450278, - "y": -2641.816445 - } - } - }, - { - "id": "a23bec9c-8469-5b19-af14-a48bf8b727eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.450278, - "y": -2641.816445 - }, - "endPoint": { - "x": 301.188859, - "y": -2642.833142 - } - } - }, - { - "id": "b1862077-0d37-57e0-b80f-2e92eb27a71c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.188859, - "y": -2642.833142 - }, - "endPoint": { - "x": 301.028097, - "y": -2643.886504 - } - } - }, - { - "id": "383dfe39-3ce2-57aa-a481-9d6dafacb5ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.028097, - "y": -2643.886504 - }, - "endPoint": { - "x": 300.973324, - "y": -2644.971199 - } - } - }, - { - "id": "57fa9547-a334-599b-af7e-4f12c1812360", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.973324, - "y": -2644.971199 - }, - "endPoint": { - "x": 301.028097, - "y": -2646.055895 - } - } - }, - { - "id": "e3a976e3-7a0c-53fa-8858-5e15e89f9103", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.028097, - "y": -2646.055895 - }, - "endPoint": { - "x": 301.188859, - "y": -2647.109257 - } - } - }, - { - "id": "8826acaa-e99a-527e-b2ae-f6637478e188", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.188859, - "y": -2647.109257 - }, - "endPoint": { - "x": 301.450278, - "y": -2648.125954 - } - } - }, - { - "id": "efd47466-d75a-5d05-a80e-f2fd5c11a85d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.450278, - "y": -2648.125954 - }, - "endPoint": { - "x": 301.807022, - "y": -2649.100651 - } - } - }, - { - "id": "730cb6f3-7a52-5124-aab8-a203054cc433", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.807022, - "y": -2649.100651 - }, - "endPoint": { - "x": 302.785153, - "y": -2650.902721 - } - } - }, - { - "id": "c1b238d5-a91e-533c-bfa7-7d8dfe0e58b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.785153, - "y": -2650.902721 - }, - "endPoint": { - "x": 304.080591, - "y": -2652.472805 - } - } - }, - { - "id": "59c89939-4339-54e6-b155-7ee325190c57", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.080591, - "y": -2652.472805 - }, - "endPoint": { - "x": 305.650675, - "y": -2653.768243 - } - } - }, - { - "id": "251fcf73-6a52-5b3a-a231-be5b388164ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.650675, - "y": -2653.768243 - }, - "endPoint": { - "x": 307.452745, - "y": -2654.746374 - } - } - }, - { - "id": "219ef157-b467-5be4-a5e1-797b73880830", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.452745, - "y": -2654.746374 - }, - "endPoint": { - "x": 308.427443, - "y": -2655.103118 - } - } - }, - { - "id": "041435c6-9bca-5530-8ce5-643b42cca821", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.427443, - "y": -2655.103118 - }, - "endPoint": { - "x": 309.444139, - "y": -2655.364538 - } - } - }, - { - "id": "9a444da0-9dd9-55f4-8820-fee40013ba2d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.444139, - "y": -2655.364538 - }, - "endPoint": { - "x": 310.497501, - "y": -2655.5253 - } - } - }, - { - "id": "5792a24e-059d-5e8a-9366-35913720c3c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.497501, - "y": -2655.5253 - }, - "endPoint": { - "x": 311.582197, - "y": -2655.580072 - } - } - }, - { - "id": "6cf885ce-80b1-5368-b2ee-e53be12b91bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.582197, - "y": -2655.580072 - }, - "endPoint": { - "x": 312.666893, - "y": -2655.5253 - } - } - }, - { - "id": "fe1510e0-54ae-5505-9aa5-320e92ec878e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.666893, - "y": -2655.5253 - }, - "endPoint": { - "x": 313.720255, - "y": -2655.364538 - } - } - }, - { - "id": "a83067f8-01f9-5d79-8a27-043166530178", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.720255, - "y": -2655.364538 - }, - "endPoint": { - "x": 314.736951, - "y": -2655.103118 - } - } - }, - { - "id": "678a2730-a6ba-58be-9827-9a3bc2ee1521", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.736951, - "y": -2655.103118 - }, - "endPoint": { - "x": 315.711649, - "y": -2654.746374 - } - } - }, - { - "id": "c5fdefd1-46e3-5f1f-a182-b6a0fa16f454", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.711649, - "y": -2654.746374 - }, - "endPoint": { - "x": 317.513719, - "y": -2653.768243 - } - } - }, - { - "id": "34a9b771-3bab-51de-81ab-6a70740a31e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.513719, - "y": -2653.768243 - }, - "endPoint": { - "x": 319.083803, - "y": -2652.472805 - } - } - }, - { - "id": "bd2c1f9c-1b29-5948-9d89-0ba8a8949d57", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.083803, - "y": -2652.472805 - }, - "endPoint": { - "x": 320.379241, - "y": -2650.902721 - } - } - }, - { - "id": "2236caea-d101-52a4-9824-db964571f0b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.379241, - "y": -2650.902721 - }, - "endPoint": { - "x": 321.357372, - "y": -2649.100651 - } - } - }, - { - "id": "307b7564-c17f-589d-8b27-4c6ae87db94b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.357372, - "y": -2649.100651 - }, - "endPoint": { - "x": 321.714116, - "y": -2648.125954 - } - } - }, - { - "id": "0da94ed6-ec61-58fa-a5e7-b9cb290ca355", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.714116, - "y": -2648.125954 - }, - "endPoint": { - "x": 321.975535, - "y": -2647.109257 - } - } - }, - { - "id": "5ac6942b-3214-5610-900f-e399480d4f01", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.975535, - "y": -2647.109257 - }, - "endPoint": { - "x": 322.136297, - "y": -2646.055895 - } - } - }, - { - "id": "f3dab56e-37b6-56a6-bc86-049839be5187", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.136297, - "y": -2646.055895 - }, - "endPoint": { - "x": 322.19107, - "y": -2644.971199 - } - } - } - ] - }, - { - "id": "031bdc8e-3713-5460-9e13-92cec396efbc", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "center": { - "x": 311.58650608927564, - "y": -2644.9683366917816 - }, - "radius": 11.368274263557154 - } - }, - { - "id": "45075c07-198c-520c-aa75-2fd5fe0deb3e", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.9145661734724, - "y": -2099.072176031947 - }, - "endPoint": { - "x": -13.86008171385826, - "y": -2099.072176031947 - } - } - }, - { - "id": "96e8742f-c20f-56fe-ba80-cfa4c00ac33d", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.9274769714898, - "y": -2100.059265233813 - }, - "endPoint": { - "x": -12.87299251205029, - "y": -2100.059265233813 - } - } - }, - { - "id": "fffed52a-e08e-5d3c-a8b2-1e2f1c931a79", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "df7422d1-0f49-50e3-a535-f184551fc57d", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.914566, - "y": -2099.072176 - }, - "endPoint": { - "x": 755.927477, - "y": -2100.059265 - } - } - }, - { - "id": "ed3dd88f-791a-5798-becf-a574d051a0cb", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.927477, - "y": -2100.059265 - }, - "endPoint": { - "x": -12.872993, - "y": -2100.059265 - } - } - }, - { - "id": "77321468-dabd-5853-9905-91a68919f4fd", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -12.872993, - "y": -2100.059265 - }, - "endPoint": { - "x": -13.860082, - "y": -2099.072176 - } - } - }, - { - "id": "5e39216d-aa59-51c0-9cb3-5bf27fb4eba0", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -13.860082, - "y": -2099.072176 - }, - "endPoint": { - "x": 756.914566, - "y": -2099.072176 - } - } - } - ] - }, - { - "id": "585abf73-ae64-5b51-b12a-cb2542d9a4b0", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "2e2f4429-bc3b-5cac-ba1d-db8446d785fb", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -13.860082, - "y": -2099.072176 - }, - "endPoint": { - "x": -12.872993, - "y": -2100.059265 - } - } - }, - { - "id": "17eb87f0-e86b-5a55-baef-cb3bf06bc386", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -12.872993, - "y": -2100.059265 - }, - "endPoint": { - "x": -12.872993, - "y": -2652.829218 - } - } - }, - { - "id": "57b16c4b-e7ed-5a89-90c9-aa7d1878da8a", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -12.872993, - "y": -2652.829218 - }, - "endPoint": { - "x": -13.860082, - "y": -2653.816307 - } - } - }, - { - "id": "5463d7dd-486a-593f-8c2d-3b6e34fc4953", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -13.860082, - "y": -2653.816307 - }, - "endPoint": { - "x": -13.860082, - "y": -2099.072176 - } - } - } - ] - }, - { - "id": "de80b323-877f-5598-9d46-a2653bae2829", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -13.86008171385826, - "y": -2099.072176031947 - }, - "endPoint": { - "x": -13.86008171385826, - "y": -2653.816307487378 - } - } - }, - { - "id": "db8d300b-e1d1-5d4f-80aa-d403b149487b", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -12.87299251205029, - "y": -2100.059265233813 - }, - "endPoint": { - "x": -12.87299251205029, - "y": -2652.8292182854534 - } - } - }, - { - "id": "587101a5-5d10-5f38-9d34-3ce7ebf9e3ab", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "6d23af10-6552-5951-a75e-0be600295aeb", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.914566, - "y": -2653.816307 - }, - "endPoint": { - "x": 755.927477, - "y": -2652.829218 - } - } - }, - { - "id": "a674ec15-2dee-5d2d-b865-c8de6e71715b", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.927477, - "y": -2652.829218 - }, - "endPoint": { - "x": 755.927477, - "y": -2100.059265 - } - } - }, - { - "id": "09404497-35cb-5d2a-8992-b7d8cd18d528", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.927477, - "y": -2100.059265 - }, - "endPoint": { - "x": 756.914566, - "y": -2099.072176 - } - } - }, - { - "id": "b1776bd9-7505-58f8-be44-00b50501bd86", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.914566, - "y": -2099.072176 - }, - "endPoint": { - "x": 756.914566, - "y": -2653.816307 - } - } - } - ] - }, - { - "id": "b80075eb-8af0-559a-bf27-7d365845634f", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.9145661734724, - "y": -2099.072176031947 - }, - "endPoint": { - "x": 756.9145661734724, - "y": -2653.816307487378 - } - } - }, - { - "id": "6d25b6df-0cd9-599f-9d99-c98bbdf48661", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.9274769714898, - "y": -2100.059265233813 - }, - "endPoint": { - "x": 755.9274769714898, - "y": -2652.8292182854534 - } - } - }, - { - "id": "02f5e0e7-72c8-584a-a15b-b2e6b9c826dd", - "type": "PolyLine", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": null, - "children": [ - { - "id": "8651f233-d357-5c61-a5ca-4f2d33bd8133", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": -55.372771, - "y": -2671.444283 - }, - "endPoint": { - "x": 785.627321, - "y": -2671.444283 - } - } - }, - { - "id": "2edb20a0-4234-56ab-8ecf-2248fdf58d7a", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": 785.627321, - "y": -2671.444283 - }, - "endPoint": { - "x": 785.627321, - "y": -2079.444259 - } - } - }, - { - "id": "839c4bf1-3a15-59d9-8eed-b3bc26824540", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": 785.627321, - "y": -2079.444259 - }, - "endPoint": { - "x": -55.372771, - "y": -2079.444259 - } - } - }, - { - "id": "6783f6f8-6769-535f-9cf8-89c9b024d1f9", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": -55.372771, - "y": -2079.444259 - }, - "endPoint": { - "x": -55.372771, - "y": -2671.444283 - } - } - } - ] - }, - { - "id": "faa053e0-0b4d-5775-8420-ee2426182bd4", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.9274910699098, - "y": -2623.216537943474 - }, - "endPoint": { - "x": -13.86006203455195, - "y": -2623.216537943474 - } - } - }, - { - "id": "72661137-7c70-51ef-8914-61d65e722971", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.9145802647361, - "y": -2653.8163029798893 - }, - "endPoint": { - "x": -13.86006203455195, - "y": -2653.816302979882 - } - } - }, - { - "id": "cad4a7ae-3c50-51a7-8d35-5a8bd22e4921", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.9274910699098, - "y": -2652.829213785121 - }, - "endPoint": { - "x": -13.86006203455195, - "y": -2652.829213785121 - } - } - }, - { - "id": "797734ff-7a9b-50c2-b118-53d490a01f4d", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "dfa6c446-7521-5781-9e22-d0b501fa1701", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -13.860062, - "y": -2653.816303 - }, - "endPoint": { - "x": -12.872973, - "y": -2652.829214 - } - } - }, - { - "id": "eb5800af-6a15-547e-b791-9a254d85a7ac", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -12.872973, - "y": -2652.829214 - }, - "endPoint": { - "x": 755.927491, - "y": -2652.829214 - } - } - }, - { - "id": "37293d73-7d7a-55ef-8529-2773cfbbebcf", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.927491, - "y": -2652.829214 - }, - "endPoint": { - "x": 756.91458, - "y": -2653.816303 - } - } - }, - { - "id": "87020077-c44b-5eb6-984f-d3e5266efead", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.91458, - "y": -2653.816303 - }, - "endPoint": { - "x": -13.860062, - "y": -2653.816303 - } - } - } - ] - }, - { - "id": "26af03a5-796b-56e3-87d3-d763ea8d9319", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "dcc96607-674a-5f90-9cc5-7a3ef4425171", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 32.66503, - "y": -2628.9515 - }, - "endPoint": { - "x": 61.416837, - "y": -2628.9515 - } - } - } - ] - }, - { - "id": "49067f6d-6abf-5a4d-8dc5-138b9374e94f", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.9274911004318, - "y": -2623.216537943474 - }, - "endPoint": { - "x": -13.86006200403022, - "y": -2623.216537943474 - } - } - }, - { - "id": "384f3e23-ff09-56c9-8965-924bd21827c3", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.914580295258, - "y": -2653.8163029798893 - }, - "endPoint": { - "x": -13.86006200403022, - "y": -2653.816302979882 - } - } - }, - { - "id": "fbd5eac1-22c0-5d5b-8c3c-a0450ca64c86", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.9274911004318, - "y": -2652.829213785121 - }, - "endPoint": { - "x": -13.86006200403022, - "y": -2652.829213785121 - } - } - }, - { - "id": "f80b8fbd-8986-5670-87c7-4a1695804d14", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "55aabf8d-6af3-5e25-b04f-be8e866136ad", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -13.860062, - "y": -2653.816303 - }, - "endPoint": { - "x": -12.872973, - "y": -2652.829214 - } - } - }, - { - "id": "99b2b922-0e6e-5d3c-9924-8c2751505144", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -12.872973, - "y": -2652.829214 - }, - "endPoint": { - "x": 755.927491, - "y": -2652.829214 - } - } - }, - { - "id": "f2e07bb0-7076-5026-a9ac-a71ae7be60ad", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.927491, - "y": -2652.829214 - }, - "endPoint": { - "x": 756.91458, - "y": -2653.816303 - } - } - }, - { - "id": "eef06849-488e-5220-880b-77629547c37c", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.91458, - "y": -2653.816303 - }, - "endPoint": { - "x": -13.860062, - "y": -2653.816303 - } - } - } - ] - }, - { - "id": "63531f01-87ad-53fd-92a0-7b69623f0f07", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "그루터기 ENG", - "basePoint": { - "x": 33.833734, - "y": -2638.734019 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 7.0615, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3b855004-44b3-5a78-91d6-96e94042d826", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "경북 성주군 선남면 성주로 4200", - "basePoint": { - "x": 34.115815, - "y": -2644.882726 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.623, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ee8d5eeb-78c6-57cc-94a6-fc731900395e", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "TEL. 053-583-7883", - "basePoint": { - "x": 34.734639, - "y": -2650.036712 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.623, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e925ad6b-1e54-5bfb-95ff-1ff230a96ce6", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "FAX. 053-583-7886", - "basePoint": { - "x": 70.872888, - "y": -2649.664539 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.623, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0c347156-5827-5ea3-90a9-fc4a77d64074", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "산림설계,감리,산림조사", - "basePoint": { - "x": 33.690241, - "y": -2628.069603 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.4212, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "35ef5f53-7c95-56b5-b152-bf4acfc8ff3c", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "d9b4acf4-c396-5e94-a37b-cbfeecf6ee2b", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 33.652119, - "y": -2628.9515 - }, - "endPoint": { - "x": 69.892732, - "y": -2628.9515 - } - } - } - ] - }, - { - "id": "80ee76e0-8284-5a3d-ba51-711a8134b99f", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "\"함께하는숲, 함께하는미래\"", - "basePoint": { - "x": -6.480434, - "y": -2648.096263 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.2137, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "21bc322a-8691-5f13-8716-faa06777560a", - "type": "PolyLine", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "1bc77500-ebdf-5450-bfd5-e1a4383101c6", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 0.852558, - "y": -2643.525565 - }, - "endPoint": { - "x": -2.626126, - "y": -2643.525565 - } - } - }, - { - "id": "b9c8bf14-c575-501c-98c8-199c3ba0eadc", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -2.626126, - "y": -2643.525565 - }, - "endPoint": { - "x": -2.941346, - "y": -2643.503059 - } - } - }, - { - "id": "0be07393-0416-5af7-bcf5-c64d0143460e", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -2.941346, - "y": -2643.503059 - }, - "endPoint": { - "x": -3.124374, - "y": -2643.328086 - } - } - }, - { - "id": "fb9a83e4-8c18-5e4e-bc7c-b7b73f165ab3", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.124374, - "y": -2643.328086 - }, - "endPoint": { - "x": -3.290571, - "y": -2643.095513 - } - } - }, - { - "id": "8a58fb4c-d1e4-5200-8ccb-67c925ac407f", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.290571, - "y": -2643.095513 - }, - "endPoint": { - "x": -3.512168, - "y": -2642.741117 - } - } - }, - { - "id": "65d342bc-3092-55f9-adda-6bddaaea6934", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.512168, - "y": -2642.741117 - }, - "endPoint": { - "x": -3.639585, - "y": -2642.525156 - } - } - }, - { - "id": "505a61df-2d1e-5178-a67e-ed7cfa18a82a", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.639585, - "y": -2642.525156 - }, - "endPoint": { - "x": -3.678365, - "y": -2642.264896 - } - } - }, - { - "id": "6906e0d2-2215-570f-abdb-3bfe45cd7df4", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.678365, - "y": -2642.264896 - }, - "endPoint": { - "x": -3.578647, - "y": -2641.904963 - } - } - }, - { - "id": "bfb1c846-353b-5904-9924-439a270d5d6d", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.578647, - "y": -2641.904963 - }, - "endPoint": { - "x": 0.935926, - "y": -2630.431023 - } - } - }, - { - "id": "6c6f6f01-3cae-5a61-afaa-5eec7f86abbd", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 0.935926, - "y": -2630.431023 - }, - "endPoint": { - "x": 1.105577, - "y": -2630.420621 - } - } - }, - { - "id": "47c7117a-8bd2-5784-b0db-59b1d42f10f7", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 1.105577, - "y": -2630.420621 - }, - "endPoint": { - "x": 4.193759, - "y": -2635.568066 - } - } - }, - { - "id": "8c161dc2-6e2f-5000-8c7d-9f0016384806", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 4.193759, - "y": -2635.568066 - }, - "endPoint": { - "x": 3.825466, - "y": -2636.16676 - } - } - }, - { - "id": "744d6489-0b96-5349-a545-a6beca4f0eeb", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.825466, - "y": -2636.16676 - }, - "endPoint": { - "x": 3.692684, - "y": -2636.399024 - } - } - }, - { - "id": "60d92c8e-9be6-54ec-914b-fa75a49f016c", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.692684, - "y": -2636.399024 - }, - "endPoint": { - "x": 0.852558, - "y": -2643.525565 - } - } - } - ] - }, - { - "id": "a82eea3d-b7ce-51b1-8fbc-74c8a86307ba", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.6926841261629306, - "y": -2636.3990241533375 - }, - "endPoint": { - "x": 0.8525581607482309, - "y": -2643.5255647722424 - } - } - }, - { - "id": "28b46320-4a34-5fe8-9540-fdee801660ce", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "e035800b-98bc-5500-aad9-7e9cee6f7eea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 7.723828, - "y": -2643.502954 - }, - "endPoint": { - "x": 3.249584, - "y": -2643.502954 - } - } - }, - { - "id": "650f0fde-a3e6-5738-8550-b94ceb1224dc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.249584, - "y": -2643.502954 - }, - "endPoint": { - "x": 2.967099, - "y": -2643.478087 - } - } - }, - { - "id": "a812adcd-fc84-5de4-8fd5-6e50456a8099", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 2.967099, - "y": -2643.478087 - }, - "endPoint": { - "x": 2.791143, - "y": -2643.292439 - } - } - }, - { - "id": "a8ff2b55-c284-5cc6-8833-bcc5ae754edf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 2.791143, - "y": -2643.292439 - }, - "endPoint": { - "x": -1.026587, - "y": -2636.910333 - } - } - }, - { - "id": "5b118ef0-5dfe-5ad6-a2a9-fa56850a9128", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -1.026587, - "y": -2636.910333 - }, - "endPoint": { - "x": -1.097997, - "y": -2636.65494 - } - } - }, - { - "id": "8d7c8e5b-d813-5eff-b623-23d3f7343e8c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -1.097997, - "y": -2636.65494 - }, - "endPoint": { - "x": -1.070604, - "y": -2636.435893 - } - } - }, - { - "id": "4d5d615e-941f-5aae-ad2d-7a98f0452ef5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -1.070604, - "y": -2636.435893 - }, - "endPoint": { - "x": 3.255139, - "y": -2636.435893 - } - } - }, - { - "id": "118bea48-7ec3-50c5-a19d-bfaf9af71728", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.255139, - "y": -2636.435893 - }, - "endPoint": { - "x": 3.524636, - "y": -2636.435893 - } - } - }, - { - "id": "0d57f17a-561d-5b31-8862-49f93318ce25", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.524636, - "y": -2636.435893 - }, - "endPoint": { - "x": 3.596644, - "y": -2636.485324 - } - } - }, - { - "id": "978b2c93-dcc7-533c-b5d3-0f3e235824ea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.596644, - "y": -2636.485324 - }, - "endPoint": { - "x": 7.723828, - "y": -2643.502954 - } - } - } - ] - }, - { - "id": "30857ec2-a657-5ed8-b7f7-461b989e067c", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.596643945982578, - "y": -2636.4853238923897 - }, - "endPoint": { - "x": 7.723827639045339, - "y": -2643.502954135458 - } - } - }, - { - "id": "27c9c36e-a734-5021-b374-c11d0e121e6b", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 5.791996234571343, - "y": -2630.4206211247565 - }, - "endPoint": { - "x": 1.105576868967546, - "y": -2630.4206211247565 - } - } - }, - { - "id": "b6ea0ac1-23de-520b-891a-d04fac6c00ae", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 12.709084441963569, - "y": -2633.4367765584793 - }, - "endPoint": { - "x": 9.190867405512108, - "y": -2633.4367765584793 - } - } - }, - { - "id": "30ddd9b1-aef5-5195-a917-09dc8af757f8", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 6.033780398480303, - "y": -2630.782703799505 - }, - "endPoint": { - "x": 5.791996234571343, - "y": -2630.4206211247565 - } - } - }, - { - "id": "7e33be9d-dbb0-558f-a86e-e4e31586d21e", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 1.105576868967546, - "y": -2630.4206211247565 - }, - "endPoint": { - "x": 4.193759366664381, - "y": -2635.568065932477 - } - } - }, - { - "id": "afed2896-a3cd-5727-9a17-ddfda05a6b3a", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.524635898975248, - "y": -2636.4358934011707 - }, - "endPoint": { - "x": 3.596643945982578, - "y": -2636.4853238923897 - } - } - }, - { - "id": "0011abe7-7e26-5584-9aed-3e13332a7548", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.255139322121977, - "y": -2636.4358934011707 - }, - "endPoint": { - "x": 3.524635898975248, - "y": -2636.4358934011707 - } - } - }, - { - "id": "585430c6-052f-53c0-8140-afb703111c1a", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -1.0706038328316936, - "y": -2636.4358934011707 - }, - "endPoint": { - "x": 3.255139322121977, - "y": -2636.4358934011707 - } - } - }, - { - "id": "9f46a77e-ea16-566b-9b20-ef9269816ff3", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -1.0979968459287193, - "y": -2636.6549398010775 - }, - "endPoint": { - "x": -1.0706038328316936, - "y": -2636.4358934011707 - } - } - }, - { - "id": "7650b5f6-819b-5d38-a539-1e6727e18e70", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -1.0265866094669036, - "y": -2636.9103327697267 - }, - "endPoint": { - "x": -1.0979968459287193, - "y": -2636.6549398010775 - } - } - }, - { - "id": "3aca6b35-fb69-5b62-9a3d-dc53a88c59b8", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 2.7911430192561966, - "y": -2643.292438556169 - }, - "endPoint": { - "x": -1.0265866094669036, - "y": -2636.9103327697267 - } - } - }, - { - "id": "ad96ce48-bffc-506f-aee2-d5ad47332f5e", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 2.967098921044453, - "y": -2643.478087319134 - }, - "endPoint": { - "x": 2.7911430192561966, - "y": -2643.292438556169 - } - } - }, - { - "id": "11b47713-175e-5492-92b5-130d3c6122d6", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.249583815480946, - "y": -2643.502954135458 - }, - "endPoint": { - "x": 2.967098921044453, - "y": -2643.478087319134 - } - } - }, - { - "id": "db4c6f40-db27-5cf3-a972-48de1caeb6f4", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 7.723827639045339, - "y": -2643.502954135458 - }, - "endPoint": { - "x": 3.249583815480946, - "y": -2643.502954135458 - } - } - }, - { - "id": "973ec34d-b7c5-5354-9ccf-18c00e121e81", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.825465762251042, - "y": -2636.166759516751 - }, - "endPoint": { - "x": 3.6926841261629306, - "y": -2636.3990241533375 - } - } - }, - { - "id": "2ade886a-d5a3-57fc-bc63-517a01735318", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 4.193759366664381, - "y": -2635.568065932477 - }, - "endPoint": { - "x": 3.825465762251042, - "y": -2636.166759516751 - } - } - }, - { - "id": "16577627-74bb-5fbb-8b82-7b82988af35c", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 4.193759366664381, - "y": -2635.568065932477 - }, - "endPoint": { - "x": 4.193759366664381, - "y": -2635.568065932477 - } - } - }, - { - "id": "1ad7fd1e-ce88-5021-91ed-3f73392cfaf4", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 0.9359263502392423, - "y": -2630.4310225011122 - }, - "endPoint": { - "x": 1.105576868967546, - "y": -2630.4206211247565 - } - } - }, - { - "id": "5fce5559-eb58-593d-9f15-f7cc76a4221e", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.5786465391320235, - "y": -2641.9049625311272 - }, - "endPoint": { - "x": 0.9359263502392423, - "y": -2630.4310225011122 - } - } - }, - { - "id": "cb5fc7ca-50a7-58e1-8bd7-c1fc587c639c", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.67836467277084, - "y": -2642.2648963032734 - }, - "endPoint": { - "x": -3.5786465391320235, - "y": -2641.9049625311272 - } - } - }, - { - "id": "d36e504e-a416-5887-a877-31107e1727bd", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.6395853847534454, - "y": -2642.525156230424 - }, - "endPoint": { - "x": -3.67836467277084, - "y": -2642.2648963032734 - } - } - }, - { - "id": "7c6a7b17-bf6d-528c-8ad6-09c866b9cc18", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.5121676174512686, - "y": -2642.741116518633 - }, - "endPoint": { - "x": -3.6395853847534454, - "y": -2642.525156230424 - } - } - }, - { - "id": "fa1ce694-5542-52a5-a7a6-a1f14ec174d3", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.2905712948104338, - "y": -2643.0955128826317 - }, - "endPoint": { - "x": -3.5121676174512686, - "y": -2642.741116518633 - } - } - }, - { - "id": "9ccfd746-f936-5ed4-ac16-109d14ed56c9", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.124373990613094, - "y": -2643.3280855198664 - }, - "endPoint": { - "x": -3.2905712948104338, - "y": -2643.0955128826317 - } - } - }, - { - "id": "1572ac65-89ec-5a85-9869-8f58466564ab", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -2.941346154353596, - "y": -2643.5030590450624 - }, - "endPoint": { - "x": -3.124373990613094, - "y": -2643.3280855198664 - } - } - }, - { - "id": "158fee2f-74ce-56f7-a738-bb3ed0f6490c", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -2.626125781736846, - "y": -2643.5255647722424 - }, - "endPoint": { - "x": -2.941346154353596, - "y": -2643.5030590450624 - } - } - }, - { - "id": "2baff1a5-472f-51c5-8856-be9287f21142", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 0.8525581607482309, - "y": -2643.5255647722424 - }, - "endPoint": { - "x": -2.626125781736846, - "y": -2643.5255647722424 - } - } - }, - { - "id": "8f65cac0-a5f4-53ef-900e-edb3fd418ff7", - "type": "PolyLine", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "17097f87-22ba-58ed-b150-a75a37d3947f", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 18.734303, - "y": -2643.300667 - }, - "endPoint": { - "x": 18.692456, - "y": -2643.415248 - } - } - }, - { - "id": "62a25af5-4baa-5d0d-ba31-b7d8cbdccbb0", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 18.692456, - "y": -2643.415248 - }, - "endPoint": { - "x": 18.463086, - "y": -2643.546649 - } - } - }, - { - "id": "846b78e6-ea04-5a58-bb2f-e6c96b0d0d3a", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 18.463086, - "y": -2643.546649 - }, - "endPoint": { - "x": 15.006875, - "y": -2643.546649 - } - } - }, - { - "id": "655d382b-fc8b-5d4a-be46-97efdcc926e9", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 15.006875, - "y": -2643.546649 - }, - "endPoint": { - "x": 14.742735, - "y": -2643.336984 - } - } - }, - { - "id": "39a010ab-fd51-5ee1-87db-f5d38672eef5", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 14.742735, - "y": -2643.336984 - }, - "endPoint": { - "x": 9.021679, - "y": -2633.845466 - } - } - }, - { - "id": "cc4b4bd4-03c3-53ed-b445-1d330661f311", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 9.021679, - "y": -2633.845466 - }, - "endPoint": { - "x": 8.993481, - "y": -2633.591797 - } - } - }, - { - "id": "376f3a42-43ee-518f-b30d-72d506c7c02a", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 8.993481, - "y": -2633.591797 - }, - "endPoint": { - "x": 9.190867, - "y": -2633.436777 - } - } - }, - { - "id": "33a9a861-35b8-5ee9-83e2-e58d1e348b35", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 9.190867, - "y": -2633.436777 - }, - "endPoint": { - "x": 12.709084, - "y": -2633.436777 - } - } - }, - { - "id": "40cffc3f-686c-5730-a734-b25d07f9d469", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 12.709084, - "y": -2633.436777 - }, - "endPoint": { - "x": 12.868162, - "y": -2633.605259 - } - } - }, - { - "id": "efad8c8b-1c43-5738-91fc-100e0affe636", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 12.868162, - "y": -2633.605259 - }, - "endPoint": { - "x": 18.734303, - "y": -2643.300667 - } - } - } - ] - }, - { - "id": "cccdd61b-a710-5053-8d76-ce4b0fd11034", - "type": "PolyLine", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "192d8f82-5e34-5f8b-9356-5c5b50b7584b", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 18.734303, - "y": -2643.300667 - }, - "endPoint": { - "x": 18.692456, - "y": -2643.415248 - } - } - }, - { - "id": "b7b7cbf5-872e-575d-b6c7-5b03417ec137", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 18.692456, - "y": -2643.415248 - }, - "endPoint": { - "x": 18.463086, - "y": -2643.546649 - } - } - }, - { - "id": "6eae05e5-a9d3-552e-8d12-024ba693965a", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 18.463086, - "y": -2643.546649 - }, - "endPoint": { - "x": 15.006875, - "y": -2643.546649 - } - } - }, - { - "id": "98fb0343-4e15-59ca-9fbd-67cf29695100", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 15.006875, - "y": -2643.546649 - }, - "endPoint": { - "x": 14.742735, - "y": -2643.336984 - } - } - }, - { - "id": "9d2dc262-d228-5330-b7ab-bded5f867cc3", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 14.742735, - "y": -2643.336984 - }, - "endPoint": { - "x": 9.021679, - "y": -2633.845466 - } - } - }, - { - "id": "205fc760-8234-5c89-bbca-576b8055cf8c", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 9.021679, - "y": -2633.845466 - }, - "endPoint": { - "x": 8.993481, - "y": -2633.591797 - } - } - }, - { - "id": "fab6d5be-3910-54d1-8669-c5d1c2ff7c90", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 8.993481, - "y": -2633.591797 - }, - "endPoint": { - "x": 9.190867, - "y": -2633.436777 - } - } - }, - { - "id": "73005f96-0660-5ae9-94a2-df3ce2792985", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 9.190867, - "y": -2633.436777 - }, - "endPoint": { - "x": 12.709084, - "y": -2633.436777 - } - } - }, - { - "id": "2405cf53-95ed-567f-b7fb-626593e8abfa", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 12.709084, - "y": -2633.436777 - }, - "endPoint": { - "x": 12.868162, - "y": -2633.605259 - } - } - }, - { - "id": "29512702-fee8-532e-a7d4-77f2834212a0", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 12.868162, - "y": -2633.605259 - }, - "endPoint": { - "x": 18.734303, - "y": -2643.300667 - } - } - } - ] - }, - { - "id": "4b0c153f-9961-59c4-a199-965102065ab4", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "b6dbe6f2-5dbc-5345-8ac1-5b5307c83176", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 13.690634, - "y": -2643.520679 - }, - "endPoint": { - "x": 9.055719, - "y": -2643.520679 - } - } - }, - { - "id": "6323aadf-9932-50bf-acb8-bad1e7e58406", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 9.055719, - "y": -2643.520679 - }, - "endPoint": { - "x": 8.911078, - "y": -2643.449355 - } - } - }, - { - "id": "0b05401a-9e2a-5d31-85c3-d3caad46a88e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 8.911078, - "y": -2643.449355 - }, - "endPoint": { - "x": 4.193759, - "y": -2635.568066 - } - } - }, - { - "id": "b54ef5aa-92ae-55f3-84fe-d8740147d692", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 4.193759, - "y": -2635.568066 - }, - "endPoint": { - "x": 1.105577, - "y": -2630.420621 - } - } - }, - { - "id": "a6361f7c-a8a4-5f3b-9ac6-9443e2619340", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 1.105577, - "y": -2630.420621 - }, - "endPoint": { - "x": 5.791996, - "y": -2630.420621 - } - } - }, - { - "id": "c60491be-d9df-54ee-a85d-ca2344751fbd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 5.791996, - "y": -2630.420621 - }, - "endPoint": { - "x": 6.03378, - "y": -2630.782704 - } - } - }, - { - "id": "dedacb01-aef5-563b-8f08-0b0af7e8cb9f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 6.03378, - "y": -2630.782704 - }, - "endPoint": { - "x": 13.697503, - "y": -2643.429689 - } - } - }, - { - "id": "87be7b00-70a5-5940-8b43-1e9de0fd184a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 13.697503, - "y": -2643.429689 - }, - "endPoint": { - "x": 13.690634, - "y": -2643.520679 - } - } - } - ] - }, - { - "id": "8291408b-5ddd-506d-9308-391e148e8469", - "type": "PolyLine", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "873bde63-0e92-57da-b161-d722a5635d0f", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 13.690634, - "y": -2643.520679 - }, - "endPoint": { - "x": 9.055719, - "y": -2643.520679 - } - } - }, - { - "id": "e04069a9-2802-551a-89d8-ac2557793e54", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 9.055719, - "y": -2643.520679 - }, - "endPoint": { - "x": 8.911078, - "y": -2643.449355 - } - } - }, - { - "id": "f452fa7a-ea0f-5c52-8dd4-3706b009b1a1", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 8.911078, - "y": -2643.449355 - }, - "endPoint": { - "x": 4.193759, - "y": -2635.568066 - } - } - }, - { - "id": "031fbf2d-5330-5554-a2e3-3db88d3c9e91", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 4.193759, - "y": -2635.568066 - }, - "endPoint": { - "x": 1.105577, - "y": -2630.420621 - } - } - }, - { - "id": "b0ce7cb0-79ef-5bd1-9f20-3c07486f7552", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 1.105577, - "y": -2630.420621 - }, - "endPoint": { - "x": 5.791996, - "y": -2630.420621 - } - } - }, - { - "id": "b7748fdb-98e8-5572-818f-9ebfa3f8d8e0", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 5.791996, - "y": -2630.420621 - }, - "endPoint": { - "x": 6.03378, - "y": -2630.782704 - } - } - }, - { - "id": "232a1c33-2fe6-5664-b2f2-03c9b5ba4c55", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 6.03378, - "y": -2630.782704 - }, - "endPoint": { - "x": 13.697503, - "y": -2643.429689 - } - } - }, - { - "id": "c275bce1-4bb5-5ab9-bd4f-0278599cbfcd", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 13.697503, - "y": -2643.429689 - }, - "endPoint": { - "x": 13.690634, - "y": -2643.520679 - } - } - } - ] - }, - { - "id": "cc84c97e-11f7-5f85-9417-0a6057e68660", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.9274910699098, - "y": -2634.237136751625 - }, - "endPoint": { - "x": 108.1528140077875, - "y": -2634.237136751625 - } - } - }, - { - "id": "6805788a-f45d-5b5d-80a6-489f5b86e7c4", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 245.7378351748832, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 245.7378351748832, - "y": -2652.829213785121 - } - } - }, - { - "id": "88a7b379-7501-5281-a325-f653c0e2cb49", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 643.775453551392, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 643.775453551392, - "y": -2652.829213785121 - } - } - }, - { - "id": "9358660e-7d0a-5acb-b721-cbcd23c4eba4", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 531.5316450139821, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 531.5316450139821, - "y": -2652.829213785121 - } - } - }, - { - "id": "93f2dbb5-2eeb-5db9-bb4f-5b5508c262f6", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 696.7021393866185, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 696.7021393866185, - "y": -2652.829213785121 - } - } - }, - { - "id": "5ebb1c90-ed1c-5ef4-9240-449a18f027a2", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "책 임 기 술 자", - "basePoint": { - "x": 280.694618, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e3f3a6f8-f512-52b9-8fb3-11ded29c9125", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 320.9391437974027, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 320.9391437974027, - "y": -2652.829213785121 - } - } - }, - { - "id": "ff1327a4-6bd5-51fd-8264-2d40b0795171", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 377.1015926263164, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 377.1015926263164, - "y": -2652.829213785121 - } - } - }, - { - "id": "d0ad563f-7c1a-5196-8117-ab0b73a94a2c", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "승 인", - "basePoint": { - "x": 348.913257, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ce834ea5-4aa5-5385-a0b4-ce171ace04d3", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "공 사 명", - "basePoint": { - "x": 451.655613, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a1c60fd8-d5e7-51ea-9083-b301c5b280ed", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 582.5771426366816, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 582.5771426366816, - "y": -2652.829213785121 - } - } - }, - { - "id": "b3613363-ac97-5211-84ba-127ad1548b37", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "도 면 명", - "basePoint": { - "x": 556.644084, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a9564bbc-8768-522b-9d24-d676994a19c8", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "노 선 명", - "basePoint": { - "x": 728.40806, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "66ce9a5f-8086-5b35-90ee-095bd7067392", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "설 계 일 자", - "basePoint": { - "x": 670.872419, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1b0805a8-cfb1-5810-b9fc-27da83ca8b1a", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 643.775453551392, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 643.775453551392, - "y": -2652.829213785121 - } - } - }, - { - "id": "6511861e-d2a7-5c0f-9884-41bdf419b56b", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 108.1528140077875, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 108.1528140077875, - "y": -2652.829213785121 - } - } - }, - { - "id": "bded4423-90f1-5a9f-a41e-c1f08f9ba61f", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "발 주 처", - "basePoint": { - "x": 185.002325, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4e1876c9-b5fc-55cc-84d1-4d14a2dc7e26", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "축 척", - "basePoint": { - "x": 614.411308, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "24d70b5c-5cf6-5747-8903-7974e9b6bc0c", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "남부지방산림청", - "basePoint": { - "x": 176.945325, - "y": -2643.533175 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 5.4, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6f305efa-6f00-5208-8d9b-1e9aefe569a6", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2024년 간선임도사업(기번3)(3공구)", - "basePoint": { - "x": 454.588258, - "y": -2640.523455 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 4.3, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f0974584-d4b1-5caf-9130-4860ef06d56a", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "타이틀", - "shapeData": { - "label": "안 덕 상", - "basePoint": { - "x": 279.760326, - "y": -2648.773413 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 3.9, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2a5dc413-6ec8-5bab-8085-7b37ea6eafc5", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "타이틀", - "shapeData": { - "label": "산림공학기술자 기술고급", - "basePoint": { - "x": 279.553509, - "y": -2640.872744 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 3.9, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b5b809c1-7323-56c2-ac74-bbc2e68e9d2a", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "- 울진 울진 대흥 산65 외2 -", - "basePoint": { - "x": 454.588258, - "y": -2646.523455 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 4.3, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c98cff61-ad60-5b75-85ee-dca4c386bb06", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "종 단 면 도(1)", - "basePoint": { - "x": 375.044159, - "y": -2122.541462 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 12.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1cd46911-c880-5ca9-bc78-bd2af4e1be2f", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "A1", - "basePoint": { - "x": 584.523752, - "y": -2645.065384 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.6666, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "744254f4-0c63-5cbc-a624-7b369b3667c9", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "V = 1 : 200", - "basePoint": { - "x": 590.425466, - "y": -2647.193802 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "429d69e0-d830-5f67-96ba-184cd68bf9df", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "H = 1 : 1,000", - "basePoint": { - "x": 590.06081, - "y": -2642.595759 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2470b182-e169-55fb-ad71-00f4e2050e0b", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "A3", - "basePoint": { - "x": 614.322317, - "y": -2645.065384 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.6666, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "142aec74-3df6-57ec-997f-5ae358ea6995", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "V = 1 : 400", - "basePoint": { - "x": 620.22403, - "y": -2647.193802 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5bd5f015-ae43-533d-821e-9d86c8730320", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "H = 1 : 2,000", - "basePoint": { - "x": 619.859374, - "y": -2642.595759 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a8d3f590-0a52-59be-92f8-ee755af09f9b", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "타이틀", - "shapeData": { - "label": "종 단 면 도(1)", - "basePoint": { - "x": 556.123535, - "y": -2645.980227 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 4.4, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a9457f0b-94d0-597d-8365-65ea45df4664", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "d0dd7e29-2ef2-55e8-b112-4484cd23e8e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.115974, - "y": -2637.139277 - }, - "endPoint": { - "x": 1210.362725, - "y": -2636.988651 - } - } - }, - { - "id": "a4588e98-d17b-5837-a88b-ce5758c516ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.362725, - "y": -2636.988651 - }, - "endPoint": { - "x": 1210.591008, - "y": -2636.72368 - } - } - }, - { - "id": "128fe592-21d6-5991-a19d-0ede94575c46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.591008, - "y": -2636.72368 - }, - "endPoint": { - "x": 1210.795796, - "y": -2636.360219 - } - } - }, - { - "id": "ed29feea-b8ca-5aba-becc-d106afdd4891", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.795796, - "y": -2636.360219 - }, - "endPoint": { - "x": 1210.993915, - "y": -2636.118756 - } - } - }, - { - "id": "ad170212-8d0e-57fe-9c59-f941c2f642a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.993915, - "y": -2636.118756 - }, - "endPoint": { - "x": 1211.255645, - "y": -2635.961084 - } - } - }, - { - "id": "f578c6a1-a9eb-5572-8425-511489db501d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.255645, - "y": -2635.961084 - }, - "endPoint": { - "x": 1211.534304, - "y": -2635.833635 - } - } - }, - { - "id": "bcb03eaf-b4ff-5b86-9ad7-39b86bcd9c92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.534304, - "y": -2635.833635 - }, - "endPoint": { - "x": 1211.779311, - "y": -2635.84371 - } - } - }, - { - "id": "ad4897cd-fea3-5f42-9fe2-6d9ed152cdb1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.779311, - "y": -2635.84371 - }, - "endPoint": { - "x": 1212.068025, - "y": -2635.964442 - } - } - }, - { - "id": "c55ca407-75dd-53e4-91a5-2f2542b235ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.068025, - "y": -2635.964442 - }, - "endPoint": { - "x": 1212.366794, - "y": -2636.195885 - } - } - }, - { - "id": "5ee7eb45-659d-5b39-95f4-da19324d0b67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.366794, - "y": -2636.195885 - }, - "endPoint": { - "x": 1212.589742, - "y": -2636.461462 - } - } - }, - { - "id": "682aa574-0228-5a42-a444-b0184226737e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.589742, - "y": -2636.461462 - }, - "endPoint": { - "x": 1212.710604, - "y": -2636.723075 - } - } - }, - { - "id": "fd0f78f6-afad-5b4a-a778-aa2459e18e9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.710604, - "y": -2636.723075 - }, - "endPoint": { - "x": 1212.831465, - "y": -2636.934369 - } - } - }, - { - "id": "f50c7607-61af-5000-bc67-e74268c239a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.831465, - "y": -2636.934369 - }, - "endPoint": { - "x": 1213.103353, - "y": -2637.045026 - } - } - }, - { - "id": "32848659-2b70-51c4-a842-4db8e708a98b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.103353, - "y": -2637.045026 - }, - "endPoint": { - "x": 1213.502771, - "y": -2637.071892 - } - } - }, - { - "id": "247d25e7-52e3-5638-a454-e5d6eb8eda98", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.502771, - "y": -2637.071892 - }, - "endPoint": { - "x": 1213.757936, - "y": -2637.128927 - } - } - }, - { - "id": "97569ad4-29ab-5d4d-8524-55bce62ec088", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.757936, - "y": -2637.128927 - }, - "endPoint": { - "x": 1214.246102, - "y": -2637.115549 - } - } - }, - { - "id": "465f5b38-9d40-5a02-b27f-3846c987e783", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.246102, - "y": -2637.115549 - }, - "endPoint": { - "x": 1214.45089, - "y": -2636.988101 - } - } - }, - { - "id": "c53145db-775c-529a-bf7f-4fd1037547fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.45089, - "y": -2636.988101 - }, - "endPoint": { - "x": 1214.498804, - "y": -2636.958702 - } - } - }, - { - "id": "eafc4963-783e-5aec-9fbf-c0390f586235", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.498804, - "y": -2636.958702 - }, - "endPoint": { - "x": 1214.723393, - "y": -2637.109108 - } - } - }, - { - "id": "747f332b-e2ff-5bc2-af44-04d03a157ac9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.723393, - "y": -2637.109108 - }, - "endPoint": { - "x": 1215.11009, - "y": -2637.500096 - } - } - }, - { - "id": "eafaaf64-7170-5e69-b9d6-fb7666517639", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.11009, - "y": -2637.500096 - }, - "endPoint": { - "x": 1215.660021, - "y": -2637.952688 - } - } - }, - { - "id": "61c65b5b-74a7-55d5-9c31-2e047a8ea386", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.660021, - "y": -2637.952688 - }, - "endPoint": { - "x": 1215.938578, - "y": -2638.302055 - } - } - }, - { - "id": "973890a2-9b66-53c4-880a-a9f2c7ae00a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.938578, - "y": -2638.302055 - }, - "endPoint": { - "x": 1215.964433, - "y": -2638.339547 - } - } - }, - { - "id": "09f6791f-d539-51a2-ac86-84eba8129595", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.964433, - "y": -2638.339547 - }, - "endPoint": { - "x": 1215.820383, - "y": -2638.319617 - } - } - }, - { - "id": "1c8fadbc-85b4-5356-bc81-fbce79dc3a3f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.820383, - "y": -2638.319617 - }, - "endPoint": { - "x": 1215.736252, - "y": -2638.311084 - } - } - }, - { - "id": "9d33c5cb-1709-53fb-837f-49700d38ee16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.736252, - "y": -2638.311084 - }, - "endPoint": { - "x": 1215.633653, - "y": -2638.313947 - } - } - }, - { - "id": "a16394c3-36cb-541a-bea5-9448c9771230", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.633653, - "y": -2638.313947 - }, - "endPoint": { - "x": 1215.550958, - "y": -2638.336739 - } - } - }, - { - "id": "2c0d5143-6023-5446-96bf-2a3a5ec44980", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.550958, - "y": -2638.336739 - }, - "endPoint": { - "x": 1215.536697, - "y": -2638.382323 - } - } - }, - { - "id": "b44fe438-2d8d-538e-be9e-6c7c13ed15b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.536697, - "y": -2638.382323 - }, - "endPoint": { - "x": 1215.556601, - "y": -2638.439303 - } - } - }, - { - "id": "bd7a70d7-7da2-5473-81d5-1f5a53845570", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.556601, - "y": -2638.439303 - }, - "endPoint": { - "x": 1215.562347, - "y": -2638.500522 - } - } - }, - { - "id": "b4e5342e-9805-5ed9-9dcb-109e64e28579", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.562347, - "y": -2638.500522 - }, - "endPoint": { - "x": 1215.530541, - "y": -2638.628466 - } - } - }, - { - "id": "67196281-624e-5362-8739-48da4dedf4a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.530541, - "y": -2638.628466 - }, - "endPoint": { - "x": 1215.525206, - "y": -2638.75184 - } - } - }, - { - "id": "5fcc2f73-1bb7-5cb7-8cae-891c8d6bca3d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.525206, - "y": -2638.75184 - }, - "endPoint": { - "x": 1215.537723, - "y": -2638.8609 - } - } - }, - { - "id": "a836e4f9-8555-54c8-8419-4784c153ef00", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.537723, - "y": -2638.8609 - }, - "endPoint": { - "x": 1215.544905, - "y": -2638.972934 - } - } - }, - { - "id": "d6aa949b-2a01-51a1-adda-bc95e5394f04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.544905, - "y": -2638.972934 - }, - "endPoint": { - "x": 1215.568092, - "y": -2639.123119 - } - } - }, - { - "id": "c47a6603-f957-5c30-a95f-b05cb766e1a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.568092, - "y": -2639.123119 - }, - "endPoint": { - "x": 1215.557422, - "y": -2639.257283 - } - } - }, - { - "id": "fbfde01a-1bba-5fdc-8484-683ecedb89d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.557422, - "y": -2639.257283 - }, - "endPoint": { - "x": 1215.510842, - "y": -2639.402128 - } - } - }, - { - "id": "7c9c8c2d-3eb3-56cb-a0fe-d51037feddd9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.510842, - "y": -2639.402128 - }, - "endPoint": { - "x": 1215.399522, - "y": -2639.545652 - } - } - }, - { - "id": "281a7ca5-7d57-5c7d-b177-7c623d3cdbc1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.399522, - "y": -2639.545652 - }, - "endPoint": { - "x": 1215.283277, - "y": -2639.652951 - } - } - }, - { - "id": "954ce5be-3862-5473-88e8-d15c13096408", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.283277, - "y": -2639.652951 - }, - "endPoint": { - "x": 1215.140048, - "y": -2639.72986 - } - } - }, - { - "id": "d9ef3b57-8f25-508a-abe0-40b5985dca74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.140048, - "y": -2639.72986 - }, - "endPoint": { - "x": 1215.102497, - "y": -2639.778142 - } - } - }, - { - "id": "5b7842f9-b355-5a9f-8b23-b5fc6476c125", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.102497, - "y": -2639.778142 - }, - "endPoint": { - "x": 1215.060945, - "y": -2639.823671 - } - } - }, - { - "id": "60af68df-e814-5bae-b6c7-b512ddb82c48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.060945, - "y": -2639.823671 - }, - "endPoint": { - "x": 1214.770999, - "y": -2639.837985 - } - } - }, - { - "id": "2948f75e-6344-530d-9dce-3736d99d70f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.770999, - "y": -2639.837985 - }, - "endPoint": { - "x": 1214.395179, - "y": -2639.837985 - } - } - }, - { - "id": "e586ace9-d282-543f-9247-a969d918c0c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.395179, - "y": -2639.837985 - }, - "endPoint": { - "x": 1214.259235, - "y": -2639.741421 - } - } - }, - { - "id": "71657238-88b4-5a64-a186-ff9f90fb177c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.259235, - "y": -2639.741421 - }, - "endPoint": { - "x": 1214.214399, - "y": -2639.575106 - } - } - }, - { - "id": "70d71e62-272d-55ec-a603-390e39fd909c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.214399, - "y": -2639.575106 - }, - "endPoint": { - "x": 1214.230199, - "y": -2639.443253 - } - } - }, - { - "id": "74298205-3937-5df1-917e-be7900efe82a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.230199, - "y": -2639.443253 - }, - "endPoint": { - "x": 1214.207012, - "y": -2639.303803 - } - } - }, - { - "id": "a68fc028-c88c-5561-b248-e876a4e13ec7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.207012, - "y": -2639.303803 - }, - "endPoint": { - "x": 1214.149659, - "y": -2639.219737 - } - } - }, - { - "id": "29f798a0-a17e-57f3-90d6-f862dba04348", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.149659, - "y": -2639.219737 - }, - "endPoint": { - "x": 1214.122881, - "y": -2639.142828 - } - } - }, - { - "id": "fb24a125-02b7-538d-bb04-04e761e424ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.122881, - "y": -2639.142828 - }, - "endPoint": { - "x": 1214.110364, - "y": -2638.862112 - } - } - }, - { - "id": "43a826c2-2268-5f72-910f-64be03028a78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.110364, - "y": -2638.862112 - }, - "endPoint": { - "x": 1214.029823, - "y": -2638.733342 - } - } - }, - { - "id": "22af5920-ff1d-5fd5-8252-3aa154f8fef6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.029823, - "y": -2638.733342 - }, - "endPoint": { - "x": 1213.947436, - "y": -2638.6332 - } - } - }, - { - "id": "50060151-faad-5a9b-a53e-ada971d9bf31", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.947436, - "y": -2638.6332 - }, - "endPoint": { - "x": 1213.875925, - "y": -2638.572367 - } - } - }, - { - "id": "09e7c502-df32-58e0-afbe-88eab31f360f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.875925, - "y": -2638.572367 - }, - "endPoint": { - "x": 1213.828729, - "y": -2638.569999 - } - } - }, - { - "id": "5084bb74-47c9-50f9-a5bc-87bca85aba30", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.828729, - "y": -2638.569999 - }, - "endPoint": { - "x": 1213.726745, - "y": -2638.612886 - } - } - }, - { - "id": "7aee3107-80ac-5e88-8fb5-723e837c91ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.726745, - "y": -2638.612886 - }, - "endPoint": { - "x": 1213.622915, - "y": -2638.696952 - } - } - }, - { - "id": "613caaf4-266b-5932-a2ad-6bbaf888c631", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.622915, - "y": -2638.696952 - }, - "endPoint": { - "x": 1213.571, - "y": -2638.786358 - } - } - }, - { - "id": "76e728f1-d747-5652-9c0e-83d1df083363", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.571, - "y": -2638.786358 - }, - "endPoint": { - "x": 1213.556739, - "y": -2638.965171 - } - } - }, - { - "id": "a7c575b2-c579-59d5-be85-7121e5b5889b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.556739, - "y": -2638.965171 - }, - "endPoint": { - "x": 1213.51375, - "y": -2639.054578 - } - } - }, - { - "id": "ae7061e5-5f9f-5a03-ba75-6618b6c33068", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.51375, - "y": -2639.054578 - }, - "endPoint": { - "x": 1213.567409, - "y": -2639.169033 - } - } - }, - { - "id": "0c004c9e-04b9-58ec-a288-2aecd4e9a4af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.567409, - "y": -2639.169033 - }, - "endPoint": { - "x": 1213.567409, - "y": -2639.28448 - } - } - }, - { - "id": "1f98301b-9894-5c43-a654-0efe7c7b0fb3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.567409, - "y": -2639.28448 - }, - "endPoint": { - "x": 1213.569153, - "y": -2639.500839 - } - } - }, - { - "id": "d7a0ffd7-0204-50f0-b189-3e8597dcd881", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.569153, - "y": -2639.500839 - }, - "endPoint": { - "x": 1213.597778, - "y": -2639.643922 - } - } - }, - { - "id": "5022b752-e223-5121-951f-984e5df681be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.597778, - "y": -2639.643922 - }, - "endPoint": { - "x": 1213.683654, - "y": -2639.695782 - } - } - }, - { - "id": "4045a6d8-354f-5451-86b4-c60f52c63903", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.683654, - "y": -2639.695782 - }, - "endPoint": { - "x": 1213.758859, - "y": -2639.854335 - } - } - }, - { - "id": "ccbca688-8497-5d2c-9ae4-593e547ba9e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.758859, - "y": -2639.854335 - }, - "endPoint": { - "x": 1213.916349, - "y": -2639.938402 - } - } - }, - { - "id": "21d139ce-58b2-51f6-9db9-39c570ef9b77", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.916349, - "y": -2639.938402 - }, - "endPoint": { - "x": 1214.170076, - "y": -2639.940604 - } - } - }, - { - "id": "d923ae81-3783-5622-b342-fe9a6bf7d941", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.170076, - "y": -2639.940604 - }, - "endPoint": { - "x": 1214.39169, - "y": -2639.926675 - } - } - }, - { - "id": "262688a2-59f1-555f-aeb8-4521c98a48b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.39169, - "y": -2639.926675 - }, - "endPoint": { - "x": 1214.692306, - "y": -2639.937521 - } - } - }, - { - "id": "8132f1f9-c57b-50e4-99ae-53f9361fd52c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.692306, - "y": -2639.937521 - }, - "endPoint": { - "x": 1215.122299, - "y": -2639.952991 - } - } - }, - { - "id": "86725493-448c-5552-9322-b43902996af6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.122299, - "y": -2639.952991 - }, - "endPoint": { - "x": 1215.503455, - "y": -2640.007218 - } - } - }, - { - "id": "7ed55b67-972f-5d0a-87e9-beefa6c13fbe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.503455, - "y": -2640.007218 - }, - "endPoint": { - "x": 1215.853728, - "y": -2640.083081 - } - } - }, - { - "id": "61f21db3-45ab-5157-8b13-eeb86aaa41ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.853728, - "y": -2640.083081 - }, - "endPoint": { - "x": 1216.082832, - "y": -2640.261123 - } - } - }, - { - "id": "04bdd847-4aeb-5c5c-856e-cb34b4b0c728", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.082832, - "y": -2640.261123 - }, - "endPoint": { - "x": 1216.257353, - "y": -2640.514809 - } - } - }, - { - "id": "733f3502-e89c-54b5-a245-3049dd12dcd9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.257353, - "y": -2640.514809 - }, - "endPoint": { - "x": 1216.265356, - "y": -2640.827896 - } - } - }, - { - "id": "bb859690-be9d-5025-b65c-76ab83fabc74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.265356, - "y": -2640.827896 - }, - "endPoint": { - "x": 1216.281156, - "y": -2641.041888 - } - } - }, - { - "id": "91d3ad88-ec23-52b2-aa89-24d6c61586d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.281156, - "y": -2641.041888 - }, - "endPoint": { - "x": 1216.185944, - "y": -2641.25588 - } - } - }, - { - "id": "97f411ba-d668-59b4-a4e0-1fbc1581c549", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.185944, - "y": -2641.25588 - }, - "endPoint": { - "x": 1216.094733, - "y": -2641.39065 - } - } - }, - { - "id": "b16d723f-71f2-5969-a58f-43dbf830ce0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.094733, - "y": -2641.39065 - }, - "endPoint": { - "x": 1215.884508, - "y": -2641.505546 - } - } - }, - { - "id": "a8f13066-8565-579e-9fbd-64938def6e88", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.884508, - "y": -2641.505546 - }, - "endPoint": { - "x": 1215.499864, - "y": -2641.54122 - } - } - }, - { - "id": "a8e973b9-e914-59b5-99fb-12f42d9ea79e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.499864, - "y": -2641.54122 - }, - "endPoint": { - "x": 1215.059611, - "y": -2641.553112 - } - } - }, - { - "id": "272b6716-2b6d-5b4d-9feb-e6ab0d614f8e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.059611, - "y": -2641.553112 - }, - "endPoint": { - "x": 1214.55985, - "y": -2641.521401 - } - } - }, - { - "id": "9bb3041b-6986-52c6-af33-abd9284f2933", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.55985, - "y": -2641.521401 - }, - "endPoint": { - "x": 1214.417032, - "y": -2641.461944 - } - } - }, - { - "id": "48a27d9c-4348-5c5d-aa36-b2aff075c3ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.417032, - "y": -2641.461944 - }, - "endPoint": { - "x": 1214.119597, - "y": -2641.446088 - } - } - }, - { - "id": "c8e15bfe-64c9-5f7f-9234-d78b07fdd670", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.119597, - "y": -2641.446088 - }, - "endPoint": { - "x": 1213.89747, - "y": -2641.461944 - } - } - }, - { - "id": "e70cee5d-4b90-53de-b7fe-47687a80d761", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.89747, - "y": -2641.461944 - }, - "endPoint": { - "x": 1213.725822, - "y": -2641.698067 - } - } - }, - { - "id": "a99f9dbb-0e70-5624-b00a-46fbc30c2b51", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.725822, - "y": -2641.698067 - }, - "endPoint": { - "x": 1213.678216, - "y": -2641.816982 - } - } - }, - { - "id": "772478f1-ae5a-5cb0-8d6e-3402ff65d39a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.678216, - "y": -2641.816982 - }, - "endPoint": { - "x": 1213.598907, - "y": -2641.924005 - } - } - }, - { - "id": "3b2287b9-dd5d-5aed-a1b5-c62a83da6cd6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.598907, - "y": -2641.924005 - }, - "endPoint": { - "x": 1213.444187, - "y": -2642.102322 - } - } - }, - { - "id": "c7e2442c-0785-5c0d-935c-84b161200c9b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.444187, - "y": -2642.102322 - }, - "endPoint": { - "x": 1213.348975, - "y": -2642.201418 - } - } - }, - { - "id": "de94f0c2-a4c8-55a6-91f0-e72ec51e4cb0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.348975, - "y": -2642.201418 - }, - "endPoint": { - "x": 1213.333175, - "y": -2642.407482 - } - } - }, - { - "id": "ce8780e9-4d18-5d46-a94f-01f939bc42a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.333175, - "y": -2642.407482 - }, - "endPoint": { - "x": 1213.392683, - "y": -2642.554089 - } - } - }, - { - "id": "bf89aade-dfbd-5a34-9b95-c2cda3fc7d77", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.392683, - "y": -2642.554089 - }, - "endPoint": { - "x": 1213.499694, - "y": -2642.621474 - } - } - }, - { - "id": "b6ecdd1d-3748-5ff5-8cc0-625bb28c4ede", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.499694, - "y": -2642.621474 - }, - "endPoint": { - "x": 1213.832936, - "y": -2642.633366 - } - } - }, - { - "id": "541a8864-6979-5ed0-b079-ff7a002cdd36", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.832936, - "y": -2642.633366 - }, - "endPoint": { - "x": 1214.364399, - "y": -2642.637329 - } - } - }, - { - "id": "08a8273c-9b8e-50af-a71b-b8405c57f7e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.364399, - "y": -2642.637329 - }, - "endPoint": { - "x": 1214.570623, - "y": -2642.633366 - } - } - }, - { - "id": "9b79bae5-5ab3-5871-ba75-ce3a2cb3b646", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.570623, - "y": -2642.633366 - }, - "endPoint": { - "x": 1214.721341, - "y": -2642.51847 - } - } - }, - { - "id": "cf0d7556-55e9-5592-b4d1-bd17d6d0e8bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.721341, - "y": -2642.51847 - }, - "endPoint": { - "x": 1214.96327, - "y": -2642.447121 - } - } - }, - { - "id": "e6b049b2-5546-5e92-99e9-fa64ff2f0d63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.96327, - "y": -2642.447121 - }, - "endPoint": { - "x": 1215.19812, - "y": -2642.403684 - } - } - }, - { - "id": "6123b1c0-30bf-50f2-8956-535974fd766e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.19812, - "y": -2642.403684 - }, - "endPoint": { - "x": 1215.475753, - "y": -2642.407647 - } - } - }, - { - "id": "f93fc7e2-c150-5177-a322-c0d5b3e674db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.475753, - "y": -2642.407647 - }, - "endPoint": { - "x": 1215.793092, - "y": -2642.39972 - } - } - }, - { - "id": "39ce1cdb-148d-56d1-b90a-890d8143f47c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.793092, - "y": -2642.39972 - }, - "endPoint": { - "x": 1215.931909, - "y": -2642.387828 - } - } - }, - { - "id": "7783a64c-7d6d-5de3-9424-7247f8943bf1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.931909, - "y": -2642.387828 - }, - "endPoint": { - "x": 1215.991416, - "y": -2642.463141 - } - } - }, - { - "id": "e53de82a-558c-5dcc-bdfa-9f91d5872183", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.991416, - "y": -2642.463141 - }, - "endPoint": { - "x": 1216.122333, - "y": -2642.498816 - } - } - }, - { - "id": "98c0f0d6-f1b6-5da6-8615-eba4c19fb226", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.122333, - "y": -2642.498816 - }, - "endPoint": { - "x": 1216.209542, - "y": -2642.502779 - } - } - }, - { - "id": "cc2c03d3-ee0b-5c62-ad92-cd15f4040a7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.209542, - "y": -2642.502779 - }, - "endPoint": { - "x": 1216.265048, - "y": -2642.558273 - } - } - }, - { - "id": "439b60ec-1a42-5b22-889b-d8fbb918524c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.265048, - "y": -2642.558273 - }, - "endPoint": { - "x": 1216.304754, - "y": -2642.669205 - } - } - }, - { - "id": "21565944-bb9d-52e2-9067-c6a31c507aa5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.304754, - "y": -2642.669205 - }, - "endPoint": { - "x": 1216.36816, - "y": -2642.744518 - } - } - }, - { - "id": "e0bf15bb-894b-5398-992f-fd753fc08ad9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.36816, - "y": -2642.744518 - }, - "endPoint": { - "x": 1216.397401, - "y": -2643.08794 - } - } - }, - { - "id": "599dc702-65af-5bbb-b87a-e31c3cd7d525", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.397401, - "y": -2643.08794 - }, - "endPoint": { - "x": 1216.407148, - "y": -2643.317346 - } - } - }, - { - "id": "48c9de65-fa48-5707-b61e-81e36a7f09db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.407148, - "y": -2643.317346 - }, - "endPoint": { - "x": 1216.399248, - "y": -2643.694406 - } - } - }, - { - "id": "54e6bd36-07e2-5603-b5f3-ff6a46360478", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.399248, - "y": -2643.694406 - }, - "endPoint": { - "x": 1216.191587, - "y": -2644.166102 - } - } - }, - { - "id": "fa798c03-4044-5f58-8ba9-8e91f256f329", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.191587, - "y": -2644.166102 - }, - "endPoint": { - "x": 1215.858858, - "y": -2644.502862 - } - } - }, - { - "id": "ffb952a1-0e22-519c-b1e2-9ce5b574e987", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.858858, - "y": -2644.502862 - }, - "endPoint": { - "x": 1215.526232, - "y": -2644.599095 - } - } - }, - { - "id": "7ff4fd85-c0e5-5585-baf7-473a9157e9c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.526232, - "y": -2644.599095 - }, - "endPoint": { - "x": 1215.32483, - "y": -2644.647211 - } - } - }, - { - "id": "96bdebc3-d373-527e-ae28-c044a4d8d836", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.32483, - "y": -2644.647211 - }, - "endPoint": { - "x": 1214.856464, - "y": -2644.699677 - } - } - }, - { - "id": "213062a5-a7f2-587c-82bb-512b901083bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.856464, - "y": -2644.699677 - }, - "endPoint": { - "x": 1214.677019, - "y": -2644.73904 - } - } - }, - { - "id": "05fe17fe-7592-5106-b172-8ebf663abbc0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.677019, - "y": -2644.73904 - }, - "endPoint": { - "x": 1213.770966, - "y": -2644.577239 - } - } - }, - { - "id": "4fc1eb2c-e6d9-57e5-9dfe-b91a384e30ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.770966, - "y": -2644.577239 - }, - "endPoint": { - "x": 1213.363852, - "y": -2644.502862 - } - } - }, - { - "id": "2e80beeb-9c5f-593d-9f0a-fcb2eabfa5fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.363852, - "y": -2644.502862 - }, - "endPoint": { - "x": 1212.831465, - "y": -2644.301147 - } - } - }, - { - "id": "c6616a53-5f48-5e80-a3a2-9eb0a4e01f37", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.831465, - "y": -2644.301147 - }, - "endPoint": { - "x": 1212.603798, - "y": -2644.22677 - } - } - }, - { - "id": "06df8da9-5fc2-59c2-8804-d7fa2f35e1f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.603798, - "y": -2644.22677 - }, - "endPoint": { - "x": 1212.393675, - "y": -2644.051811 - } - } - }, - { - "id": "a636ef68-1bdb-5453-87bc-75880bea3a76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.393675, - "y": -2644.051811 - }, - "endPoint": { - "x": 1212.218641, - "y": -2643.872503 - } - } - }, - { - "id": "0172cf69-4763-5f19-86c1-79e26430c050", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.218641, - "y": -2643.872503 - }, - "endPoint": { - "x": 1212.082902, - "y": -2643.863749 - } - } - }, - { - "id": "27e1636a-0f64-5724-8f96-f3d2dc8ee685", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.082902, - "y": -2643.863749 - }, - "endPoint": { - "x": 1211.921001, - "y": -2643.959982 - } - } - }, - { - "id": "69a5c637-ebb3-5628-b0aa-243a7637b39a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.921001, - "y": -2643.959982 - }, - "endPoint": { - "x": 1211.658347, - "y": -2644.152448 - } - } - }, - { - "id": "eebe3b57-0206-5d9d-a761-bd39d80e9c9b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.658347, - "y": -2644.152448 - }, - "endPoint": { - "x": 1211.417649, - "y": -2644.222421 - } - } - }, - { - "id": "b95417d8-9d9a-5acf-b281-9b2f5e5c45a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.417649, - "y": -2644.222421 - }, - "endPoint": { - "x": 1211.211835, - "y": -2644.336106 - } - } - }, - { - "id": "521ba8bc-3ac1-5997-b286-e2dde41b65fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.211835, - "y": -2644.336106 - }, - "endPoint": { - "x": 1210.949284, - "y": -2644.458599 - } - } - }, - { - "id": "f593b09a-8ccb-5720-94e7-2b5203eb047e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.949284, - "y": -2644.458599 - }, - "endPoint": { - "x": 1210.594702, - "y": -2644.633558 - } - } - }, - { - "id": "d1073088-cdf0-5785-960e-485b978bfbc1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.594702, - "y": -2644.633558 - }, - "endPoint": { - "x": 1210.318915, - "y": -2644.725387 - } - } - }, - { - "id": "b62c149b-7c03-54f1-80f0-346a0165bdcb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.318915, - "y": -2644.725387 - }, - "endPoint": { - "x": 1210.174456, - "y": -2644.804113 - } - } - }, - { - "id": "5cf99850-f6ed-5b2b-bf5c-09ee786571d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.174456, - "y": -2644.804113 - }, - "endPoint": { - "x": 1209.671104, - "y": -2644.825969 - } - } - }, - { - "id": "1427f9c4-12d6-5003-bbc6-54a82118e429", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.671104, - "y": -2644.825969 - }, - "endPoint": { - "x": 1209.059613, - "y": -2644.796516 - } - } - }, - { - "id": "933f233f-060b-5d40-8231-cbaa2ab24aef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.059613, - "y": -2644.796516 - }, - "endPoint": { - "x": 1208.69631, - "y": -2644.757153 - } - } - }, - { - "id": "3e8179d7-1349-5591-a74f-ead1832eabe7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.69631, - "y": -2644.757153 - }, - "endPoint": { - "x": 1208.402979, - "y": -2644.542831 - } - } - }, - { - "id": "56936b40-4df8-56f3-bdad-bf0ae7fe58dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.402979, - "y": -2644.542831 - }, - "endPoint": { - "x": 1208.074662, - "y": -2644.381029 - } - } - }, - { - "id": "19a652d5-62c1-54b7-83ff-4ab573492ced", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.074662, - "y": -2644.381029 - }, - "endPoint": { - "x": 1207.794566, - "y": -2643.982995 - } - } - }, - { - "id": "78c093e2-471f-5288-a1c6-1bffaf75086c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.794566, - "y": -2643.982995 - }, - "endPoint": { - "x": 1207.662726, - "y": -2643.80187 - } - } - }, - { - "id": "af4b5ff0-10b7-56a3-8729-ecb379547725", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.662726, - "y": -2643.80187 - }, - "endPoint": { - "x": 1207.658314, - "y": -2643.360123 - } - } - }, - { - "id": "171d43d0-6f2d-5d98-9b23-689cba84fc01", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.658314, - "y": -2643.360123 - }, - "endPoint": { - "x": 1207.737111, - "y": -2643.193917 - } - } - }, - { - "id": "e2a21d07-0c75-5f76-94f2-89c712e3b3f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.737111, - "y": -2643.193917 - }, - "endPoint": { - "x": 1207.776509, - "y": -2643.018958 - } - } - }, - { - "id": "06f68f2d-6555-57d9-857b-79370d9e91f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.776509, - "y": -2643.018958 - }, - "endPoint": { - "x": 1208.008485, - "y": -2642.721561 - } - } - }, - { - "id": "a1e8e11d-6053-53d0-96ec-3445c4348e17", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.008485, - "y": -2642.721561 - }, - "endPoint": { - "x": 1208.266727, - "y": -2642.494081 - } - } - }, - { - "id": "474ec997-dd70-56c9-8c93-9a32ec07d80d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.266727, - "y": -2642.494081 - }, - "endPoint": { - "x": 1208.695694, - "y": -2642.432862 - } - } - }, - { - "id": "cab7df01-1cd3-5f93-9b05-1ff75d2dd0c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.695694, - "y": -2642.432862 - }, - "endPoint": { - "x": 1208.995284, - "y": -2642.461545 - } - } - }, - { - "id": "fb3a3630-ef0d-5006-825c-48ebeaba4dad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.995284, - "y": -2642.461545 - }, - "endPoint": { - "x": 1209.415427, - "y": -2642.465894 - } - } - }, - { - "id": "de939a47-a053-5609-8153-39bb305bc56c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.415427, - "y": -2642.465894 - }, - "endPoint": { - "x": 1209.564299, - "y": -2642.48775 - } - } - }, - { - "id": "bdbb0ada-3201-57e7-99ff-8356ff4e23e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.564299, - "y": -2642.48775 - }, - "endPoint": { - "x": 1209.686802, - "y": -2642.583983 - } - } - }, - { - "id": "7045878b-a2fc-5b6c-80ab-18f692e1b0a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.686802, - "y": -2642.583983 - }, - "endPoint": { - "x": 1209.752465, - "y": -2642.614592 - } - } - }, - { - "id": "1b1eac20-fef3-5124-8b69-96960fb1af04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.752465, - "y": -2642.614592 - }, - "endPoint": { - "x": 1210.015119, - "y": -2642.618997 - } - } - }, - { - "id": "914e0131-d76f-5d75-9763-87500a28f356", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.015119, - "y": -2642.618997 - }, - "endPoint": { - "x": 1210.444086, - "y": -2642.623346 - } - } - }, - { - "id": "7af89cb6-03df-55a7-842a-33f023a0f229", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.444086, - "y": -2642.623346 - }, - "endPoint": { - "x": 1210.592957, - "y": -2642.632099 - } - } - }, - { - "id": "dfb8832d-96dc-5b4e-a35d-bdb5080c7750", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.592957, - "y": -2642.632099 - }, - "endPoint": { - "x": 1210.623532, - "y": -2642.518359 - } - } - }, - { - "id": "785a3539-25c4-52e2-93c7-43b55143d85a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.623532, - "y": -2642.518359 - }, - "endPoint": { - "x": 1210.540427, - "y": -2642.295339 - } - } - }, - { - "id": "b3a6d05e-d660-59e8-ac96-b2d1206498cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.540427, - "y": -2642.295339 - }, - "endPoint": { - "x": 1210.321583, - "y": -2642.011044 - } - } - }, - { - "id": "12fdd3cc-794e-568f-85bb-1383753f156a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.321583, - "y": -2642.011044 - }, - "endPoint": { - "x": 1210.225242, - "y": -2641.840434 - } - } - }, - { - "id": "3bc70edc-d1fa-55ce-b44b-8a58b048c196", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.225242, - "y": -2641.840434 - }, - "endPoint": { - "x": 1209.984442, - "y": -2641.818578 - } - } - }, - { - "id": "34cc8b04-80e7-53ea-8f5a-2f94f535bab1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.984442, - "y": -2641.818578 - }, - "endPoint": { - "x": 1209.86635, - "y": -2641.787969 - } - } - }, - { - "id": "d9062f6f-2590-50a9-a83f-60645ade1ebd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.86635, - "y": -2641.787969 - }, - "endPoint": { - "x": 1209.800687, - "y": -2641.726694 - } - } - }, - { - "id": "f492ee32-b56c-5013-8afb-2f2a81d3d742", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.800687, - "y": -2641.726694 - }, - "endPoint": { - "x": 1209.503047, - "y": -2641.726694 - } - } - }, - { - "id": "87df91fc-15e9-5120-8980-389d322a8d41", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.503047, - "y": -2641.726694 - }, - "endPoint": { - "x": 1209.476781, - "y": -2641.805476 - } - } - }, - { - "id": "9863e1b4-7951-5cd2-afc6-4d84e79e3042", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.476781, - "y": -2641.805476 - }, - "endPoint": { - "x": 1209.17473, - "y": -2641.822927 - } - } - }, - { - "id": "bc644367-a715-5256-a51c-ea339ff2c351", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.17473, - "y": -2641.822927 - }, - "endPoint": { - "x": 1208.351782, - "y": -2641.840434 - } - } - }, - { - "id": "835d3429-11ca-5581-a467-02b279c9d59a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.351782, - "y": -2641.840434 - }, - "endPoint": { - "x": 1207.984067, - "y": -2641.814174 - } - } - }, - { - "id": "c128e0ad-46dd-5c80-96e9-66a198f6ffb1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.984067, - "y": -2641.814174 - }, - "endPoint": { - "x": 1207.900961, - "y": -2641.735448 - } - } - }, - { - "id": "4f4b7c54-cfa0-5a6d-ac83-d266a0e9fbfb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.900961, - "y": -2641.735448 - }, - "endPoint": { - "x": 1207.769634, - "y": -2641.626112 - } - } - }, - { - "id": "f2260717-a703-5c56-a55c-68b66cdf1828", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.769634, - "y": -2641.626112 - }, - "endPoint": { - "x": 1207.667343, - "y": -2641.541385 - } - } - }, - { - "id": "5a671bd6-c746-5fc0-8641-819b8acd90a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.667343, - "y": -2641.541385 - }, - "endPoint": { - "x": 1207.632357, - "y": -2641.458255 - } - } - }, - { - "id": "d04b527f-9979-5f8f-80e3-6ae2122cba53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.632357, - "y": -2641.458255 - }, - "endPoint": { - "x": 1207.575414, - "y": -2641.217728 - } - } - }, - { - "id": "a6fe913b-f788-5892-b023-b3b01020a275", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.575414, - "y": -2641.217728 - }, - "endPoint": { - "x": 1207.557972, - "y": -2641.016508 - } - } - }, - { - "id": "c52980dd-57a0-5b12-b523-f839e2de5e06", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.557972, - "y": -2641.016508 - }, - "endPoint": { - "x": 1207.627945, - "y": -2640.535398 - } - } - }, - { - "id": "e1ce70c9-265b-5607-ba93-b6b2f32452b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.627945, - "y": -2640.535398 - }, - "endPoint": { - "x": 1207.820318, - "y": -2640.252755 - } - } - }, - { - "id": "f5c29b27-6bf3-511d-b184-3598e9850f61", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.820318, - "y": -2640.252755 - }, - "endPoint": { - "x": 1208.1354, - "y": -2640.099707 - } - } - }, - { - "id": "0c6caf14-7e5f-53fe-a4dc-6d4c48b43545", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.1354, - "y": -2640.099707 - }, - "endPoint": { - "x": 1208.481262, - "y": -2640.095303 - } - } - }, - { - "id": "2d82d8eb-0e7a-56f9-bca3-fa8a943a033f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.481262, - "y": -2640.095303 - }, - "endPoint": { - "x": 1208.50527, - "y": -2640.043278 - } - } - }, - { - "id": "db71ec6a-181c-5643-8b70-5ec36bd15ada", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.50527, - "y": -2640.043278 - }, - "endPoint": { - "x": 1208.459101, - "y": -2639.989436 - } - } - }, - { - "id": "b2c45365-4896-5e2f-8504-1ac6a731f233", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.459101, - "y": -2639.989436 - }, - "endPoint": { - "x": 1208.174388, - "y": -2639.877953 - } - } - }, - { - "id": "42618983-bbae-5208-81f6-3f8b5922dfc8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.174388, - "y": -2639.877953 - }, - "endPoint": { - "x": 1207.912658, - "y": -2639.697214 - } - } - }, - { - "id": "7dc72683-0542-5a5a-962f-d2fcf121c64e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.912658, - "y": -2639.697214 - }, - "endPoint": { - "x": 1207.808827, - "y": -2639.501114 - } - } - }, - { - "id": "0a1be6e9-9b83-5043-85ca-8a965cf62b6d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.808827, - "y": -2639.501114 - }, - "endPoint": { - "x": 1207.777535, - "y": -2638.895144 - } - } - }, - { - "id": "479b19c1-03bc-5a11-a940-73f072a3063b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.777535, - "y": -2638.895144 - }, - "endPoint": { - "x": 1207.862281, - "y": -2638.422182 - } - } - }, - { - "id": "a9aafa78-9bbd-553d-bbc5-26e911504078", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.862281, - "y": -2638.422182 - }, - "endPoint": { - "x": 1207.958417, - "y": -2637.995409 - } - } - }, - { - "id": "6d8b1130-de18-5101-9420-14965c847c66", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.958417, - "y": -2637.995409 - }, - "endPoint": { - "x": 1208.30551, - "y": -2637.612514 - } - } - }, - { - "id": "61e49863-c1fe-5e6c-aaa5-4ac5700da890", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.30551, - "y": -2637.612514 - }, - "endPoint": { - "x": 1208.632596, - "y": -2637.389494 - } - } - }, - { - "id": "9f2d9ab1-db8c-5192-af5c-ab405579b051", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.632596, - "y": -2637.389494 - }, - "endPoint": { - "x": 1208.794189, - "y": -2637.254944 - } - } - }, - { - "id": "046cfb82-82ab-53b6-8123-2e9068ecd922", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.794189, - "y": -2637.254944 - }, - "endPoint": { - "x": 1209.102089, - "y": -2637.239529 - } - } - }, - { - "id": "0e8e4aba-8898-5bcb-adc7-299ec3f42646", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.102089, - "y": -2637.239529 - }, - "endPoint": { - "x": 1209.198225, - "y": -2637.158821 - } - } - }, - { - "id": "caaa19e5-b3f5-5daf-b229-53510541eae2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.198225, - "y": -2637.158821 - }, - "endPoint": { - "x": 1209.613854, - "y": -2637.135754 - } - } - }, - { - "id": "34692d93-499a-5151-a6f9-df1dae234030", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.613854, - "y": -2637.135754 - }, - "endPoint": { - "x": 1210.025584, - "y": -2637.139552 - } - } - }, - { - "id": "a65571d4-828e-5d64-8450-e3f856522d25", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.025584, - "y": -2637.139552 - }, - "endPoint": { - "x": 1210.115974, - "y": -2637.139277 - } - } - } - ] - }, - { - "id": "73e8ef1c-81b6-587a-80b2-d61771468f9b", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "8194f9ec-023e-599a-bc3a-87ba5a3329cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.259475, - "y": -2639.073351 - }, - "endPoint": { - "x": 1212.131329, - "y": -2638.890464 - } - } - }, - { - "id": "2ca84aa9-937f-5669-ba64-007617916643", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.131329, - "y": -2638.890464 - }, - "endPoint": { - "x": 1211.943059, - "y": -2638.741545 - } - } - }, - { - "id": "8799de5a-fda1-5f0f-b13b-65ef39c0da33", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.943059, - "y": -2638.741545 - }, - "endPoint": { - "x": 1211.739092, - "y": -2638.710165 - } - } - }, - { - "id": "f5a51084-49da-5f3c-8bab-6efa388ac432", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.739092, - "y": -2638.710165 - }, - "endPoint": { - "x": 1211.576986, - "y": -2638.817298 - } - } - }, - { - "id": "782511dc-7df3-52f4-9d9e-12471e2f3cc0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.576986, - "y": -2638.817298 - }, - "endPoint": { - "x": 1211.472437, - "y": -2638.960987 - } - } - }, - { - "id": "8d9ddde0-f319-5609-b82e-00fa95ab8aab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.472437, - "y": -2638.960987 - }, - "endPoint": { - "x": 1211.359989, - "y": -2639.151691 - } - } - }, - { - "id": "a3fb72f8-66f5-5504-8e97-00c37e24b181", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.359989, - "y": -2639.151691 - }, - "endPoint": { - "x": 1211.323361, - "y": -2639.318943 - } - } - }, - { - "id": "402bbe41-acc1-5f65-816b-b8b31849e2f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.323361, - "y": -2639.318943 - }, - "endPoint": { - "x": 1211.341726, - "y": -2639.475679 - } - } - }, - { - "id": "b5424632-38ee-5bb7-a81f-6b5fd5d886b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.341726, - "y": -2639.475679 - }, - "endPoint": { - "x": 1211.446274, - "y": -2639.621956 - } - } - }, - { - "id": "d34cf76a-4f2d-568f-afa8-05e947e706ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.446274, - "y": -2639.621956 - }, - "endPoint": { - "x": 1211.608381, - "y": -2639.82312 - } - } - }, - { - "id": "4e2beb54-f331-5821-8157-0d7a3f6adf01", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.608381, - "y": -2639.82312 - }, - "endPoint": { - "x": 1211.799318, - "y": -2639.930254 - } - } - }, - { - "id": "376daaed-1927-578a-baf1-f109996e5871", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.799318, - "y": -2639.930254 - }, - "endPoint": { - "x": 1211.963887, - "y": -2639.953872 - } - } - }, - { - "id": "2e786309-6977-551f-9b77-0ff52c2a68cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.963887, - "y": -2639.953872 - }, - "endPoint": { - "x": 1212.129174, - "y": -2639.863309 - } - } - }, - { - "id": "193aba47-3c01-5dd0-98e9-daeed42c0e48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.129174, - "y": -2639.863309 - }, - "endPoint": { - "x": 1212.257115, - "y": -2639.671559 - } - } - }, - { - "id": "8cfb1666-3f7a-5760-8ac8-0aa6215ea4bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.257115, - "y": -2639.671559 - }, - "endPoint": { - "x": 1212.272505, - "y": -2639.350268 - } - } - }, - { - "id": "49ae7bb7-035f-549f-892f-9a4c0b42ab99", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.272505, - "y": -2639.350268 - }, - "endPoint": { - "x": 1212.259475, - "y": -2639.073351 - } - } - } - ] - }, - { - "id": "a72c1a38-97f4-57b3-9803-390ed3b4cad6", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "c62fa1a2-80ab-51b4-a3f7-38c13c38610b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.582048, - "y": -2639.594925 - }, - "endPoint": { - "x": 1209.33304, - "y": -2639.870741 - } - } - }, - { - "id": "7fc2b30c-b789-5f3c-a4ed-4d9d43e887e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.33304, - "y": -2639.870741 - }, - "endPoint": { - "x": 1209.296002, - "y": -2639.889019 - } - } - }, - { - "id": "804644aa-4764-5b5e-b65e-bd65f54e8b9d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.296002, - "y": -2639.889019 - }, - "endPoint": { - "x": 1209.286768, - "y": -2639.935484 - } - } - }, - { - "id": "692eda7e-ea06-5405-9d9c-7d3990d54375", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.286768, - "y": -2639.935484 - }, - "endPoint": { - "x": 1209.290461, - "y": -2639.985637 - } - } - }, - { - "id": "3abfa332-ace9-55b5-ac68-d4f5067b4510", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.290461, - "y": -2639.985637 - }, - "endPoint": { - "x": 1209.338478, - "y": -2640.016742 - } - } - }, - { - "id": "5d813deb-fd11-5104-a763-bc5d7f466729", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.338478, - "y": -2640.016742 - }, - "endPoint": { - "x": 1209.544189, - "y": -2640.000557 - } - } - }, - { - "id": "2521a10a-7c1a-594f-b437-cd2b5bbcb7b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.544189, - "y": -2640.000557 - }, - "endPoint": { - "x": 1209.820181, - "y": -2639.957285 - } - } - }, - { - "id": "2aa6a981-a1c6-5adf-a25d-d192a2c60fdd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.820181, - "y": -2639.957285 - }, - "endPoint": { - "x": 1209.912212, - "y": -2639.865346 - } - } - }, - { - "id": "a51e98ca-e706-5df9-b416-9f6650d7894b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.912212, - "y": -2639.865346 - }, - "endPoint": { - "x": 1210.025789, - "y": -2639.740981 - } - } - }, - { - "id": "1c246fd4-25a4-58a9-a2fa-2a84aa2d152d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.025789, - "y": -2639.740981 - }, - "endPoint": { - "x": 1210.144907, - "y": -2639.622011 - } - } - }, - { - "id": "35f2a209-7919-596d-927d-aa8bdb703fd4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.144907, - "y": -2639.622011 - }, - "endPoint": { - "x": 1210.193642, - "y": -2639.4868 - } - } - }, - { - "id": "0d0dd612-e0c5-58cc-9988-ec36f242e864", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.193642, - "y": -2639.4868 - }, - "endPoint": { - "x": 1210.177328, - "y": -2639.254256 - } - } - }, - { - "id": "fb15ebdd-4dc6-5e43-b07e-9aa22a3cf3d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.177328, - "y": -2639.254256 - }, - "endPoint": { - "x": 1210.15568, - "y": -2639.108254 - } - } - }, - { - "id": "f90bb96a-6e6b-5f6d-ac21-ee90c13b8295", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.15568, - "y": -2639.108254 - }, - "endPoint": { - "x": 1210.074524, - "y": -2638.99468 - } - } - }, - { - "id": "eb18a75b-043f-546f-b989-dfde5e43e9ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.074524, - "y": -2638.99468 - }, - "endPoint": { - "x": 1210.004141, - "y": -2638.832438 - } - } - }, - { - "id": "3631d447-9891-5c09-93f1-52940bcaea1d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.004141, - "y": -2638.832438 - }, - "endPoint": { - "x": 1209.841829, - "y": -2638.751345 - } - } - }, - { - "id": "702b9c03-630f-55c2-ac34-3608e3b7f141", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.841829, - "y": -2638.751345 - }, - "endPoint": { - "x": 1209.739025, - "y": -2638.805407 - } - } - }, - { - "id": "6d9aa979-a02e-5b0a-99f5-6d6b860ad3d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.739025, - "y": -2638.805407 - }, - "endPoint": { - "x": 1209.711939, - "y": -2638.956803 - } - } - }, - { - "id": "6afd6e33-4f4a-575e-8506-064efefce569", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.711939, - "y": -2638.956803 - }, - "endPoint": { - "x": 1209.701063, - "y": -2639.329954 - } - } - }, - { - "id": "8683c097-e052-59cb-a1c0-c80aecc9cf2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.701063, - "y": -2639.329954 - }, - "endPoint": { - "x": 1209.582048, - "y": -2639.594925 - } - } - } - ] - }, - { - "id": "39bef005-9fe8-5f49-a327-0126c1c5ad47", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "d40890cf-cd27-5116-8b3e-4cec5cbf46c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.916897, - "y": -2641.307189 - }, - "endPoint": { - "x": 1211.732218, - "y": -2641.37061 - } - } - }, - { - "id": "99de2f03-79a6-5e14-a9c1-2c580f1efed4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.732218, - "y": -2641.37061 - }, - "endPoint": { - "x": 1211.634133, - "y": -2641.459962 - } - } - }, - { - "id": "6f18eef3-461f-5304-86e8-dc0542e85d4f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.634133, - "y": -2641.459962 - }, - "endPoint": { - "x": 1211.631261, - "y": -2641.581079 - } - } - }, - { - "id": "d55822f9-8446-5075-8d5e-bb07e5b26bba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.631261, - "y": -2641.581079 - }, - "endPoint": { - "x": 1211.691794, - "y": -2641.624296 - } - } - }, - { - "id": "f94f5231-d792-5987-8274-6340360ac8f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.691794, - "y": -2641.624296 - }, - "endPoint": { - "x": 1211.795727, - "y": -2641.690635 - } - } - }, - { - "id": "6d034ccc-1317-5b7a-bf2b-ad00f78e8891", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.795727, - "y": -2641.690635 - }, - "endPoint": { - "x": 1211.90243, - "y": -2641.785767 - } - } - }, - { - "id": "472bbe96-2ad7-5c04-8a4c-02c23ed3c3f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.90243, - "y": -2641.785767 - }, - "endPoint": { - "x": 1212.026473, - "y": -2641.791547 - } - } - }, - { - "id": "c1bae48c-a4b8-59ad-a887-a81236c4133c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.026473, - "y": -2641.791547 - }, - "endPoint": { - "x": 1212.179448, - "y": -2641.771343 - } - } - }, - { - "id": "7aa149f4-d8e7-561b-89ff-77ae6b65c964", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.179448, - "y": -2641.771343 - }, - "endPoint": { - "x": 1212.280405, - "y": -2641.696415 - } - } - }, - { - "id": "2bc49e05-7e5f-58f1-a91e-e81cfe7b42cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.280405, - "y": -2641.696415 - }, - "endPoint": { - "x": 1212.280405, - "y": -2641.526301 - } - } - }, - { - "id": "e5eb9383-e8a4-5a7d-8f2a-282fe15b87c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.280405, - "y": -2641.526301 - }, - "endPoint": { - "x": 1212.27466, - "y": -2641.382117 - } - } - }, - { - "id": "eafb4d4e-0b49-57f8-9d87-b65fe326ad82", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.27466, - "y": -2641.382117 - }, - "endPoint": { - "x": 1212.17083, - "y": -2641.321613 - } - } - }, - { - "id": "e4e2db8e-309f-590f-8bfe-efa9887649a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.17083, - "y": -2641.321613 - }, - "endPoint": { - "x": 1212.084236, - "y": -2641.286985 - } - } - }, - { - "id": "3e624f8f-25e6-5fdc-9fa6-5cc10ee2aee7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.084236, - "y": -2641.286985 - }, - "endPoint": { - "x": 1211.916897, - "y": -2641.307189 - } - } - } - ] - }, - { - "id": "7bd123b9-9487-56b2-bf0f-76083296ae55", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "ae46bb1b-a4fc-5f58-b4a5-957f97a3d82f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.115974, - "y": -2637.139277 - }, - "endPoint": { - "x": 1210.362725, - "y": -2636.988651 - } - } - }, - { - "id": "cd07b773-7d65-5373-bc3e-65d8e918cfb9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.362725, - "y": -2636.988651 - }, - "endPoint": { - "x": 1210.591008, - "y": -2636.72368 - } - } - }, - { - "id": "4dd8b542-91ef-5d96-ab32-6809f95eef40", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.591008, - "y": -2636.72368 - }, - "endPoint": { - "x": 1210.795796, - "y": -2636.360219 - } - } - }, - { - "id": "f8926edb-9371-58bc-8734-27a0467173b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.795796, - "y": -2636.360219 - }, - "endPoint": { - "x": 1210.993915, - "y": -2636.118756 - } - } - }, - { - "id": "f0aebedd-08df-5071-97dd-edf45897a234", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.993915, - "y": -2636.118756 - }, - "endPoint": { - "x": 1211.255645, - "y": -2635.961084 - } - } - }, - { - "id": "5d288a8b-50d2-5382-a452-ebdd761d4a16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.255645, - "y": -2635.961084 - }, - "endPoint": { - "x": 1211.534304, - "y": -2635.833635 - } - } - }, - { - "id": "660da44f-f9cc-5a6a-a3cd-c58bb0efc57d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.534304, - "y": -2635.833635 - }, - "endPoint": { - "x": 1211.779311, - "y": -2635.84371 - } - } - }, - { - "id": "8703ee14-d864-55a9-9a6b-52ec5e013e08", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.779311, - "y": -2635.84371 - }, - "endPoint": { - "x": 1212.068025, - "y": -2635.964442 - } - } - }, - { - "id": "09645b02-c098-5975-b3f3-276b8f18e387", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.068025, - "y": -2635.964442 - }, - "endPoint": { - "x": 1212.366794, - "y": -2636.195885 - } - } - }, - { - "id": "23dd5301-6e0f-5dbb-81c4-7b451158f13a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.366794, - "y": -2636.195885 - }, - "endPoint": { - "x": 1212.589742, - "y": -2636.461462 - } - } - }, - { - "id": "233f6044-1f9b-55c2-8753-0ddac3b82bdb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.589742, - "y": -2636.461462 - }, - "endPoint": { - "x": 1212.710604, - "y": -2636.723075 - } - } - }, - { - "id": "a1b63fb1-4ea1-54e5-911a-833f47828cef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.710604, - "y": -2636.723075 - }, - "endPoint": { - "x": 1212.831465, - "y": -2636.934369 - } - } - }, - { - "id": "c1670f77-becd-50df-ad76-a9e0255c4472", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.831465, - "y": -2636.934369 - }, - "endPoint": { - "x": 1213.103353, - "y": -2637.045026 - } - } - }, - { - "id": "a8cf2373-01c9-5641-af22-37659ccb30a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.103353, - "y": -2637.045026 - }, - "endPoint": { - "x": 1213.502771, - "y": -2637.071892 - } - } - }, - { - "id": "0f410061-b875-56cc-93dc-150be6bd384c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.502771, - "y": -2637.071892 - }, - "endPoint": { - "x": 1213.757936, - "y": -2637.128927 - } - } - }, - { - "id": "5db42b4b-987c-5916-bae8-9009fdf2a99d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.757936, - "y": -2637.128927 - }, - "endPoint": { - "x": 1214.246102, - "y": -2637.115549 - } - } - }, - { - "id": "7ff91f4f-759a-5d71-b843-a68fd2e1dfbc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.246102, - "y": -2637.115549 - }, - "endPoint": { - "x": 1214.45089, - "y": -2636.988101 - } - } - }, - { - "id": "948fb00c-d2c7-5d78-afad-48fc1853bb74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.45089, - "y": -2636.988101 - }, - "endPoint": { - "x": 1214.498804, - "y": -2636.958702 - } - } - }, - { - "id": "e8e246f9-05b1-5d21-b032-7d2789f3196c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.498804, - "y": -2636.958702 - }, - "endPoint": { - "x": 1214.723393, - "y": -2637.109108 - } - } - }, - { - "id": "309fb8eb-c6f6-5df8-a9b4-03497814cd1b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.723393, - "y": -2637.109108 - }, - "endPoint": { - "x": 1215.11009, - "y": -2637.500096 - } - } - }, - { - "id": "66e66ebf-31dd-5f6f-869a-539ad1fe297a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.11009, - "y": -2637.500096 - }, - "endPoint": { - "x": 1215.660021, - "y": -2637.952688 - } - } - }, - { - "id": "6ab60545-e43a-536c-acf2-5d96b554a29b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.660021, - "y": -2637.952688 - }, - "endPoint": { - "x": 1215.938578, - "y": -2638.302055 - } - } - }, - { - "id": "cfd0294f-7096-5e97-bac4-487b54413750", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.938578, - "y": -2638.302055 - }, - "endPoint": { - "x": 1215.964433, - "y": -2638.339547 - } - } - }, - { - "id": "670b023e-abc6-5bb9-ab10-3e42241d81c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.964433, - "y": -2638.339547 - }, - "endPoint": { - "x": 1215.820383, - "y": -2638.319617 - } - } - }, - { - "id": "46640c97-815e-52f8-a5bd-0604375b0517", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.820383, - "y": -2638.319617 - }, - "endPoint": { - "x": 1215.736252, - "y": -2638.311084 - } - } - }, - { - "id": "eefa49f2-6633-5ee5-950f-2ef049c9883a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.736252, - "y": -2638.311084 - }, - "endPoint": { - "x": 1215.633653, - "y": -2638.313947 - } - } - }, - { - "id": "b786e60b-aceb-5440-babe-28e674324847", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.633653, - "y": -2638.313947 - }, - "endPoint": { - "x": 1215.550958, - "y": -2638.336739 - } - } - }, - { - "id": "bcbea1ef-c4e4-51f2-977e-91ae57edbeca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.550958, - "y": -2638.336739 - }, - "endPoint": { - "x": 1215.536697, - "y": -2638.382323 - } - } - }, - { - "id": "f87197b3-36e6-5438-895e-1dfea04bb333", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.536697, - "y": -2638.382323 - }, - "endPoint": { - "x": 1215.556601, - "y": -2638.439303 - } - } - }, - { - "id": "e3dc340d-3c9f-57f2-8308-b7fd88b44c4f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.556601, - "y": -2638.439303 - }, - "endPoint": { - "x": 1215.562347, - "y": -2638.500522 - } - } - }, - { - "id": "b9bfedaa-8d65-5b73-a31b-ce6f4ea54386", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.562347, - "y": -2638.500522 - }, - "endPoint": { - "x": 1215.530541, - "y": -2638.628466 - } - } - }, - { - "id": "1f15b409-f465-5b94-a0b2-5abec2fbfe68", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.530541, - "y": -2638.628466 - }, - "endPoint": { - "x": 1215.525206, - "y": -2638.75184 - } - } - }, - { - "id": "aeafc84e-c9a3-556b-912d-b704cf46590a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.525206, - "y": -2638.75184 - }, - "endPoint": { - "x": 1215.537723, - "y": -2638.8609 - } - } - }, - { - "id": "a2d0bb33-f21c-513c-b526-2da6db709ff5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.537723, - "y": -2638.8609 - }, - "endPoint": { - "x": 1215.544905, - "y": -2638.972934 - } - } - }, - { - "id": "c63e4079-bd8f-533c-88b8-6c695e75bfda", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.544905, - "y": -2638.972934 - }, - "endPoint": { - "x": 1215.568092, - "y": -2639.123119 - } - } - }, - { - "id": "a527a72a-9e16-51dc-bdcd-56baa5577b2e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.568092, - "y": -2639.123119 - }, - "endPoint": { - "x": 1215.557422, - "y": -2639.257283 - } - } - }, - { - "id": "6b2f9c12-7ac6-5c53-a1d5-6b21e4d57035", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.557422, - "y": -2639.257283 - }, - "endPoint": { - "x": 1215.510842, - "y": -2639.402128 - } - } - }, - { - "id": "3492d3dc-61dc-5427-a9fe-d6bbe3ab1739", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.510842, - "y": -2639.402128 - }, - "endPoint": { - "x": 1215.399522, - "y": -2639.545652 - } - } - }, - { - "id": "a704c03c-47a1-5306-bebb-9e979d77e7a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.399522, - "y": -2639.545652 - }, - "endPoint": { - "x": 1215.283277, - "y": -2639.652951 - } - } - }, - { - "id": "d7f4f65b-df30-505a-b909-1a088ff10c7a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.283277, - "y": -2639.652951 - }, - "endPoint": { - "x": 1215.140048, - "y": -2639.72986 - } - } - }, - { - "id": "c6d474f3-3531-5d08-b024-0a27e3c363c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.140048, - "y": -2639.72986 - }, - "endPoint": { - "x": 1215.102497, - "y": -2639.778142 - } - } - }, - { - "id": "d1123607-3d60-5dd2-8795-2d236f36488e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.102497, - "y": -2639.778142 - }, - "endPoint": { - "x": 1215.060945, - "y": -2639.823671 - } - } - }, - { - "id": "8835d432-3b20-53aa-ab18-543e501ce931", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.060945, - "y": -2639.823671 - }, - "endPoint": { - "x": 1214.770999, - "y": -2639.837985 - } - } - }, - { - "id": "e4560fe1-c4c7-5625-a835-fdc00ed7db18", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.770999, - "y": -2639.837985 - }, - "endPoint": { - "x": 1214.395179, - "y": -2639.837985 - } - } - }, - { - "id": "f3fb1a42-a2d4-5a2c-8205-681e4e8cc1d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.395179, - "y": -2639.837985 - }, - "endPoint": { - "x": 1214.259235, - "y": -2639.741421 - } - } - }, - { - "id": "eca68eb4-0a0b-5aad-86b1-99c79505e6b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.259235, - "y": -2639.741421 - }, - "endPoint": { - "x": 1214.214399, - "y": -2639.575106 - } - } - }, - { - "id": "7f3e42ea-7198-5a6b-a82e-595c4b942019", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.214399, - "y": -2639.575106 - }, - "endPoint": { - "x": 1214.230199, - "y": -2639.443253 - } - } - }, - { - "id": "0501b110-5a7d-5261-84ce-77e3f9f1bced", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.230199, - "y": -2639.443253 - }, - "endPoint": { - "x": 1214.207012, - "y": -2639.303803 - } - } - }, - { - "id": "62bc238c-e1da-57c3-81a9-d22e945177b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.207012, - "y": -2639.303803 - }, - "endPoint": { - "x": 1214.149659, - "y": -2639.219737 - } - } - }, - { - "id": "72b4dbeb-f13b-553f-ae5b-aa57c490817d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.149659, - "y": -2639.219737 - }, - "endPoint": { - "x": 1214.122881, - "y": -2639.142828 - } - } - }, - { - "id": "53ccf4c5-5447-52df-99a5-e70c14f98eef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.122881, - "y": -2639.142828 - }, - "endPoint": { - "x": 1214.110364, - "y": -2638.862112 - } - } - }, - { - "id": "a24d4942-3d3a-5259-a624-b30692f1f5a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.110364, - "y": -2638.862112 - }, - "endPoint": { - "x": 1214.029823, - "y": -2638.733342 - } - } - }, - { - "id": "1efbe3bc-585f-57e6-bd5d-2954289f6261", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.029823, - "y": -2638.733342 - }, - "endPoint": { - "x": 1213.947436, - "y": -2638.6332 - } - } - }, - { - "id": "9a433b40-7a8b-520d-a918-bc3866ec3e63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.947436, - "y": -2638.6332 - }, - "endPoint": { - "x": 1213.875925, - "y": -2638.572367 - } - } - }, - { - "id": "9b37957e-1341-524c-9958-9e1549e45d63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.875925, - "y": -2638.572367 - }, - "endPoint": { - "x": 1213.828729, - "y": -2638.569999 - } - } - }, - { - "id": "4da4c6c2-c447-51eb-a1b6-7c688aff57ff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.828729, - "y": -2638.569999 - }, - "endPoint": { - "x": 1213.726745, - "y": -2638.612886 - } - } - }, - { - "id": "f879ee4f-307b-53cd-9842-0c6f71f9e04f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.726745, - "y": -2638.612886 - }, - "endPoint": { - "x": 1213.622915, - "y": -2638.696952 - } - } - }, - { - "id": "b3fa8c82-5b03-539f-952d-34a0b76f2e71", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.622915, - "y": -2638.696952 - }, - "endPoint": { - "x": 1213.571, - "y": -2638.786358 - } - } - }, - { - "id": "3bd245a2-0cdc-57b8-96e0-dbe0e648f760", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.571, - "y": -2638.786358 - }, - "endPoint": { - "x": 1213.556739, - "y": -2638.965171 - } - } - }, - { - "id": "4a5892de-367e-5cd8-9a9c-148cc5819462", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.556739, - "y": -2638.965171 - }, - "endPoint": { - "x": 1213.51375, - "y": -2639.054578 - } - } - }, - { - "id": "c2c28cce-89b3-576f-bd32-5834384a1484", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.51375, - "y": -2639.054578 - }, - "endPoint": { - "x": 1213.567409, - "y": -2639.169033 - } - } - }, - { - "id": "264026f7-5a1c-53d4-b303-8b89424a9dc5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.567409, - "y": -2639.169033 - }, - "endPoint": { - "x": 1213.567409, - "y": -2639.28448 - } - } - }, - { - "id": "75168069-2bf6-5c18-8e88-c27f683653db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.567409, - "y": -2639.28448 - }, - "endPoint": { - "x": 1213.569153, - "y": -2639.500839 - } - } - }, - { - "id": "e12f8f18-ddc6-59f7-b513-8396840fa2a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.569153, - "y": -2639.500839 - }, - "endPoint": { - "x": 1213.597778, - "y": -2639.643922 - } - } - }, - { - "id": "e215101a-754b-5ca5-bf27-129d38fc24fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.597778, - "y": -2639.643922 - }, - "endPoint": { - "x": 1213.683654, - "y": -2639.695782 - } - } - }, - { - "id": "9c69b617-7a72-5a4d-87d5-e71d734d6cbf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.683654, - "y": -2639.695782 - }, - "endPoint": { - "x": 1213.758859, - "y": -2639.854335 - } - } - }, - { - "id": "ed154bde-f0c2-517b-9848-5f37771b8731", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.758859, - "y": -2639.854335 - }, - "endPoint": { - "x": 1213.916349, - "y": -2639.938402 - } - } - }, - { - "id": "e4f32949-d00a-5d93-9c29-bbca412b62cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.916349, - "y": -2639.938402 - }, - "endPoint": { - "x": 1214.170076, - "y": -2639.940604 - } - } - }, - { - "id": "5051703e-6f6d-539b-bd39-e250315d157b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.170076, - "y": -2639.940604 - }, - "endPoint": { - "x": 1214.39169, - "y": -2639.926675 - } - } - }, - { - "id": "519dc765-5590-50b6-a5e4-97439a4d82c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.39169, - "y": -2639.926675 - }, - "endPoint": { - "x": 1214.692306, - "y": -2639.937521 - } - } - }, - { - "id": "ccfec7ca-a26e-5e1f-9667-b4ca191b7c20", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.692306, - "y": -2639.937521 - }, - "endPoint": { - "x": 1215.122299, - "y": -2639.952991 - } - } - }, - { - "id": "e88ce31b-cd65-59b0-a30c-0df7398b68c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.122299, - "y": -2639.952991 - }, - "endPoint": { - "x": 1215.503455, - "y": -2640.007218 - } - } - }, - { - "id": "d7f8b2a3-9a47-5526-90d2-4981468f63cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.503455, - "y": -2640.007218 - }, - "endPoint": { - "x": 1215.853728, - "y": -2640.083081 - } - } - }, - { - "id": "b0da438b-16f3-5cf4-8fb5-7cd067bb5d45", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.853728, - "y": -2640.083081 - }, - "endPoint": { - "x": 1216.082832, - "y": -2640.261123 - } - } - }, - { - "id": "b4b268b9-dc55-52de-afc5-eacf024ab231", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.082832, - "y": -2640.261123 - }, - "endPoint": { - "x": 1216.257353, - "y": -2640.514809 - } - } - }, - { - "id": "692cc0c6-f9d3-507a-8c94-528d53fdea56", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.257353, - "y": -2640.514809 - }, - "endPoint": { - "x": 1216.265356, - "y": -2640.827896 - } - } - }, - { - "id": "a5750d31-6f11-5ea0-8383-b275b08b7bc6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.265356, - "y": -2640.827896 - }, - "endPoint": { - "x": 1216.281156, - "y": -2641.041888 - } - } - }, - { - "id": "b06a2090-44fd-55b7-a00b-d419920147e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.281156, - "y": -2641.041888 - }, - "endPoint": { - "x": 1216.185944, - "y": -2641.25588 - } - } - }, - { - "id": "56c09e0e-f3ba-5ad8-9121-880cf2f39b9a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.185944, - "y": -2641.25588 - }, - "endPoint": { - "x": 1216.094733, - "y": -2641.39065 - } - } - }, - { - "id": "85f5feb1-2811-55bb-a68d-33259343a9d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.094733, - "y": -2641.39065 - }, - "endPoint": { - "x": 1215.884508, - "y": -2641.505546 - } - } - }, - { - "id": "fd60fe30-825e-5609-a1f5-7a0690007d20", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.884508, - "y": -2641.505546 - }, - "endPoint": { - "x": 1215.499864, - "y": -2641.54122 - } - } - }, - { - "id": "4a342e3c-1c9b-5050-83d2-8fb2979eaa4d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.499864, - "y": -2641.54122 - }, - "endPoint": { - "x": 1215.059611, - "y": -2641.553112 - } - } - }, - { - "id": "62e82e68-938a-568c-900f-49ab9c8f18f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.059611, - "y": -2641.553112 - }, - "endPoint": { - "x": 1214.55985, - "y": -2641.521401 - } - } - }, - { - "id": "0bbc06a6-9939-5a31-9d8d-6ab5542f1d73", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.55985, - "y": -2641.521401 - }, - "endPoint": { - "x": 1214.417032, - "y": -2641.461944 - } - } - }, - { - "id": "77632221-78a2-5645-b1cc-f5fba77af5dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.417032, - "y": -2641.461944 - }, - "endPoint": { - "x": 1214.119597, - "y": -2641.446088 - } - } - }, - { - "id": "eac908ca-9677-565c-804b-2025fa41c532", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.119597, - "y": -2641.446088 - }, - "endPoint": { - "x": 1213.89747, - "y": -2641.461944 - } - } - }, - { - "id": "54cde321-b6a5-5454-9a4b-8428b3fa3ece", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.89747, - "y": -2641.461944 - }, - "endPoint": { - "x": 1213.725822, - "y": -2641.698067 - } - } - }, - { - "id": "64ebe0e6-6544-57df-9bd8-d81cee135e50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.725822, - "y": -2641.698067 - }, - "endPoint": { - "x": 1213.678216, - "y": -2641.816982 - } - } - }, - { - "id": "99fd1018-6137-5729-8dfc-c9ecc0a0408c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.678216, - "y": -2641.816982 - }, - "endPoint": { - "x": 1213.598907, - "y": -2641.924005 - } - } - }, - { - "id": "40ff4a14-0c18-544f-8098-ad0119000155", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.598907, - "y": -2641.924005 - }, - "endPoint": { - "x": 1213.444187, - "y": -2642.102322 - } - } - }, - { - "id": "1cb5be6a-840a-5ce6-b99a-c805e972ce10", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.444187, - "y": -2642.102322 - }, - "endPoint": { - "x": 1213.348975, - "y": -2642.201418 - } - } - }, - { - "id": "b7a5a6be-4404-5e6e-b698-52b72abc57a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.348975, - "y": -2642.201418 - }, - "endPoint": { - "x": 1213.333175, - "y": -2642.407482 - } - } - }, - { - "id": "4ba8783a-8791-5f7e-9af8-6d9c75eb1b9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.333175, - "y": -2642.407482 - }, - "endPoint": { - "x": 1213.392683, - "y": -2642.554089 - } - } - }, - { - "id": "b97b5838-5617-5e2d-9334-7a6830566db2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.392683, - "y": -2642.554089 - }, - "endPoint": { - "x": 1213.499694, - "y": -2642.621474 - } - } - }, - { - "id": "3cf188ef-05c4-5872-bfc2-79dc2ca6dee5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.499694, - "y": -2642.621474 - }, - "endPoint": { - "x": 1213.832936, - "y": -2642.633366 - } - } - }, - { - "id": "3be4e305-c25f-533e-b375-20fde8166d9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.832936, - "y": -2642.633366 - }, - "endPoint": { - "x": 1214.364399, - "y": -2642.637329 - } - } - }, - { - "id": "7728c351-3fe8-5880-8256-f8a6487c76a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.364399, - "y": -2642.637329 - }, - "endPoint": { - "x": 1214.570623, - "y": -2642.633366 - } - } - }, - { - "id": "2152b1af-5eec-543d-a2cb-84dafd242333", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.570623, - "y": -2642.633366 - }, - "endPoint": { - "x": 1214.721341, - "y": -2642.51847 - } - } - }, - { - "id": "9076f697-771a-5d06-aeb7-1bf44125d98a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.721341, - "y": -2642.51847 - }, - "endPoint": { - "x": 1214.96327, - "y": -2642.447121 - } - } - }, - { - "id": "2c90b8de-5e5f-58e7-813f-672c8d3b1bda", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.96327, - "y": -2642.447121 - }, - "endPoint": { - "x": 1215.19812, - "y": -2642.403684 - } - } - }, - { - "id": "4532e1ac-553a-5991-9498-cc527662555c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.19812, - "y": -2642.403684 - }, - "endPoint": { - "x": 1215.475753, - "y": -2642.407647 - } - } - }, - { - "id": "390fbd1c-eb7d-5f01-8ad4-0cda3beef374", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.475753, - "y": -2642.407647 - }, - "endPoint": { - "x": 1215.793092, - "y": -2642.39972 - } - } - }, - { - "id": "c3d901fe-d5ed-5d6c-97dc-dd75b42d67ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.793092, - "y": -2642.39972 - }, - "endPoint": { - "x": 1215.931909, - "y": -2642.387828 - } - } - }, - { - "id": "7d731b96-89a8-5ca3-8c4f-e2cb088deed2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.931909, - "y": -2642.387828 - }, - "endPoint": { - "x": 1215.991416, - "y": -2642.463141 - } - } - }, - { - "id": "1a9dc843-c519-59e7-8529-9ac3fbcb8ef8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.991416, - "y": -2642.463141 - }, - "endPoint": { - "x": 1216.122333, - "y": -2642.498816 - } - } - }, - { - "id": "d9f835f3-42e3-5c2b-b39a-721b8199ae20", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.122333, - "y": -2642.498816 - }, - "endPoint": { - "x": 1216.209542, - "y": -2642.502779 - } - } - }, - { - "id": "16ee2045-0a5b-5f5e-a425-fd019c7c6e03", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.209542, - "y": -2642.502779 - }, - "endPoint": { - "x": 1216.265048, - "y": -2642.558273 - } - } - }, - { - "id": "c63995b6-c3a1-5e58-9182-23699aef12c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.265048, - "y": -2642.558273 - }, - "endPoint": { - "x": 1216.304754, - "y": -2642.669205 - } - } - }, - { - "id": "91d2b285-86c3-596f-8289-5b896a52cf42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.304754, - "y": -2642.669205 - }, - "endPoint": { - "x": 1216.36816, - "y": -2642.744518 - } - } - }, - { - "id": "e0ba653b-d2cb-5199-8499-1fe0ebb39855", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.36816, - "y": -2642.744518 - }, - "endPoint": { - "x": 1216.397401, - "y": -2643.08794 - } - } - }, - { - "id": "52dd2eb5-6467-55ec-b58d-bafcc6b4c1a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.397401, - "y": -2643.08794 - }, - "endPoint": { - "x": 1216.407148, - "y": -2643.317346 - } - } - }, - { - "id": "de76ffa3-eeb0-5244-b623-4bc8a0fade82", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.407148, - "y": -2643.317346 - }, - "endPoint": { - "x": 1216.399248, - "y": -2643.694406 - } - } - }, - { - "id": "a8ac2381-37ac-57e2-9693-512f059d2e0b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.399248, - "y": -2643.694406 - }, - "endPoint": { - "x": 1216.191587, - "y": -2644.166102 - } - } - }, - { - "id": "987c8a3a-2898-5682-8078-65f97e0fac75", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.191587, - "y": -2644.166102 - }, - "endPoint": { - "x": 1215.858858, - "y": -2644.502862 - } - } - }, - { - "id": "14603cb6-e133-5173-b70e-c4d8cede920e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.858858, - "y": -2644.502862 - }, - "endPoint": { - "x": 1215.526232, - "y": -2644.599095 - } - } - }, - { - "id": "a8f59fa3-8e86-555a-a9b2-b78ca2c50230", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.526232, - "y": -2644.599095 - }, - "endPoint": { - "x": 1215.32483, - "y": -2644.647211 - } - } - }, - { - "id": "47c55f6b-55c0-539b-9d1b-44c175ee4ddb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.32483, - "y": -2644.647211 - }, - "endPoint": { - "x": 1214.856464, - "y": -2644.699677 - } - } - }, - { - "id": "4a149698-fd8f-5946-b8bd-e114172fa685", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.856464, - "y": -2644.699677 - }, - "endPoint": { - "x": 1214.677019, - "y": -2644.73904 - } - } - }, - { - "id": "677ece2b-df5d-50fb-a914-b04791eda37a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.677019, - "y": -2644.73904 - }, - "endPoint": { - "x": 1213.770966, - "y": -2644.577239 - } - } - }, - { - "id": "30d0672d-b011-5a10-a39d-f2716a35fad6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.770966, - "y": -2644.577239 - }, - "endPoint": { - "x": 1213.363852, - "y": -2644.502862 - } - } - }, - { - "id": "4ad3c2d6-146e-5b47-b00f-59646ce92eac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.363852, - "y": -2644.502862 - }, - "endPoint": { - "x": 1212.831465, - "y": -2644.301147 - } - } - }, - { - "id": "fb8cf338-1725-52e5-9ad3-542a3873871e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.831465, - "y": -2644.301147 - }, - "endPoint": { - "x": 1212.603798, - "y": -2644.22677 - } - } - }, - { - "id": "9348d4b9-a984-58d3-87cc-4f56bd10c1c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.603798, - "y": -2644.22677 - }, - "endPoint": { - "x": 1212.393675, - "y": -2644.051811 - } - } - }, - { - "id": "3fbf5166-c2c3-525f-88d7-4909facd9d56", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.393675, - "y": -2644.051811 - }, - "endPoint": { - "x": 1212.218641, - "y": -2643.872503 - } - } - }, - { - "id": "2ea59306-96b4-5539-b96d-93838307007f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.218641, - "y": -2643.872503 - }, - "endPoint": { - "x": 1212.082902, - "y": -2643.863749 - } - } - }, - { - "id": "7d5114a6-a21e-5ecf-a853-eb58821fcb73", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.082902, - "y": -2643.863749 - }, - "endPoint": { - "x": 1211.921001, - "y": -2643.959982 - } - } - }, - { - "id": "67ba4f0d-2c1b-574b-99d3-d7a501c4107e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.921001, - "y": -2643.959982 - }, - "endPoint": { - "x": 1211.658347, - "y": -2644.152448 - } - } - }, - { - "id": "20cedeed-6b05-5232-a5ab-2c9b96c7505d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.658347, - "y": -2644.152448 - }, - "endPoint": { - "x": 1211.417649, - "y": -2644.222421 - } - } - }, - { - "id": "da3f11d9-279b-5175-94b6-e51fb91e1b57", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.417649, - "y": -2644.222421 - }, - "endPoint": { - "x": 1211.211835, - "y": -2644.336106 - } - } - }, - { - "id": "beab7936-312a-5d60-86d7-48d20313c1bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.211835, - "y": -2644.336106 - }, - "endPoint": { - "x": 1210.949284, - "y": -2644.458599 - } - } - }, - { - "id": "21941113-8d36-57b1-a0f0-5c214bc1165e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.949284, - "y": -2644.458599 - }, - "endPoint": { - "x": 1210.594702, - "y": -2644.633558 - } - } - }, - { - "id": "79766858-1b00-54fc-9ee8-eda020bb27b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.594702, - "y": -2644.633558 - }, - "endPoint": { - "x": 1210.318915, - "y": -2644.725387 - } - } - }, - { - "id": "c8704cce-d1bf-51b6-aae2-c1eccd806561", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.318915, - "y": -2644.725387 - }, - "endPoint": { - "x": 1210.174456, - "y": -2644.804113 - } - } - }, - { - "id": "a19d0423-d6f2-5ef9-9eb5-accedad479aa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.174456, - "y": -2644.804113 - }, - "endPoint": { - "x": 1209.671104, - "y": -2644.825969 - } - } - }, - { - "id": "5f06a75f-b111-59fd-8696-7565876928f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.671104, - "y": -2644.825969 - }, - "endPoint": { - "x": 1209.059613, - "y": -2644.796516 - } - } - }, - { - "id": "8f6d2205-fce3-54d7-8fe2-8e9d7b2f3c33", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.059613, - "y": -2644.796516 - }, - "endPoint": { - "x": 1208.69631, - "y": -2644.757153 - } - } - }, - { - "id": "4ae09a41-4731-5d08-b584-81692fd248f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.69631, - "y": -2644.757153 - }, - "endPoint": { - "x": 1208.402979, - "y": -2644.542831 - } - } - }, - { - "id": "165aef9e-2ab6-53da-891e-3212d87ae9c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.402979, - "y": -2644.542831 - }, - "endPoint": { - "x": 1208.074662, - "y": -2644.381029 - } - } - }, - { - "id": "5db412b8-5463-55f4-bd35-08793fc10a2f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.074662, - "y": -2644.381029 - }, - "endPoint": { - "x": 1207.794566, - "y": -2643.982995 - } - } - }, - { - "id": "cb466810-78ed-56b7-9bf2-3cb14f8dc14d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.794566, - "y": -2643.982995 - }, - "endPoint": { - "x": 1207.662726, - "y": -2643.80187 - } - } - }, - { - "id": "b645d61d-deec-5d2d-a054-f0c125b75ed2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.662726, - "y": -2643.80187 - }, - "endPoint": { - "x": 1207.658314, - "y": -2643.360123 - } - } - }, - { - "id": "6d1eeef0-c981-53af-ad5e-62f31cc53422", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.658314, - "y": -2643.360123 - }, - "endPoint": { - "x": 1207.737111, - "y": -2643.193917 - } - } - }, - { - "id": "ffa23e50-811c-5a32-96d4-2d1429437e26", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.737111, - "y": -2643.193917 - }, - "endPoint": { - "x": 1207.776509, - "y": -2643.018958 - } - } - }, - { - "id": "b84d17ba-7e43-5de2-be68-e617b6ae4e53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.776509, - "y": -2643.018958 - }, - "endPoint": { - "x": 1208.008485, - "y": -2642.721561 - } - } - }, - { - "id": "41f2f984-1b5e-5132-b511-2e7852498e38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.008485, - "y": -2642.721561 - }, - "endPoint": { - "x": 1208.266727, - "y": -2642.494081 - } - } - }, - { - "id": "33a0b692-659d-5d75-9fb9-9bb63f07d504", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.266727, - "y": -2642.494081 - }, - "endPoint": { - "x": 1208.695694, - "y": -2642.432862 - } - } - }, - { - "id": "e8bb191c-a9e8-5b29-96dd-12bff27ec884", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.695694, - "y": -2642.432862 - }, - "endPoint": { - "x": 1208.995284, - "y": -2642.461545 - } - } - }, - { - "id": "cd983aa0-5eed-59ad-ad93-33cb385bc13a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.995284, - "y": -2642.461545 - }, - "endPoint": { - "x": 1209.415427, - "y": -2642.465894 - } - } - }, - { - "id": "6b7f15ca-8c5a-53d4-ab4a-d35f9b349df2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.415427, - "y": -2642.465894 - }, - "endPoint": { - "x": 1209.564299, - "y": -2642.48775 - } - } - }, - { - "id": "159fecd4-bf62-5511-b052-035ad3e73331", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.564299, - "y": -2642.48775 - }, - "endPoint": { - "x": 1209.686802, - "y": -2642.583983 - } - } - }, - { - "id": "94acaa77-7ac6-5110-a1b2-ceb7cf54cf3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.686802, - "y": -2642.583983 - }, - "endPoint": { - "x": 1209.752465, - "y": -2642.614592 - } - } - }, - { - "id": "d7b0fdb7-96be-54a1-93a9-322bad357d89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.752465, - "y": -2642.614592 - }, - "endPoint": { - "x": 1210.015119, - "y": -2642.618997 - } - } - }, - { - "id": "9d833532-90d4-58b0-a545-9191440e393c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.015119, - "y": -2642.618997 - }, - "endPoint": { - "x": 1210.444086, - "y": -2642.623346 - } - } - }, - { - "id": "d45ed282-c984-5dc4-a4c8-778b824dcbf8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.444086, - "y": -2642.623346 - }, - "endPoint": { - "x": 1210.592957, - "y": -2642.632099 - } - } - }, - { - "id": "134515f1-32aa-5a9f-8202-53799b358feb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.592957, - "y": -2642.632099 - }, - "endPoint": { - "x": 1210.623532, - "y": -2642.518359 - } - } - }, - { - "id": "42aec3d8-c7e2-5ee4-b5f9-7b0e71c8fe16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.623532, - "y": -2642.518359 - }, - "endPoint": { - "x": 1210.540427, - "y": -2642.295339 - } - } - }, - { - "id": "19da1094-32f9-5ceb-bb0f-fab3fad00fa6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.540427, - "y": -2642.295339 - }, - "endPoint": { - "x": 1210.321583, - "y": -2642.011044 - } - } - }, - { - "id": "20ed90ec-a46b-5be1-97b2-ef045a2ab152", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.321583, - "y": -2642.011044 - }, - "endPoint": { - "x": 1210.225242, - "y": -2641.840434 - } - } - }, - { - "id": "4b137f5e-b53b-5443-ba4a-f6b7177cb552", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.225242, - "y": -2641.840434 - }, - "endPoint": { - "x": 1209.984442, - "y": -2641.818578 - } - } - }, - { - "id": "1443b64e-2496-5395-a019-d9a57e053743", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.984442, - "y": -2641.818578 - }, - "endPoint": { - "x": 1209.86635, - "y": -2641.787969 - } - } - }, - { - "id": "9705555c-984d-5eb8-9223-6b8c0704b259", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.86635, - "y": -2641.787969 - }, - "endPoint": { - "x": 1209.800687, - "y": -2641.726694 - } - } - }, - { - "id": "c7ccd707-90d5-5d67-adaf-1d47e132d1d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.800687, - "y": -2641.726694 - }, - "endPoint": { - "x": 1209.503047, - "y": -2641.726694 - } - } - }, - { - "id": "a1e899ec-15f2-5776-9c8b-162ed0d81d0b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.503047, - "y": -2641.726694 - }, - "endPoint": { - "x": 1209.476781, - "y": -2641.805476 - } - } - }, - { - "id": "8bfece81-2b7d-5377-9100-047982180d8b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.476781, - "y": -2641.805476 - }, - "endPoint": { - "x": 1209.17473, - "y": -2641.822927 - } - } - }, - { - "id": "1994d2c6-9f22-59e6-a152-cea7f69dab6d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.17473, - "y": -2641.822927 - }, - "endPoint": { - "x": 1208.351782, - "y": -2641.840434 - } - } - }, - { - "id": "cd88a27c-513b-5018-8a77-e29c2ce089b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.351782, - "y": -2641.840434 - }, - "endPoint": { - "x": 1207.984067, - "y": -2641.814174 - } - } - }, - { - "id": "b1c3664a-3ff9-5206-882f-799ceeb6933c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.984067, - "y": -2641.814174 - }, - "endPoint": { - "x": 1207.900961, - "y": -2641.735448 - } - } - }, - { - "id": "57172908-73c9-5a6a-a914-debadd8fff4f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.900961, - "y": -2641.735448 - }, - "endPoint": { - "x": 1207.769634, - "y": -2641.626112 - } - } - }, - { - "id": "907c2745-7c3a-56b8-9c13-17e1348fea85", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.769634, - "y": -2641.626112 - }, - "endPoint": { - "x": 1207.667343, - "y": -2641.541385 - } - } - }, - { - "id": "491b873b-3525-58f3-9ee4-4ac7bce35ea8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.667343, - "y": -2641.541385 - }, - "endPoint": { - "x": 1207.632357, - "y": -2641.458255 - } - } - }, - { - "id": "46d4da7b-345a-5027-96c9-74d5c3ae060b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.632357, - "y": -2641.458255 - }, - "endPoint": { - "x": 1207.575414, - "y": -2641.217728 - } - } - }, - { - "id": "e3be0648-abd1-532d-ba24-425fb87cb13f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.575414, - "y": -2641.217728 - }, - "endPoint": { - "x": 1207.557972, - "y": -2641.016508 - } - } - }, - { - "id": "dc48e96a-c87a-5bf9-9c71-6b26951824b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.557972, - "y": -2641.016508 - }, - "endPoint": { - "x": 1207.627945, - "y": -2640.535398 - } - } - }, - { - "id": "5f6cb968-c2a6-5c87-9b1f-e3de37030ab4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.627945, - "y": -2640.535398 - }, - "endPoint": { - "x": 1207.820318, - "y": -2640.252755 - } - } - }, - { - "id": "e3b88daf-88b2-5a54-a551-9907ea30d850", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.820318, - "y": -2640.252755 - }, - "endPoint": { - "x": 1208.1354, - "y": -2640.099707 - } - } - }, - { - "id": "c067b158-f63b-5222-91be-fc516a22e292", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.1354, - "y": -2640.099707 - }, - "endPoint": { - "x": 1208.481262, - "y": -2640.095303 - } - } - }, - { - "id": "2fbc49ee-2c7b-54f4-9e7e-521f0bf8712f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.481262, - "y": -2640.095303 - }, - "endPoint": { - "x": 1208.50527, - "y": -2640.043278 - } - } - }, - { - "id": "0e53121d-e5e9-5e45-9aeb-dbff4c45858b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.50527, - "y": -2640.043278 - }, - "endPoint": { - "x": 1208.459101, - "y": -2639.989436 - } - } - }, - { - "id": "8df48f64-1aa7-5956-9b7e-3874fc44630f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.459101, - "y": -2639.989436 - }, - "endPoint": { - "x": 1208.174388, - "y": -2639.877953 - } - } - }, - { - "id": "1f05cfe0-094c-51b7-8398-279f66fc4c76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.174388, - "y": -2639.877953 - }, - "endPoint": { - "x": 1207.912658, - "y": -2639.697214 - } - } - }, - { - "id": "a0637e25-9228-5004-9c0b-f8a0abbed246", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.912658, - "y": -2639.697214 - }, - "endPoint": { - "x": 1207.808827, - "y": -2639.501114 - } - } - }, - { - "id": "4a385c1e-50ca-5e54-b03b-bb9d416a1a36", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.808827, - "y": -2639.501114 - }, - "endPoint": { - "x": 1207.777535, - "y": -2638.895144 - } - } - }, - { - "id": "8955a3a5-de52-5c34-9379-373ed3d5c7df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.777535, - "y": -2638.895144 - }, - "endPoint": { - "x": 1207.862281, - "y": -2638.422182 - } - } - }, - { - "id": "a4f6d0f6-7ae3-59f9-97a0-447ca02f3b06", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.862281, - "y": -2638.422182 - }, - "endPoint": { - "x": 1207.958417, - "y": -2637.995409 - } - } - }, - { - "id": "0b04f72d-b825-5e0a-bace-3735857bed26", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.958417, - "y": -2637.995409 - }, - "endPoint": { - "x": 1208.30551, - "y": -2637.612514 - } - } - }, - { - "id": "312e89ad-9ec0-5abb-965c-addd85d94bbe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.30551, - "y": -2637.612514 - }, - "endPoint": { - "x": 1208.632596, - "y": -2637.389494 - } - } - }, - { - "id": "29ebad0b-289b-53b0-8a78-2b2eefdd90d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.632596, - "y": -2637.389494 - }, - "endPoint": { - "x": 1208.794189, - "y": -2637.254944 - } - } - }, - { - "id": "06a48bfb-886b-5f95-ab47-21324ca39412", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.794189, - "y": -2637.254944 - }, - "endPoint": { - "x": 1209.102089, - "y": -2637.239529 - } - } - }, - { - "id": "1a53dd20-ef49-59e5-9c4b-99731937f207", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.102089, - "y": -2637.239529 - }, - "endPoint": { - "x": 1209.198225, - "y": -2637.158821 - } - } - }, - { - "id": "5f0f55aa-4c28-5c70-87c1-e42f3b43a537", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.198225, - "y": -2637.158821 - }, - "endPoint": { - "x": 1209.613854, - "y": -2637.135754 - } - } - }, - { - "id": "f70218c3-aeef-5f57-b953-fad4568f374d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.613854, - "y": -2637.135754 - }, - "endPoint": { - "x": 1210.025584, - "y": -2637.139552 - } - } - }, - { - "id": "47b46bcf-ca43-5205-8959-dde5e1c44a7a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.025584, - "y": -2637.139552 - }, - "endPoint": { - "x": 1210.115974, - "y": -2637.139277 - } - } - } - ] - }, - { - "id": "d5511c1e-0be1-5267-9e05-6ab560d2d689", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "cc6642f8-3a93-5fb3-8a6e-c32e243484d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.33304, - "y": -2639.870741 - }, - "endPoint": { - "x": 1209.582048, - "y": -2639.594925 - } - } - }, - { - "id": "df190b0b-f787-5162-a647-a19043a9dcc6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.582048, - "y": -2639.594925 - }, - "endPoint": { - "x": 1209.701063, - "y": -2639.329954 - } - } - }, - { - "id": "6b38aa05-3872-5617-a4dd-d3865be3f88c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.701063, - "y": -2639.329954 - }, - "endPoint": { - "x": 1209.711939, - "y": -2638.956803 - } - } - }, - { - "id": "fc9dbb06-4586-5eaa-b73d-0083e06d16fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.711939, - "y": -2638.956803 - }, - "endPoint": { - "x": 1209.739025, - "y": -2638.805407 - } - } - }, - { - "id": "bc2eb881-4085-53a2-b6db-8bcdad1b5e94", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.739025, - "y": -2638.805407 - }, - "endPoint": { - "x": 1209.841829, - "y": -2638.751345 - } - } - }, - { - "id": "2c8a2998-12b8-52bf-8f01-4de1792dae39", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.841829, - "y": -2638.751345 - }, - "endPoint": { - "x": 1210.004141, - "y": -2638.832438 - } - } - }, - { - "id": "61f90b6d-931d-5339-95c1-685dcac54bff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.004141, - "y": -2638.832438 - }, - "endPoint": { - "x": 1210.074524, - "y": -2638.99468 - } - } - }, - { - "id": "d9710154-07c4-525c-8487-2bfe6f64b080", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.074524, - "y": -2638.99468 - }, - "endPoint": { - "x": 1210.15568, - "y": -2639.108254 - } - } - }, - { - "id": "48bafcb5-ae60-58c5-8e4f-c976e97f35df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.15568, - "y": -2639.108254 - }, - "endPoint": { - "x": 1210.177328, - "y": -2639.254256 - } - } - }, - { - "id": "612f6fa6-100e-5cd4-abe9-09a47a9e8561", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.177328, - "y": -2639.254256 - }, - "endPoint": { - "x": 1210.193642, - "y": -2639.4868 - } - } - }, - { - "id": "a14caecd-6e3c-5c25-aa6e-d552e7599b9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.193642, - "y": -2639.4868 - }, - "endPoint": { - "x": 1210.144907, - "y": -2639.622011 - } - } - }, - { - "id": "8eccf4a7-a954-57f5-911a-00c0197dc68e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.144907, - "y": -2639.622011 - }, - "endPoint": { - "x": 1210.025789, - "y": -2639.740981 - } - } - }, - { - "id": "d1549a05-4993-541e-a4e8-ecfa7d0c01db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.025789, - "y": -2639.740981 - }, - "endPoint": { - "x": 1209.912212, - "y": -2639.865346 - } - } - }, - { - "id": "d934972c-7b43-5945-8977-48bfa9eb85bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.912212, - "y": -2639.865346 - }, - "endPoint": { - "x": 1209.820181, - "y": -2639.957285 - } - } - }, - { - "id": "ab43c0e9-5060-54d6-94df-ab61d7feed72", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.820181, - "y": -2639.957285 - }, - "endPoint": { - "x": 1209.544189, - "y": -2640.000557 - } - } - }, - { - "id": "c04791c7-f86b-5876-a3e2-3fab222383bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.544189, - "y": -2640.000557 - }, - "endPoint": { - "x": 1209.338478, - "y": -2640.016742 - } - } - }, - { - "id": "9619baba-a321-5bf7-bea2-06908360c189", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.338478, - "y": -2640.016742 - }, - "endPoint": { - "x": 1209.290461, - "y": -2639.985637 - } - } - }, - { - "id": "e248e5c8-b0e8-51fc-8884-6ec9b9ac0581", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.290461, - "y": -2639.985637 - }, - "endPoint": { - "x": 1209.286768, - "y": -2639.935484 - } - } - }, - { - "id": "a21e6e6f-4286-532c-b581-f9e29a099375", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.286768, - "y": -2639.935484 - }, - "endPoint": { - "x": 1209.296002, - "y": -2639.889019 - } - } - }, - { - "id": "b7280cad-9fb0-5182-ba4a-74fae2f0b8de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.296002, - "y": -2639.889019 - }, - "endPoint": { - "x": 1209.33304, - "y": -2639.870741 - } - } - } - ] - }, - { - "id": "c3170ebe-547b-5293-a87b-f17602165d52", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "b10656ed-acac-572e-a649-0305f79fa5a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.963887, - "y": -2639.953872 - }, - "endPoint": { - "x": 1212.129174, - "y": -2639.863309 - } - } - }, - { - "id": "6072aaed-2844-5e16-86f9-9ace8f22d4d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.129174, - "y": -2639.863309 - }, - "endPoint": { - "x": 1212.257115, - "y": -2639.671559 - } - } - }, - { - "id": "65e2c4ca-b140-572e-88b2-06727ea9d4c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.257115, - "y": -2639.671559 - }, - "endPoint": { - "x": 1212.272505, - "y": -2639.350268 - } - } - }, - { - "id": "7dffd2de-8057-54d6-bc40-081c0df85719", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.272505, - "y": -2639.350268 - }, - "endPoint": { - "x": 1212.259475, - "y": -2639.073351 - } - } - }, - { - "id": "c6b208f6-80d3-5664-be43-874c391e4a1a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.259475, - "y": -2639.073351 - }, - "endPoint": { - "x": 1212.131329, - "y": -2638.890464 - } - } - }, - { - "id": "0353e5ab-0f4b-5837-af76-ce7840661fcf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.131329, - "y": -2638.890464 - }, - "endPoint": { - "x": 1211.943059, - "y": -2638.741545 - } - } - }, - { - "id": "45582374-ac7c-5456-ba35-f9516f6008f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.943059, - "y": -2638.741545 - }, - "endPoint": { - "x": 1211.739092, - "y": -2638.710165 - } - } - }, - { - "id": "775388ac-8fa3-583b-921f-35da3bdf234b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.739092, - "y": -2638.710165 - }, - "endPoint": { - "x": 1211.576986, - "y": -2638.817298 - } - } - }, - { - "id": "565e2aa9-fb22-558e-a2d5-d55c4a087ec9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.576986, - "y": -2638.817298 - }, - "endPoint": { - "x": 1211.472437, - "y": -2638.960987 - } - } - }, - { - "id": "0d6507e3-be44-5ea5-893a-db7e12341619", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.472437, - "y": -2638.960987 - }, - "endPoint": { - "x": 1211.359989, - "y": -2639.151691 - } - } - }, - { - "id": "30557fd7-ebef-5458-9b4c-040db13bdddd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.359989, - "y": -2639.151691 - }, - "endPoint": { - "x": 1211.323361, - "y": -2639.318943 - } - } - }, - { - "id": "b1cddeba-0be8-50da-9bdd-9b71ccb6b445", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.323361, - "y": -2639.318943 - }, - "endPoint": { - "x": 1211.341726, - "y": -2639.475679 - } - } - }, - { - "id": "ce33ccf6-5ae2-5132-af9c-9022232684ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.341726, - "y": -2639.475679 - }, - "endPoint": { - "x": 1211.446274, - "y": -2639.621956 - } - } - }, - { - "id": "27b36355-e336-5d45-b5b2-e3520e9e7e0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.446274, - "y": -2639.621956 - }, - "endPoint": { - "x": 1211.608381, - "y": -2639.82312 - } - } - }, - { - "id": "7b731ff4-d9c5-551c-b5f9-130af70e6199", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.608381, - "y": -2639.82312 - }, - "endPoint": { - "x": 1211.799318, - "y": -2639.930254 - } - } - }, - { - "id": "be4eb8b1-bf45-5d4d-876a-47d384b06fdc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.799318, - "y": -2639.930254 - }, - "endPoint": { - "x": 1211.963887, - "y": -2639.953872 - } - } - } - ] - }, - { - "id": "d2a004b6-e034-5143-b849-fc45169959c4", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "5df936e3-ffa8-5c04-8f69-8ca845632876", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.90243, - "y": -2641.785767 - }, - "endPoint": { - "x": 1211.795727, - "y": -2641.690635 - } - } - }, - { - "id": "a120357b-a52a-5090-b870-504eb1f7518d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.795727, - "y": -2641.690635 - }, - "endPoint": { - "x": 1211.691794, - "y": -2641.624296 - } - } - }, - { - "id": "8a990c71-89f6-5582-b9fd-dcf7d53c1dfe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.691794, - "y": -2641.624296 - }, - "endPoint": { - "x": 1211.631261, - "y": -2641.581079 - } - } - }, - { - "id": "0bb94f52-8db9-5132-a895-e12a06bfa29d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.631261, - "y": -2641.581079 - }, - "endPoint": { - "x": 1211.634133, - "y": -2641.459962 - } - } - }, - { - "id": "02e3691e-0d31-5e28-90ae-f64b267fb9d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.634133, - "y": -2641.459962 - }, - "endPoint": { - "x": 1211.732218, - "y": -2641.37061 - } - } - }, - { - "id": "be343eaa-3921-5f76-b8a4-1cfbea64d2ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.732218, - "y": -2641.37061 - }, - "endPoint": { - "x": 1211.916897, - "y": -2641.307189 - } - } - }, - { - "id": "056d976e-ea85-5693-8d4d-b14658c32d33", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.916897, - "y": -2641.307189 - }, - "endPoint": { - "x": 1212.084236, - "y": -2641.286985 - } - } - }, - { - "id": "ae902053-ffff-5e81-9c6d-bf724a2e58cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.084236, - "y": -2641.286985 - }, - "endPoint": { - "x": 1212.17083, - "y": -2641.321613 - } - } - }, - { - "id": "195c1499-3969-53ba-b970-96db765311fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.17083, - "y": -2641.321613 - }, - "endPoint": { - "x": 1212.27466, - "y": -2641.382117 - } - } - }, - { - "id": "4bde7df8-db2f-5f0b-a8f4-8554f2875704", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.27466, - "y": -2641.382117 - }, - "endPoint": { - "x": 1212.280405, - "y": -2641.526301 - } - } - }, - { - "id": "2f229d7c-fdec-5d97-8eb1-32cb5348907b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.280405, - "y": -2641.526301 - }, - "endPoint": { - "x": 1212.280405, - "y": -2641.696415 - } - } - }, - { - "id": "2528bd1c-36af-5fda-a299-d7a4ea145578", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.280405, - "y": -2641.696415 - }, - "endPoint": { - "x": 1212.179448, - "y": -2641.771343 - } - } - }, - { - "id": "a7001c76-2778-5bef-9320-bda84f24a489", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.179448, - "y": -2641.771343 - }, - "endPoint": { - "x": 1212.026473, - "y": -2641.791547 - } - } - }, - { - "id": "63ce2e8f-fc34-5cfc-b047-f3454cfc1291", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.026473, - "y": -2641.791547 - }, - "endPoint": { - "x": 1211.90243, - "y": -2641.785767 - } - } - } - ] - }, - { - "id": "006eb94d-80b5-5757-a4f0-42ee18cbfae9", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "8235be09-6061-53b3-bc6f-52e365e81156", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.402941, - "y": -2646.414474 - }, - "endPoint": { - "x": 1216.25961, - "y": -2646.217604 - } - } - }, - { - "id": "475e9345-6f5d-557c-9091-c37f9d3bf56f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.25961, - "y": -2646.217604 - }, - "endPoint": { - "x": 1216.098427, - "y": -2646.092303 - } - } - }, - { - "id": "b3448020-7a72-545e-8032-c7d1a6d670d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.098427, - "y": -2646.092303 - }, - "endPoint": { - "x": 1215.856601, - "y": -2645.980435 - } - } - }, - { - "id": "100e127b-7be6-5fd2-9a6f-3deebcafecb5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.856601, - "y": -2645.980435 - }, - "endPoint": { - "x": 1215.650582, - "y": -2645.890918 - } - } - }, - { - "id": "6faf176b-9b70-5dec-9ff9-0580365215cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.650582, - "y": -2645.890918 - }, - "endPoint": { - "x": 1215.220589, - "y": -2645.90881 - } - } - }, - { - "id": "b1d4d11d-223b-56a0-aaf7-f744f61b0112", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.220589, - "y": -2645.90881 - }, - "endPoint": { - "x": 1214.911663, - "y": -2645.949109 - } - } - }, - { - "id": "5d9be323-2d16-5c9e-b869-1b2cdef1c6f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.911663, - "y": -2645.949109 - }, - "endPoint": { - "x": 1214.778079, - "y": -2645.995739 - } - } - }, - { - "id": "294d4eaa-bd8c-5e89-8c54-dad1fdc02789", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.778079, - "y": -2645.995739 - }, - "endPoint": { - "x": 1214.619666, - "y": -2646.049526 - } - } - }, - { - "id": "4169a512-d2ca-5254-84a4-55000bf5d84f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.619666, - "y": -2646.049526 - }, - "endPoint": { - "x": 1214.459611, - "y": -2646.018807 - } - } - }, - { - "id": "c8aa380e-7d39-55a0-825c-a7765e74b93a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.459611, - "y": -2646.018807 - }, - "endPoint": { - "x": 1214.271649, - "y": -2645.656226 - } - } - }, - { - "id": "c9abd3ad-6d11-518a-844d-05283c1501aa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.271649, - "y": -2645.656226 - }, - "endPoint": { - "x": 1214.12996, - "y": -2645.400504 - } - } - }, - { - "id": "000d60d0-63b4-579c-8bf4-03e028d9eace", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.12996, - "y": -2645.400504 - }, - "endPoint": { - "x": 1213.901574, - "y": -2645.211672 - } - } - }, - { - "id": "144d7471-f268-5936-9396-3abf49c249cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.901574, - "y": -2645.211672 - }, - "endPoint": { - "x": 1213.708585, - "y": -2645.129092 - } - } - }, - { - "id": "b2194dcb-7d97-5ddf-b428-21586a28b237", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.708585, - "y": -2645.129092 - }, - "endPoint": { - "x": 1213.610193, - "y": -2645.113347 - } - } - }, - { - "id": "57df88da-bb55-53b5-865a-cf3c53982022", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.610193, - "y": -2645.113347 - }, - "endPoint": { - "x": 1213.515699, - "y": -2645.042493 - } - } - }, - { - "id": "a3fc8c45-ec14-51fe-ab09-2729f4617636", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.515699, - "y": -2645.042493 - }, - "endPoint": { - "x": 1213.090528, - "y": -2645.046457 - } - } - }, - { - "id": "39185e3c-471e-5e15-adea-d1ccd32f0e3e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.090528, - "y": -2645.046457 - }, - "endPoint": { - "x": 1212.834543, - "y": -2645.097602 - } - } - }, - { - "id": "a6c448a8-fed8-5526-ab91-28bb0f198e53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.834543, - "y": -2645.097602 - }, - "endPoint": { - "x": 1212.710706, - "y": -2645.224004 - } - } - }, - { - "id": "bb61f8a3-cb47-5838-83c0-acf0bae07593", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.710706, - "y": -2645.224004 - }, - "endPoint": { - "x": 1212.64771, - "y": -2645.389218 - } - } - }, - { - "id": "00a48372-16fd-541d-9d44-1cc9dba9b923", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.64771, - "y": -2645.389218 - }, - "endPoint": { - "x": 1212.376028, - "y": -2645.656722 - } - } - }, - { - "id": "b927266b-6211-51a9-a655-6f1e45698595", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.376028, - "y": -2645.656722 - }, - "endPoint": { - "x": 1212.309031, - "y": -2645.888881 - } - } - }, - { - "id": "5e31e15c-4095-5eac-83b9-adac6017a9f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.309031, - "y": -2645.888881 - }, - "endPoint": { - "x": 1212.076746, - "y": -2645.963588 - } - } - }, - { - "id": "2e044129-5201-52bd-9024-48c0d2719067", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.076746, - "y": -2645.963588 - }, - "endPoint": { - "x": 1211.722471, - "y": -2645.951807 - } - } - }, - { - "id": "ff3325e5-34c2-58e6-bf59-528f0712f172", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.722471, - "y": -2645.951807 - }, - "endPoint": { - "x": 1211.616179, - "y": -2645.904571 - } - } - }, - { - "id": "4eb4f0a7-acfe-531a-8c87-75ffc0643208", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.616179, - "y": -2645.904571 - }, - "endPoint": { - "x": 1211.470488, - "y": -2645.943934 - } - } - }, - { - "id": "d7f13fda-5b1c-5878-a1da-fbd974e8171e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.470488, - "y": -2645.943934 - }, - "endPoint": { - "x": 1211.246001, - "y": -2646.002951 - } - } - }, - { - "id": "7f8790ee-47f7-5884-8065-551e1aa39e0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.246001, - "y": -2646.002951 - }, - "endPoint": { - "x": 1210.935023, - "y": -2645.940026 - } - } - }, - { - "id": "cc14a893-4e98-57f8-b6e5-35574916a06b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.935023, - "y": -2645.940026 - }, - "endPoint": { - "x": 1210.802978, - "y": -2645.848582 - } - } - }, - { - "id": "ab0e219f-1b23-5ffa-b3ca-57f511ea1b5a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.802978, - "y": -2645.848582 - }, - "endPoint": { - "x": 1210.747882, - "y": -2645.636187 - } - } - }, - { - "id": "9009b426-41e2-5466-bf0c-e592da72d262", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.747882, - "y": -2645.636187 - }, - "endPoint": { - "x": 1210.610091, - "y": -2645.368628 - } - } - }, - { - "id": "a3e22ac0-243e-58ff-8b4d-a0704424ec0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.610091, - "y": -2645.368628 - }, - "endPoint": { - "x": 1210.499797, - "y": -2645.179796 - } - } - }, - { - "id": "40f0cc4c-633e-56b9-a848-6db060455f84", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.499797, - "y": -2645.179796 - }, - "endPoint": { - "x": 1210.358108, - "y": -2645.132615 - } - } - }, - { - "id": "7b026052-e606-5bfa-b0f2-6862f48cf48f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.358108, - "y": -2645.132615 - }, - "endPoint": { - "x": 1210.094326, - "y": -2645.108998 - } - } - }, - { - "id": "ff8f7996-464d-5b92-86d5-675c4fe2f290", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.094326, - "y": -2645.108998 - }, - "endPoint": { - "x": 1209.806843, - "y": -2645.179796 - } - } - }, - { - "id": "9e93a727-7e66-5a3d-a661-93a4b15a9f8d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.806843, - "y": -2645.179796 - }, - "endPoint": { - "x": 1209.586357, - "y": -2645.376501 - } - } - }, - { - "id": "d14955b3-e015-59e0-99e9-23e1dcda98c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.586357, - "y": -2645.376501 - }, - "endPoint": { - "x": 1209.381672, - "y": -2645.596824 - } - } - }, - { - "id": "2b5aa6d6-b759-55fe-9a5c-875421200588", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.381672, - "y": -2645.596824 - }, - "endPoint": { - "x": 1209.295078, - "y": -2645.703022 - } - } - }, - { - "id": "ddacf848-9752-58b3-a51e-eeaa65ad8220", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.295078, - "y": -2645.703022 - }, - "endPoint": { - "x": 1209.291077, - "y": -2645.813183 - } - } - }, - { - "id": "a10a678a-f822-5c2a-8c71-2f048777d20d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.291077, - "y": -2645.813183 - }, - "endPoint": { - "x": 1209.153286, - "y": -2645.942998 - } - } - }, - { - "id": "5a2dd376-6864-5436-bd31-34f65fcc9dda", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.153286, - "y": -2645.942998 - }, - "endPoint": { - "x": 1209.121788, - "y": -2646.143667 - } - } - }, - { - "id": "91891d51-974a-5b33-adfd-907ad194cdf1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.121788, - "y": -2646.143667 - }, - "endPoint": { - "x": 1208.991898, - "y": -2646.379735 - } - } - }, - { - "id": "2eb80398-7d10-5f75-af2a-9a55442d98ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.991898, - "y": -2646.379735 - }, - "endPoint": { - "x": 1208.569805, - "y": -2646.723763 - } - } - }, - { - "id": "2b3ab1cd-2833-5300-a3ab-7d6f564d0b6b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.569805, - "y": -2646.723763 - }, - "endPoint": { - "x": 1208.455612, - "y": -2646.877196 - } - } - }, - { - "id": "307cc131-5416-59e1-96b7-a2bb3286f6d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.455612, - "y": -2646.877196 - }, - "endPoint": { - "x": 1208.156433, - "y": -2646.955922 - } - } - }, - { - "id": "d10f58fa-182e-5b7e-85d0-ed46a637248e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.156433, - "y": -2646.955922 - }, - "endPoint": { - "x": 1208.061939, - "y": -2647.050338 - } - } - }, - { - "id": "41cea5b9-7a36-5ca1-bcbe-84f271bfd42d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.061939, - "y": -2647.050338 - }, - "endPoint": { - "x": 1207.994942, - "y": -2647.258825 - } - } - }, - { - "id": "1e232cef-7160-5216-95e8-760e160abe18", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.994942, - "y": -2647.258825 - }, - "endPoint": { - "x": 1207.908348, - "y": -2647.428003 - } - } - }, - { - "id": "a3f3d021-0f91-58fc-a0ac-1e6b1714fa2c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.908348, - "y": -2647.428003 - }, - "endPoint": { - "x": 1207.790257, - "y": -2647.510638 - } - } - }, - { - "id": "4d5d281d-04dd-523f-92f2-d126938b993a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.790257, - "y": -2647.510638 - }, - "endPoint": { - "x": 1207.764812, - "y": -2647.702058 - } - } - }, - { - "id": "f639d141-c350-5040-a5ea-025fdcf9abf5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.764812, - "y": -2647.702058 - }, - "endPoint": { - "x": 1207.715359, - "y": -2647.835397 - } - } - }, - { - "id": "8c4a9973-358f-5176-9356-93b25a5742ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.715359, - "y": -2647.835397 - }, - "endPoint": { - "x": 1207.646208, - "y": -2647.998354 - } - } - }, - { - "id": "dd3f4e03-7135-5014-bf7b-7b5701af75ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.646208, - "y": -2647.998354 - }, - "endPoint": { - "x": 1207.626406, - "y": -2648.111984 - } - } - }, - { - "id": "56a776c1-fe98-5239-92f3-b08e6acd424c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.626406, - "y": -2648.111984 - }, - "endPoint": { - "x": 1207.710435, - "y": -2648.20084 - } - } - }, - { - "id": "74cc52d0-80e0-56d7-95ae-7491d39fff54", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.710435, - "y": -2648.20084 - }, - "endPoint": { - "x": 1207.720284, - "y": -2648.368752 - } - } - }, - { - "id": "81ada4d7-d627-53a9-bac4-29a41baf5c1c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.720284, - "y": -2648.368752 - }, - "endPoint": { - "x": 1207.833964, - "y": -2648.541619 - } - } - }, - { - "id": "70ee76dd-e5b7-5376-a3d1-485892ae95c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.833964, - "y": -2648.541619 - }, - "endPoint": { - "x": 1208.076201, - "y": -2648.650239 - } - } - }, - { - "id": "2b8eb23d-c874-515c-94ed-e3c8efe55059", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.076201, - "y": -2648.650239 - }, - "endPoint": { - "x": 1208.402363, - "y": -2648.684813 - } - } - }, - { - "id": "bebf706f-842b-5d8a-8ceb-b9af78dee78e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.402363, - "y": -2648.684813 - }, - "endPoint": { - "x": 1208.575345, - "y": -2648.674958 - } - } - }, - { - "id": "151267e2-e56c-59aa-a577-e95ab905122b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.575345, - "y": -2648.674958 - }, - "endPoint": { - "x": 1208.743403, - "y": -2648.566283 - } - } - }, - { - "id": "d4f61e2f-bbc6-59f6-ac6e-15ccc0672cb9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.743403, - "y": -2648.566283 - }, - "endPoint": { - "x": 1208.916385, - "y": -2648.576193 - } - } - }, - { - "id": "d22570d9-f114-5bdc-b35a-ffe3568be36a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.916385, - "y": -2648.576193 - }, - "endPoint": { - "x": 1208.936187, - "y": -2648.650239 - } - } - }, - { - "id": "216b6c6a-3b6e-591c-b37a-e7bceb70b160", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.936187, - "y": -2648.650239 - }, - "endPoint": { - "x": 1208.871857, - "y": -2648.768769 - } - } - }, - { - "id": "2cec0ad2-646f-5eae-8d66-d7962d3a0a9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.871857, - "y": -2648.768769 - }, - "endPoint": { - "x": 1208.545694, - "y": -2648.852725 - } - } - }, - { - "id": "e92e656b-ea66-5920-a172-80f157a9de0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.545694, - "y": -2648.852725 - }, - "endPoint": { - "x": 1208.451816, - "y": -2649.020637 - } - } - }, - { - "id": "582bca30-e12b-5702-9583-e60ccb6be5a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.451816, - "y": -2649.020637 - }, - "endPoint": { - "x": 1208.229381, - "y": -2649.139167 - } - } - }, - { - "id": "926114eb-022c-5069-b87e-bab3882f4276", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.229381, - "y": -2649.139167 - }, - "endPoint": { - "x": 1208.090975, - "y": -2649.341652 - } - } - }, - { - "id": "685eed4a-44c6-554f-8456-6029c5885e60", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.090975, - "y": -2649.341652 - }, - "endPoint": { - "x": 1207.947644, - "y": -2649.598476 - } - } - }, - { - "id": "c8e8cac0-6459-5646-a410-d8447377caa2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.947644, - "y": -2649.598476 - }, - "endPoint": { - "x": 1207.878595, - "y": -2649.88277 - } - } - }, - { - "id": "78e30fbe-bd5e-5566-8157-929ddd852ea0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.878595, - "y": -2649.88277 - }, - "endPoint": { - "x": 1207.809443, - "y": -2650.134639 - } - } - }, - { - "id": "dc6cbdd0-6ab0-5676-aacf-d8335b51d0f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.809443, - "y": -2650.134639 - }, - "endPoint": { - "x": 1207.87367, - "y": -2650.445799 - } - } - }, - { - "id": "a5bd2a20-e589-55b2-8101-923682063251", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.87367, - "y": -2650.445799 - }, - "endPoint": { - "x": 1207.962623, - "y": -2650.712477 - } - } - }, - { - "id": "c83ed686-6454-5ed0-b427-908c8243a2c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.962623, - "y": -2650.712477 - }, - "endPoint": { - "x": 1208.209682, - "y": -2650.87048 - } - } - }, - { - "id": "8bc08746-ae42-5ac7-aae3-08a8e9a35ee8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.209682, - "y": -2650.87048 - }, - "endPoint": { - "x": 1208.47172, - "y": -2650.944581 - } - } - }, - { - "id": "690d0d14-dcbf-59f6-8d88-cc4314cb82ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.47172, - "y": -2650.944581 - }, - "endPoint": { - "x": 1208.679278, - "y": -2650.885289 - } - } - }, - { - "id": "61d498d7-de41-550f-b832-c6008e67ba71", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.679278, - "y": -2650.885289 - }, - "endPoint": { - "x": 1208.816453, - "y": -2650.821868 - } - } - }, - { - "id": "6fadcbe7-029b-56aa-881e-fe54e6bd7464", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.816453, - "y": -2650.821868 - }, - "endPoint": { - "x": 1208.986152, - "y": -2650.809756 - } - } - }, - { - "id": "1020e2aa-e4cb-56d3-b2dc-c2754b4fecff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.986152, - "y": -2650.809756 - }, - "endPoint": { - "x": 1209.124353, - "y": -2650.82429 - } - } - }, - { - "id": "68079187-0054-5707-ac94-3b623262fd74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.124353, - "y": -2650.82429 - }, - "endPoint": { - "x": 1209.180065, - "y": -2650.858203 - } - } - }, - { - "id": "e4373955-0c1f-51b3-ab15-e33ee59b1c46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.180065, - "y": -2650.858203 - }, - "endPoint": { - "x": 1209.180065, - "y": -2650.942985 - } - } - }, - { - "id": "cfca5dea-b9ad-56ea-9176-46096b6d26eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.180065, - "y": -2650.942985 - }, - "endPoint": { - "x": 1209.109682, - "y": -2651.146847 - } - } - }, - { - "id": "599a4d70-b30d-5a79-ad49-19f49e35b8ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.109682, - "y": -2651.146847 - }, - "endPoint": { - "x": 1209.074695, - "y": -2651.297968 - } - } - }, - { - "id": "91355bf6-0819-5b4e-8926-659e4144b4f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.074695, - "y": -2651.297968 - }, - "endPoint": { - "x": 1208.966146, - "y": -2651.390952 - } - } - }, - { - "id": "98add624-236b-5acf-8bc2-caa976f03f28", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.966146, - "y": -2651.390952 - }, - "endPoint": { - "x": 1208.927363, - "y": -2651.487846 - } - } - }, - { - "id": "cc79085c-c155-5a47-ad32-4c1d79b6058f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.927363, - "y": -2651.487846 - }, - "endPoint": { - "x": 1208.896378, - "y": -2651.728098 - } - } - }, - { - "id": "8806ee30-9a2a-5a81-b552-f8ccb7f414d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.896378, - "y": -2651.728098 - }, - "endPoint": { - "x": 1208.729552, - "y": -2651.828846 - } - } - }, - { - "id": "4e3993ba-f24a-5683-a8c7-67c61932ce4b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.729552, - "y": -2651.828846 - }, - "endPoint": { - "x": 1208.604894, - "y": -2652.056215 - } - } - }, - { - "id": "204d24f3-d721-5f45-9d75-cd634922e90e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.604894, - "y": -2652.056215 - }, - "endPoint": { - "x": 1208.531125, - "y": -2652.253801 - } - } - }, - { - "id": "db2e372a-6f51-5eca-a686-a87caa369dd8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.531125, - "y": -2652.253801 - }, - "endPoint": { - "x": 1208.310127, - "y": -2652.486346 - } - } - }, - { - "id": "3521f82f-ebce-51c0-b1ad-b0c44553bdaa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.310127, - "y": -2652.486346 - }, - "endPoint": { - "x": 1208.201577, - "y": -2652.703311 - } - } - }, - { - "id": "dbd220d2-25ac-5d00-bd1e-700aa78df47f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.201577, - "y": -2652.703311 - }, - "endPoint": { - "x": 1208.193779, - "y": -2653.114117 - } - } - }, - { - "id": "9e089b4a-f139-5429-a903-a90294ddd1e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.193779, - "y": -2653.114117 - }, - "endPoint": { - "x": 1208.275243, - "y": -2653.214865 - } - } - }, - { - "id": "7738b76e-fe83-50b7-a3b0-fb4a1f32e902", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.275243, - "y": -2653.214865 - }, - "endPoint": { - "x": 1208.395387, - "y": -2653.404743 - } - } - }, - { - "id": "45c7b38d-75a4-5581-9d11-2e235a2e1d79", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.395387, - "y": -2653.404743 - }, - "endPoint": { - "x": 1208.539641, - "y": -2653.662117 - } - } - }, - { - "id": "2685a0b9-d915-5cdc-a750-254a2817043a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.539641, - "y": -2653.662117 - }, - "endPoint": { - "x": 1208.869292, - "y": -2653.666026 - } - } - }, - { - "id": "f2392194-80b8-53c3-9952-7d010d8c5279", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.869292, - "y": -2653.666026 - }, - "endPoint": { - "x": 1209.179552, - "y": -2653.681496 - } - } - }, - { - "id": "9fa41fea-5c59-5570-afbc-29cdfbbbd11b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.179552, - "y": -2653.681496 - }, - "endPoint": { - "x": 1209.334682, - "y": -2653.658263 - } - } - }, - { - "id": "adf1a1c6-3a6c-546e-9999-8259294fec28", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.334682, - "y": -2653.658263 - }, - "endPoint": { - "x": 1209.381159, - "y": -2653.565223 - } - } - }, - { - "id": "f833c7f3-9dff-58a9-be00-24dc03293752", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.381159, - "y": -2653.565223 - }, - "endPoint": { - "x": 1209.485913, - "y": -2653.510996 - } - } - }, - { - "id": "88539030-bf0e-574f-a8d6-6780c85ee275", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.485913, - "y": -2653.510996 - }, - "endPoint": { - "x": 1209.606159, - "y": -2653.495471 - } - } - }, - { - "id": "7e65d758-22f5-5e7e-875a-e7f9863f0ff9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.606159, - "y": -2653.495471 - }, - "endPoint": { - "x": 1209.726303, - "y": -2653.371491 - } - } - }, - { - "id": "aa5c347b-6c7b-5edf-ab01-aea9d93376c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.726303, - "y": -2653.371491 - }, - "endPoint": { - "x": 1209.86594, - "y": -2653.193229 - } - } - }, - { - "id": "be6c3e48-f8ca-590e-90b0-8e792d142238", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.86594, - "y": -2653.193229 - }, - "endPoint": { - "x": 1209.958997, - "y": -2653.108007 - } - } - }, - { - "id": "b296e180-5646-5403-82ab-c54d7539830b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.958997, - "y": -2653.108007 - }, - "endPoint": { - "x": 1210.133519, - "y": -2653.061487 - } - } - }, - { - "id": "68af6621-ba60-5310-b315-dceabb4243f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.133519, - "y": -2653.061487 - }, - "endPoint": { - "x": 1210.245967, - "y": -2653.088628 - } - } - }, - { - "id": "f4aa039d-0600-599e-a447-4eb8ed2e7b0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.245967, - "y": -2653.088628 - }, - "endPoint": { - "x": 1210.33133, - "y": -2653.166088 - } - } - }, - { - "id": "3da59f41-6d77-5678-872e-68b0234d4560", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.33133, - "y": -2653.166088 - }, - "endPoint": { - "x": 1210.424387, - "y": -2653.34435 - } - } - }, - { - "id": "09eccf17-3a36-57ed-99e6-7ff4a4e5c7bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.424387, - "y": -2653.34435 - }, - "endPoint": { - "x": 1210.592342, - "y": -2653.41724 - } - } - }, - { - "id": "e8c27135-2614-5115-91a6-1720b3b0c43d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.592342, - "y": -2653.41724 - }, - "endPoint": { - "x": 1210.867718, - "y": -2653.483084 - } - } - }, - { - "id": "4eaa8750-3986-5daf-9b6e-d8d50195878b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.867718, - "y": -2653.483084 - }, - "endPoint": { - "x": 1211.042239, - "y": -2653.506371 - } - } - }, - { - "id": "6e38b309-c9ab-5c7d-9f6d-d3cf95229006", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.042239, - "y": -2653.506371 - }, - "endPoint": { - "x": 1211.197369, - "y": -2653.378483 - } - } - }, - { - "id": "e742239b-0c52-553a-8708-a2d2ee96566a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.197369, - "y": -2653.378483 - }, - "endPoint": { - "x": 1211.426165, - "y": -2653.235124 - } - } - }, - { - "id": "22665ded-41a3-5b19-8d35-52b9dd1edfaa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.426165, - "y": -2653.235124 - }, - "endPoint": { - "x": 1211.530816, - "y": -2653.072332 - } - } - }, - { - "id": "eda9eb27-5318-5e1c-bdab-133dc8c95b4e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.530816, - "y": -2653.072332 - }, - "endPoint": { - "x": 1211.569599, - "y": -2652.932827 - } - } - }, - { - "id": "e7978489-3706-5ddc-835d-3fac97d95977", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.569599, - "y": -2652.932827 - }, - "endPoint": { - "x": 1211.639469, - "y": -2652.746858 - } - } - }, - { - "id": "6ed045c0-98f7-527a-b05a-ec9325469df1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.639469, - "y": -2652.746858 - }, - "endPoint": { - "x": 1211.769975, - "y": -2652.270317 - } - } - }, - { - "id": "2fad09f8-1b63-5403-a03b-7f6c302f3e1b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.769975, - "y": -2652.270317 - }, - "endPoint": { - "x": 1211.857287, - "y": -2651.905149 - } - } - }, - { - "id": "845b6dd7-b0dd-5251-962d-b713a980866d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.857287, - "y": -2651.905149 - }, - "endPoint": { - "x": 1211.846411, - "y": -2651.545487 - } - } - }, - { - "id": "e8ca77ef-9783-525e-98e1-fc9e2d8b4a4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.846411, - "y": -2651.545487 - }, - "endPoint": { - "x": 1211.808244, - "y": -2651.114916 - } - } - }, - { - "id": "27409d86-c8cd-5282-a434-d537acdb519b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.808244, - "y": -2651.114916 - }, - "endPoint": { - "x": 1211.72637, - "y": -2650.940507 - } - } - }, - { - "id": "e29bc30c-4581-54f4-95fb-80199805c40f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.72637, - "y": -2650.940507 - }, - "endPoint": { - "x": 1211.562724, - "y": -2650.875104 - } - } - }, - { - "id": "9a575f9b-6d9f-582b-9dd5-c98e937caeb1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.562724, - "y": -2650.875104 - }, - "endPoint": { - "x": 1211.31187, - "y": -2650.880554 - } - } - }, - { - "id": "3ad57ae7-3c24-5655-9949-ac0c3b5732f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.31187, - "y": -2650.880554 - }, - "endPoint": { - "x": 1211.07189, - "y": -2651.038612 - } - } - }, - { - "id": "63cca261-5a84-553a-8fef-b52367f702f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.07189, - "y": -2651.038612 - }, - "endPoint": { - "x": 1210.86464, - "y": -2651.305675 - } - } - }, - { - "id": "f26c4e49-e097-569f-aed7-d1ddea410dec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.86464, - "y": -2651.305675 - }, - "endPoint": { - "x": 1210.71187, - "y": -2651.670788 - } - } - }, - { - "id": "799510fa-3d9b-5de6-9fe7-f6b27ade96f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.71187, - "y": -2651.670788 - }, - "endPoint": { - "x": 1210.602807, - "y": -2651.807044 - } - } - }, - { - "id": "447344d6-42ef-5c84-abcf-525230cd515b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.602807, - "y": -2651.807044 - }, - "endPoint": { - "x": 1210.455577, - "y": -2652.014155 - } - } - }, - { - "id": "c93a2f90-acf5-54d5-a4d9-eb02f5c6b277", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.455577, - "y": -2652.014155 - }, - "endPoint": { - "x": 1210.330098, - "y": -2652.074108 - } - } - }, - { - "id": "b4df4a3c-b158-5a26-a219-26faa8d64e7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.330098, - "y": -2652.074108 - }, - "endPoint": { - "x": 1210.174353, - "y": -2652.074328 - } - } - }, - { - "id": "4d3d461a-b125-51c5-97ef-c42717528dce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.174353, - "y": -2652.074328 - }, - "endPoint": { - "x": 1210.110126, - "y": -2652.015531 - } - } - }, - { - "id": "15e56532-b33c-5e8b-8837-94f1d8122d84", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.110126, - "y": -2652.015531 - }, - "endPoint": { - "x": 1210.128799, - "y": -2651.724189 - } - } - }, - { - "id": "2127fb61-4b02-527d-8823-b286e4a5ef7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.128799, - "y": -2651.724189 - }, - "endPoint": { - "x": 1210.139982, - "y": -2651.51284 - } - } - }, - { - "id": "31a72359-643f-5a62-b6d2-69239cc41043", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.139982, - "y": -2651.51284 - }, - "endPoint": { - "x": 1210.190358, - "y": -2651.355168 - } - } - }, - { - "id": "f1b2aee8-feb5-5858-8574-c30555a31ccd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.190358, - "y": -2651.355168 - }, - "endPoint": { - "x": 1210.170146, - "y": -2651.157197 - } - } - }, - { - "id": "7bf1f6b8-faac-5a2d-83ef-10a74dcf2b1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.170146, - "y": -2651.157197 - }, - "endPoint": { - "x": 1210.109716, - "y": -2651.059863 - } - } - }, - { - "id": "ac472957-7864-54a2-9d30-0d70dce739b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.109716, - "y": -2651.059863 - }, - "endPoint": { - "x": 1210.139982, - "y": -2650.791423 - } - } - }, - { - "id": "ca44e9de-ce93-5efc-8765-ff9d43c4526b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.139982, - "y": -2650.791423 - }, - "endPoint": { - "x": 1210.270899, - "y": -2650.630338 - } - } - }, - { - "id": "69bdb265-ce33-5b4a-82bf-25b24ccf766c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.270899, - "y": -2650.630338 - }, - "endPoint": { - "x": 1210.408587, - "y": -2650.59681 - } - } - }, - { - "id": "b6162cff-ce55-5dfb-aedb-96d680e05f98", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.408587, - "y": -2650.59681 - }, - "endPoint": { - "x": 1210.549661, - "y": -2650.657203 - } - } - }, - { - "id": "4cd57ffa-fd82-56fb-8bd2-d77a4add3ed4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.549661, - "y": -2650.657203 - }, - "endPoint": { - "x": 1210.892137, - "y": -2650.687428 - } - } - }, - { - "id": "8be1c0ad-9357-57bd-90a6-5595921a254c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.892137, - "y": -2650.687428 - }, - "endPoint": { - "x": 1210.932766, - "y": -2650.602481 - } - } - }, - { - "id": "834072e6-de58-54a4-b9e4-5d8d35be8353", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.932766, - "y": -2650.602481 - }, - "endPoint": { - "x": 1210.966316, - "y": -2650.51858 - } - } - }, - { - "id": "3715b62d-70d2-5712-9d72-b3de72df3ba2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.966316, - "y": -2650.51858 - }, - "endPoint": { - "x": 1211.214811, - "y": -2650.471619 - } - } - }, - { - "id": "10490d33-ca21-5c6f-93fe-9ee4db844d40", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.214811, - "y": -2650.471619 - }, - "endPoint": { - "x": 1211.470077, - "y": -2650.448111 - } - } - }, - { - "id": "386590c2-628e-581d-8ba1-1fb850f37de2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.470077, - "y": -2650.448111 - }, - "endPoint": { - "x": 1211.647984, - "y": -2650.448111 - } - } - }, - { - "id": "b5c00164-3e4a-5c74-87b3-d825ab170e0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.647984, - "y": -2650.448111 - }, - "endPoint": { - "x": 1211.785672, - "y": -2650.51858 - } - } - }, - { - "id": "5395d201-bc1b-5b56-90d4-ba89c6c5d082", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.785672, - "y": -2650.51858 - }, - "endPoint": { - "x": 1211.940187, - "y": -2650.582331 - } - } - }, - { - "id": "323ee83e-9c0d-5095-921e-b49d9583a88e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.940187, - "y": -2650.582331 - }, - "endPoint": { - "x": 1212.087929, - "y": -2650.729984 - } - } - }, - { - "id": "6c9bab2f-b571-5a9d-95b5-ff1855f825d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.087929, - "y": -2650.729984 - }, - "endPoint": { - "x": 1212.202122, - "y": -2650.971557 - } - } - }, - { - "id": "17752a6c-99ef-5c5a-9ea1-4a5d63a1bf2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.202122, - "y": -2650.971557 - }, - "endPoint": { - "x": 1212.218846, - "y": -2651.246713 - } - } - }, - { - "id": "fb62c036-ec35-57d2-862f-73e88acbc4d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.218846, - "y": -2651.246713 - }, - "endPoint": { - "x": 1212.212177, - "y": -2651.427948 - } - } - }, - { - "id": "0b214e30-5cf9-5256-b110-03e199d04bae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.212177, - "y": -2651.427948 - }, - "endPoint": { - "x": 1212.22295, - "y": -2651.551488 - } - } - }, - { - "id": "4d4aa251-1f3f-5e1c-9dd0-242b9bcc86cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.22295, - "y": -2651.551488 - }, - "endPoint": { - "x": 1212.23557, - "y": -2651.808421 - } - } - }, - { - "id": "01ecbaeb-a8c0-543e-ac75-e037d513a337", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.23557, - "y": -2651.808421 - }, - "endPoint": { - "x": 1212.307286, - "y": -2651.960092 - } - } - }, - { - "id": "7ef7d1be-9ea5-5100-a9c4-8cb401ab6ca1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.307286, - "y": -2651.960092 - }, - "endPoint": { - "x": 1212.400036, - "y": -2652.010631 - } - } - }, - { - "id": "3575edc9-b5f3-57cb-b6cf-d25f59b27267", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.400036, - "y": -2652.010631 - }, - "endPoint": { - "x": 1212.416862, - "y": -2652.393912 - } - } - }, - { - "id": "ea199a26-8830-5fce-a0bf-029cf3289785", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.416862, - "y": -2652.393912 - }, - "endPoint": { - "x": 1212.429482, - "y": -2652.655084 - } - } - }, - { - "id": "3981e753-0065-59fd-86ca-c9e61ca5c670", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.429482, - "y": -2652.655084 - }, - "endPoint": { - "x": 1212.539263, - "y": -2652.87838 - } - } - }, - { - "id": "607c7fe8-ea22-5ed4-97e0-3e493a40da7d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.539263, - "y": -2652.87838 - }, - "endPoint": { - "x": 1212.855474, - "y": -2653.084774 - } - } - }, - { - "id": "9b168ad7-ef71-54ac-8c83-ab89fb6481fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.855474, - "y": -2653.084774 - }, - "endPoint": { - "x": 1213.053592, - "y": -2653.240685 - } - } - }, - { - "id": "d6098c3a-f91d-5b8b-b2dd-68e95e98acfc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.053592, - "y": -2653.240685 - }, - "endPoint": { - "x": 1213.237758, - "y": -2653.359545 - } - } - }, - { - "id": "7f64d4bf-53f6-5f1a-a02d-ea84bed4caab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.237758, - "y": -2653.359545 - }, - "endPoint": { - "x": 1213.600343, - "y": -2653.397421 - } - } - }, - { - "id": "e3b9919e-6d94-5edd-a683-90fe6e898f71", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.600343, - "y": -2653.397421 - }, - "endPoint": { - "x": 1213.654105, - "y": -2653.45264 - } - } - }, - { - "id": "5329388a-c338-55b2-91e6-740808d17741", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.654105, - "y": -2653.45264 - }, - "endPoint": { - "x": 1213.683756, - "y": -2653.713316 - } - } - }, - { - "id": "377cd20f-a1d0-5579-819e-f348f5c271d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.683756, - "y": -2653.713316 - }, - "endPoint": { - "x": 1213.778661, - "y": -2653.796282 - } - } - }, - { - "id": "b352a998-9809-5480-a414-8064ab14fd15", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.778661, - "y": -2653.796282 - }, - "endPoint": { - "x": 1214.543537, - "y": -2653.292655 - } - } - }, - { - "id": "ea48fb72-edbf-5434-8b92-ccdad96a1e67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.543537, - "y": -2653.292655 - }, - "endPoint": { - "x": 1215.563475, - "y": -2652.463168 - } - } - }, - { - "id": "3ba999fd-ca57-5cb4-8466-3d0e021348ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.563475, - "y": -2652.463168 - }, - "endPoint": { - "x": 1216.126744, - "y": -2651.870686 - } - } - }, - { - "id": "ed269d11-3bf7-5f3c-b645-c5e5840722d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.126744, - "y": -2651.870686 - }, - "endPoint": { - "x": 1216.483276, - "y": -2651.293949 - } - } - }, - { - "id": "b19308ac-b7bf-5af8-be6d-8ce717f24c42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.483276, - "y": -2651.293949 - }, - "endPoint": { - "x": 1216.667134, - "y": -2650.908852 - } - } - }, - { - "id": "2bb97d0a-2e57-572a-9183-e155cc7278bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.667134, - "y": -2650.908852 - }, - "endPoint": { - "x": 1216.453625, - "y": -2651.009544 - } - } - }, - { - "id": "0b156f76-d1a6-5a06-b24b-58e061b9027d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.453625, - "y": -2651.009544 - }, - "endPoint": { - "x": 1216.340971, - "y": -2651.133964 - } - } - }, - { - "id": "d56faa6a-1d5a-5658-9b69-1c38e7882471", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.340971, - "y": -2651.133964 - }, - "endPoint": { - "x": 1216.151266, - "y": -2651.175474 - } - } - }, - { - "id": "ad533bcb-234d-54c3-804c-0386494d764f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.151266, - "y": -2651.175474 - }, - "endPoint": { - "x": 1216.02671, - "y": -2651.086563 - } - } - }, - { - "id": "c1dd6ecd-b052-5e31-b01e-7effbbe91e4a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.02671, - "y": -2651.086563 - }, - "endPoint": { - "x": 1215.943708, - "y": -2650.902906 - } - } - }, - { - "id": "4a03bf03-aa00-514b-a4c5-faaec3107c6a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.943708, - "y": -2650.902906 - }, - "endPoint": { - "x": 1215.659098, - "y": -2650.760703 - } - } - }, - { - "id": "2cf5c6e5-b0a0-5bb9-a3ec-e54035ef64d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.659098, - "y": -2650.760703 - }, - "endPoint": { - "x": 1215.380438, - "y": -2650.754813 - } - } - }, - { - "id": "d27f20f2-5e9d-5124-800b-b6d628ee409c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.380438, - "y": -2650.754813 - }, - "endPoint": { - "x": 1215.303284, - "y": -2650.701466 - } - } - }, - { - "id": "7a4891bc-b999-5461-82e2-472aea605e7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.303284, - "y": -2650.701466 - }, - "endPoint": { - "x": 1215.17288, - "y": -2650.802159 - } - } - }, - { - "id": "cf3b517c-0f2d-52b7-b457-9bba9cea0ea2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.17288, - "y": -2650.802159 - }, - "endPoint": { - "x": 1215.036526, - "y": -2650.985871 - } - } - }, - { - "id": "124e581b-5ad3-5f39-ba1b-20447838eae3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.036526, - "y": -2650.985871 - }, - "endPoint": { - "x": 1215.006875, - "y": -2651.151746 - } - } - }, - { - "id": "a92b948d-fbd0-5a17-9ecf-53fa42b91fa3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.006875, - "y": -2651.151746 - }, - "endPoint": { - "x": 1215.036526, - "y": -2651.347295 - } - } - }, - { - "id": "0402d810-8c5a-5efd-9394-a3211294865a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.036526, - "y": -2651.347295 - }, - "endPoint": { - "x": 1215.226232, - "y": -2651.412423 - } - } - }, - { - "id": "7fa558bb-6a31-549e-8067-e33276ebd1ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.226232, - "y": -2651.412423 - }, - "endPoint": { - "x": 1215.487141, - "y": -2651.471715 - } - } - }, - { - "id": "b9bad148-ccb4-5f82-83c1-bc132b34b3e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.487141, - "y": -2651.471715 - }, - "endPoint": { - "x": 1215.670896, - "y": -2651.513171 - } - } - }, - { - "id": "54cf4ef5-fe47-570d-a2f1-64cd41a4b5f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.670896, - "y": -2651.513171 - }, - "endPoint": { - "x": 1215.789501, - "y": -2651.548735 - } - } - }, - { - "id": "e153bca2-4ca5-586a-ac2d-c2872a2b108f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.789501, - "y": -2651.548735 - }, - "endPoint": { - "x": 1215.801403, - "y": -2651.708664 - } - } - }, - { - "id": "f05c2f56-68fd-5a5b-975b-f376b457341d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.801403, - "y": -2651.708664 - }, - "endPoint": { - "x": 1215.801403, - "y": -2651.910104 - } - } - }, - { - "id": "130be7c9-fdbe-5c89-a96c-5c87895cbb80", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.801403, - "y": -2651.910104 - }, - "endPoint": { - "x": 1215.75985, - "y": -2652.064198 - } - } - }, - { - "id": "96e077c9-233e-54c9-9e9d-e3ba1ee05142", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.75985, - "y": -2652.064198 - }, - "endPoint": { - "x": 1215.510842, - "y": -2652.052306 - } - } - }, - { - "id": "734edff2-ca57-536a-bad0-5ed82c3d4365", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.510842, - "y": -2652.052306 - }, - "endPoint": { - "x": 1215.326984, - "y": -2651.987179 - } - } - }, - { - "id": "c2a40d47-41f9-5085-8168-e8933aada694", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.326984, - "y": -2651.987179 - }, - "endPoint": { - "x": 1215.178831, - "y": -2652.004906 - } - } - }, - { - "id": "5b561041-715c-53e4-8664-ed27febb4209", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.178831, - "y": -2652.004906 - }, - "endPoint": { - "x": 1215.012723, - "y": -2652.105653 - } - } - }, - { - "id": "82cbfe6c-558b-54f7-93ca-d23d07c0dfe9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.012723, - "y": -2652.105653 - }, - "endPoint": { - "x": 1214.805268, - "y": -2652.111599 - } - } - }, - { - "id": "5675c08d-2c37-5f96-a938-931a3179764c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.805268, - "y": -2652.111599 - }, - "endPoint": { - "x": 1214.597709, - "y": -2652.111599 - } - } - }, - { - "id": "877ec71a-6ad6-5fdb-ac11-efeaae7ac832", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.597709, - "y": -2652.111599 - }, - "endPoint": { - "x": 1214.449454, - "y": -2652.188618 - } - } - }, - { - "id": "cd966760-439c-55ed-aec8-a5418c0332fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.449454, - "y": -2652.188618 - }, - "endPoint": { - "x": 1214.277498, - "y": -2652.200455 - } - } - }, - { - "id": "556793ab-0496-5bd3-90e0-0bdc06e750e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.277498, - "y": -2652.200455 - }, - "endPoint": { - "x": 1214.058141, - "y": -2652.170836 - } - } - }, - { - "id": "f7aef240-f2e7-5e95-96e0-982b9f72859a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.058141, - "y": -2652.170836 - }, - "endPoint": { - "x": 1213.986937, - "y": -2652.070089 - } - } - }, - { - "id": "d9df26dd-7c85-5f25-bac7-3674f2200e0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.986937, - "y": -2652.070089 - }, - "endPoint": { - "x": 1213.78533, - "y": -2652.058252 - } - } - }, - { - "id": "90873748-8bf5-5fd8-a35e-7dd5e669b29e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.78533, - "y": -2652.058252 - }, - "endPoint": { - "x": 1213.637176, - "y": -2652.153054 - } - } - }, - { - "id": "2cf5a662-f9dc-5910-b070-c6ac547dc19c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.637176, - "y": -2652.153054 - }, - "endPoint": { - "x": 1213.595624, - "y": -2652.111599 - } - } - }, - { - "id": "a43d913d-2666-5479-953b-01049caf76ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.595624, - "y": -2652.111599 - }, - "endPoint": { - "x": 1213.607525, - "y": -2651.999015 - } - } - }, - { - "id": "468c58eb-b6f5-5b93-9ee9-9c97f77a90c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.607525, - "y": -2651.999015 - }, - "endPoint": { - "x": 1213.494871, - "y": -2651.880485 - } - } - }, - { - "id": "0b77b9b8-fa02-520c-89db-026d3e6ed2a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.494871, - "y": -2651.880485 - }, - "endPoint": { - "x": 1213.423668, - "y": -2651.827194 - } - } - }, - { - "id": "ca68ae74-fcb2-5064-9141-98c66016462c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.423668, - "y": -2651.827194 - }, - "endPoint": { - "x": 1213.388066, - "y": -2651.79163 - } - } - }, - { - "id": "dd299ccb-8fb4-526e-8936-40714c7d6e16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.388066, - "y": -2651.79163 - }, - "endPoint": { - "x": 1213.269564, - "y": -2651.767957 - } - } - }, - { - "id": "6e2043b4-4108-5a76-b0e4-b339c5d26c24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.269564, - "y": -2651.767957 - }, - "endPoint": { - "x": 1213.145008, - "y": -2651.602026 - } - } - }, - { - "id": "d99869a9-e0bc-594a-a61d-d9858f88e1ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.145008, - "y": -2651.602026 - }, - "endPoint": { - "x": 1213.050104, - "y": -2651.483552 - } - } - }, - { - "id": "f2694a63-cf65-5405-bbe2-f40b8b4d10c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.050104, - "y": -2651.483552 - }, - "endPoint": { - "x": 1213.026404, - "y": -2651.270221 - } - } - }, - { - "id": "684488d0-5f0f-5864-a6fb-eec42ed18038", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.026404, - "y": -2651.270221 - }, - "endPoint": { - "x": 1213.085706, - "y": -2651.133964 - } - } - }, - { - "id": "345fe9a5-f146-577b-97f0-7cf18cb27d0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.085706, - "y": -2651.133964 - }, - "endPoint": { - "x": 1213.032354, - "y": -2650.950307 - } - } - }, - { - "id": "e2e05d64-4d7a-5c82-b2a8-27e1dbffd86f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.032354, - "y": -2650.950307 - }, - "endPoint": { - "x": 1213.079755, - "y": -2650.68963 - } - } - }, - { - "id": "7afcf268-ea74-509d-bc96-45a0057c08b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.079755, - "y": -2650.68963 - }, - "endPoint": { - "x": 1213.293264, - "y": -2650.511863 - } - } - }, - { - "id": "59a8f816-cde3-538f-a944-78c4c0d268cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.293264, - "y": -2650.511863 - }, - "endPoint": { - "x": 1213.512621, - "y": -2650.434844 - } - } - }, - { - "id": "fd201b7b-99fa-5442-8533-33bf616b3962", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.512621, - "y": -2650.434844 - }, - "endPoint": { - "x": 1213.625275, - "y": -2650.48819 - } - } - }, - { - "id": "bf7ec941-5cfb-547f-80aa-32c8b623717a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.625275, - "y": -2650.48819 - }, - "endPoint": { - "x": 1213.601574, - "y": -2650.577046 - } - } - }, - { - "id": "9be4f202-31e4-566d-a937-af9cb40f3f4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.601574, - "y": -2650.577046 - }, - "endPoint": { - "x": 1213.447368, - "y": -2650.68963 - } - } - }, - { - "id": "e06aa349-ada3-52f7-bac9-12a2e8d40931", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.447368, - "y": -2650.68963 - }, - "endPoint": { - "x": 1213.376267, - "y": -2650.914742 - } - } - }, - { - "id": "ce053ab0-c8ee-54fd-a3c5-b0fe62cb6626", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.376267, - "y": -2650.914742 - }, - "endPoint": { - "x": 1213.394016, - "y": -2651.276167 - } - } - }, - { - "id": "285b295f-9a63-5e6a-a27b-881cf521e637", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.394016, - "y": -2651.276167 - }, - "endPoint": { - "x": 1213.50667, - "y": -2651.447988 - } - } - }, - { - "id": "132366b0-6237-581c-9b9c-c8eb7f7e3da4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.50667, - "y": -2651.447988 - }, - "endPoint": { - "x": 1213.761629, - "y": -2651.530953 - } - } - }, - { - "id": "69c148fb-cbfc-514b-9b50-5d1ffc50ac78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.761629, - "y": -2651.530953 - }, - "endPoint": { - "x": 1214.03444, - "y": -2651.519116 - } - } - }, - { - "id": "cc7fce7a-2df0-51dd-99a0-3f54c85ccd53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.03444, - "y": -2651.519116 - }, - "endPoint": { - "x": 1214.170794, - "y": -2651.382805 - } - } - }, - { - "id": "9cef6430-9f8b-5f6b-9e80-47606ae304be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.170794, - "y": -2651.382805 - }, - "endPoint": { - "x": 1214.325001, - "y": -2651.299894 - } - } - }, - { - "id": "d5567721-8b0f-5c9c-b1d7-92cbd56fd972", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.325001, - "y": -2651.299894 - }, - "endPoint": { - "x": 1214.443503, - "y": -2651.258384 - } - } - }, - { - "id": "ebe6ff66-edaa-51c6-9e6e-338633ad0ef0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.443503, - "y": -2651.258384 - }, - "endPoint": { - "x": 1214.473154, - "y": -2651.104346 - } - } - }, - { - "id": "afbc8b12-2594-5ceb-83cf-98b6fe248abd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.473154, - "y": -2651.104346 - }, - "endPoint": { - "x": 1214.473154, - "y": -2650.89696 - } - } - }, - { - "id": "964382b3-4d9a-52bd-a781-1c3160af0e92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.473154, - "y": -2650.89696 - }, - "endPoint": { - "x": 1214.413852, - "y": -2650.802159 - } - } - }, - { - "id": "0e0fbfa4-e86d-5297-80fa-013e7b4b3b05", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.413852, - "y": -2650.802159 - }, - "endPoint": { - "x": 1214.277498, - "y": -2650.701466 - } - } - }, - { - "id": "0eb77602-26c1-5c55-bd7c-2cb64b5a6186", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.277498, - "y": -2650.701466 - }, - "endPoint": { - "x": 1214.158893, - "y": -2650.56521 - } - } - }, - { - "id": "a846bfe6-bd67-5176-b3ac-e27ca336e96b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.158893, - "y": -2650.56521 - }, - "endPoint": { - "x": 1214.194495, - "y": -2650.482244 - } - } - }, - { - "id": "8ea5613d-68ce-559e-ac43-5038b5e21d90", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.194495, - "y": -2650.482244 - }, - "endPoint": { - "x": 1214.289399, - "y": -2650.440789 - } - } - }, - { - "id": "931a1400-6dcf-506f-ab0f-53f6374fc0e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.289399, - "y": -2650.440789 - }, - "endPoint": { - "x": 1214.491006, - "y": -2650.423007 - } - } - }, - { - "id": "e992fb4a-f8d8-52d4-ae5a-4999156989e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.491006, - "y": -2650.423007 - }, - "endPoint": { - "x": 1214.585808, - "y": -2650.369661 - } - } - }, - { - "id": "9f8ac094-a81d-5fb4-9dca-7fba6a670f7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.585808, - "y": -2650.369661 - }, - "endPoint": { - "x": 1214.704413, - "y": -2650.334151 - } - } - }, - { - "id": "989ac18a-4ef4-5ab9-a333-8f27b4a6ea5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.704413, - "y": -2650.334151 - }, - "endPoint": { - "x": 1214.793366, - "y": -2650.393389 - } - } - }, - { - "id": "0a0df1ca-e875-55e7-b355-b81c21339a76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.793366, - "y": -2650.393389 - }, - "endPoint": { - "x": 1214.894221, - "y": -2650.334151 - } - } - }, - { - "id": "65744ab7-df97-58ca-8798-c260f21bdf9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.894221, - "y": -2650.334151 - }, - "endPoint": { - "x": 1215.042374, - "y": -2650.36377 - } - } - }, - { - "id": "d72ce79c-f7c5-59ec-9a8a-91fa450bce3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.042374, - "y": -2650.36377 - }, - "endPoint": { - "x": 1215.273633, - "y": -2650.428898 - } - } - }, - { - "id": "d9409152-50f1-59a1-b678-f909498f916f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.273633, - "y": -2650.428898 - }, - "endPoint": { - "x": 1215.564193, - "y": -2650.423007 - } - } - }, - { - "id": "220e3a6e-0643-5d9c-bd99-714bd282685b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.564193, - "y": -2650.423007 - }, - "endPoint": { - "x": 1215.872504, - "y": -2650.393389 - } - } - }, - { - "id": "50ca66ff-5323-500b-bb1d-e1e31a8f7c94", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.872504, - "y": -2650.393389 - }, - "endPoint": { - "x": 1216.00301, - "y": -2650.304478 - } - } - }, - { - "id": "908132f9-3b63-5c47-93f9-b89b82383a72", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.00301, - "y": -2650.304478 - }, - "endPoint": { - "x": 1216.127463, - "y": -2650.263023 - } - } - }, - { - "id": "1c93872d-6235-5c72-bb14-883cf373b05a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.127463, - "y": -2650.263023 - }, - "endPoint": { - "x": 1216.281669, - "y": -2650.233404 - } - } - }, - { - "id": "7125480f-af00-5f85-bbc5-442cb2c8f252", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.281669, - "y": -2650.233404 - }, - "endPoint": { - "x": 1216.340971, - "y": -2650.073419 - } - } - }, - { - "id": "ccd5c3c0-b4d2-55cc-a4bd-23d58abf0c15", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.340971, - "y": -2650.073419 - }, - "endPoint": { - "x": 1216.346922, - "y": -2649.931217 - } - } - }, - { - "id": "781b8a8a-3144-551b-9083-d81f388cbd9d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.346922, - "y": -2649.931217 - }, - "endPoint": { - "x": 1216.286902, - "y": -2649.904571 - } - } - }, - { - "id": "cd011758-1aa0-522f-b7b2-f0599b699a64", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.286902, - "y": -2649.904571 - }, - "endPoint": { - "x": 1216.197948, - "y": -2649.815715 - } - } - }, - { - "id": "3c965bf5-9f1c-573c-9c6c-b92cf03b901e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.197948, - "y": -2649.815715 - }, - "endPoint": { - "x": 1216.1684, - "y": -2649.661677 - } - } - }, - { - "id": "d7a22df1-4d18-510c-8fe5-68300dbc4308", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.1684, - "y": -2649.661677 - }, - "endPoint": { - "x": 1216.073495, - "y": -2649.602384 - } - } - }, - { - "id": "b0b86b70-e1ec-5d7f-9470-827ab1c3d8a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.073495, - "y": -2649.602384 - }, - "endPoint": { - "x": 1215.937141, - "y": -2649.632003 - } - } - }, - { - "id": "125694dc-77da-5eb0-9d96-e221a230ac1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.937141, - "y": -2649.632003 - }, - "endPoint": { - "x": 1215.747333, - "y": -2649.637949 - } - } - }, - { - "id": "535f6ff1-c3a0-5070-947e-fb5081e2e3f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.747333, - "y": -2649.637949 - }, - "endPoint": { - "x": 1215.516074, - "y": -2649.549093 - } - } - }, - { - "id": "d3813026-76c7-596e-b1ea-13046d60311b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.516074, - "y": -2649.549093 - }, - "endPoint": { - "x": 1215.344118, - "y": -2649.566875 - } - } - }, - { - "id": "b78260e9-eb53-5d7c-a75c-464b4c375c43", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.344118, - "y": -2649.566875 - }, - "endPoint": { - "x": 1215.284816, - "y": -2649.649785 - } - } - }, - { - "id": "696856b8-b8ed-5eab-937a-3941387f34a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.284816, - "y": -2649.649785 - }, - "endPoint": { - "x": 1215.089159, - "y": -2649.596494 - } - } - }, - { - "id": "a6e35975-c43a-59c6-99fe-662d150f7e78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.089159, - "y": -2649.596494 - }, - "endPoint": { - "x": 1214.875753, - "y": -2649.549093 - } - } - }, - { - "id": "d9d0317f-1ee1-5d13-bf95-fc4d692f37ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.875753, - "y": -2649.549093 - }, - "endPoint": { - "x": 1214.632593, - "y": -2649.554983 - } - } - }, - { - "id": "9ce5a088-f035-5749-8168-40de04f9a8a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.632593, - "y": -2649.554983 - }, - "endPoint": { - "x": 1214.425138, - "y": -2649.602384 - } - } - }, - { - "id": "3fce0733-2280-50dc-8ed5-51b7f0441602", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.425138, - "y": -2649.602384 - }, - "endPoint": { - "x": 1214.116725, - "y": -2649.661677 - } - } - }, - { - "id": "c973d45d-25f7-5796-a24a-866155af485a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.116725, - "y": -2649.661677 - }, - "endPoint": { - "x": 1213.968572, - "y": -2649.572766 - } - } - }, - { - "id": "7ced1c62-0143-5836-a3bb-4494a699700f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.968572, - "y": -2649.572766 - }, - "endPoint": { - "x": 1213.761014, - "y": -2649.560929 - } - } - }, - { - "id": "dc8c8616-14e6-5c41-9577-f1c9c7c74894", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.761014, - "y": -2649.560929 - }, - "endPoint": { - "x": 1213.559406, - "y": -2649.632003 - } - } - }, - { - "id": "b673e877-6587-565a-9410-7910f947c43c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.559406, - "y": -2649.632003 - }, - "endPoint": { - "x": 1213.500104, - "y": -2649.786097 - } - } - }, - { - "id": "b8a0367c-c295-5eb2-ab20-be43dec85529", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.500104, - "y": -2649.786097 - }, - "endPoint": { - "x": 1212.978285, - "y": -2649.803824 - } - } - }, - { - "id": "bf38cafd-51d8-5002-902b-0e3534821dc8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.978285, - "y": -2649.803824 - }, - "endPoint": { - "x": 1212.770727, - "y": -2649.768315 - } - } - }, - { - "id": "217f40e7-9561-5ee4-be56-81438045c771", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.770727, - "y": -2649.768315 - }, - "endPoint": { - "x": 1212.626267, - "y": -2649.737485 - } - } - }, - { - "id": "d3dba5dd-1eab-5acb-8a42-da7c8d264097", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.626267, - "y": -2649.737485 - }, - "endPoint": { - "x": 1212.410193, - "y": -2649.661622 - } - } - }, - { - "id": "7dea5399-76b7-5650-9990-a15d00369184", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.410193, - "y": -2649.661622 - }, - "endPoint": { - "x": 1212.04217, - "y": -2649.626608 - } - } - }, - { - "id": "2d3d9497-385b-501f-a764-03fdffbd2ae3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.04217, - "y": -2649.626608 - }, - "endPoint": { - "x": 1211.90202, - "y": -2649.766663 - } - } - }, - { - "id": "02bbff76-de33-5307-a1a1-51373cb1b57e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.90202, - "y": -2649.766663 - }, - "endPoint": { - "x": 1211.849489, - "y": -2649.725814 - } - } - }, - { - "id": "22435a46-3a06-586f-b560-39ea55171c78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.849489, - "y": -2649.725814 - }, - "endPoint": { - "x": 1211.738477, - "y": -2649.725814 - } - } - }, - { - "id": "52b1d86a-e085-590f-937f-a1cf60badc4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.738477, - "y": -2649.725814 - }, - "endPoint": { - "x": 1211.563237, - "y": -2649.801677 - } - } - }, - { - "id": "9a12a862-3669-500f-8eee-51b58e691acf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.563237, - "y": -2649.801677 - }, - "endPoint": { - "x": 1211.452328, - "y": -2649.78417 - } - } - }, - { - "id": "0a6d1c8a-8be0-573a-a586-62ae9cd6af06", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.452328, - "y": -2649.78417 - }, - "endPoint": { - "x": 1211.417239, - "y": -2649.719978 - } - } - }, - { - "id": "c8bdbe0e-4485-5baa-8c6a-660393376ed0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.417239, - "y": -2649.719978 - }, - "endPoint": { - "x": 1211.281398, - "y": -2649.749046 - } - } - }, - { - "id": "c242d534-e310-5b2c-abe6-4d4dbb119a4a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.281398, - "y": -2649.749046 - }, - "endPoint": { - "x": 1210.984476, - "y": -2649.714968 - } - } - }, - { - "id": "ec48a567-36d5-53a5-822c-4622af89ec53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.984476, - "y": -2649.714968 - }, - "endPoint": { - "x": 1210.511699, - "y": -2649.866089 - } - } - }, - { - "id": "8b378a96-d553-5420-b8a2-9109d5e599d4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.511699, - "y": -2649.866089 - }, - "endPoint": { - "x": 1210.474353, - "y": -2649.955771 - } - } - }, - { - "id": "4c0c4153-181b-5a89-9fcb-d563fe73bbc0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.474353, - "y": -2649.955771 - }, - "endPoint": { - "x": 1210.40951, - "y": -2650.068575 - } - } - }, - { - "id": "d421a1d9-3927-5f43-aa11-72bb7edb5b9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.40951, - "y": -2650.068575 - }, - "endPoint": { - "x": 1210.251508, - "y": -2650.093954 - } - } - }, - { - "id": "6f0fc03a-9c4d-5136-9a49-4a52cbfae4fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.251508, - "y": -2650.093954 - }, - "endPoint": { - "x": 1210.115974, - "y": -2650.00653 - } - } - }, - { - "id": "3d43b85b-fbd7-5a0f-972b-c0d34bc78a9b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.115974, - "y": -2650.00653 - }, - "endPoint": { - "x": 1210.090632, - "y": -2649.851445 - } - } - }, - { - "id": "2c3b9930-15c0-5250-8006-9c9be016d79d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.090632, - "y": -2649.851445 - }, - "endPoint": { - "x": 1210.101918, - "y": -2649.671036 - } - } - }, - { - "id": "32389bfc-bce0-58a4-8787-11aca0d74c73", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.101918, - "y": -2649.671036 - }, - "endPoint": { - "x": 1210.203491, - "y": -2649.465192 - } - } - }, - { - "id": "9eeff896-96a2-50d1-b0ac-3b6afeb96208", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.203491, - "y": -2649.465192 - }, - "endPoint": { - "x": 1210.338922, - "y": -2649.327008 - } - } - }, - { - "id": "018148a2-9fbf-5e08-8fc7-2149235c701c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.338922, - "y": -2649.327008 - }, - "endPoint": { - "x": 1210.46871, - "y": -2649.259348 - } - } - }, - { - "id": "f2dee838-b9b7-54cb-8322-91e53a017716", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.46871, - "y": -2649.259348 - }, - "endPoint": { - "x": 1210.669086, - "y": -2649.298821 - } - } - }, - { - "id": "3c1a047c-7061-5f0f-b5d5-df587d5639d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.669086, - "y": -2649.298821 - }, - "endPoint": { - "x": 1210.798874, - "y": -2649.363674 - } - } - }, - { - "id": "392002ca-07c2-5f7c-800c-360f302d94ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.798874, - "y": -2649.363674 - }, - "endPoint": { - "x": 1211.112109, - "y": -2649.318585 - } - } - }, - { - "id": "706beeca-63bc-59f3-8a4c-62bac9a03d6b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.112109, - "y": -2649.318585 - }, - "endPoint": { - "x": 1211.385741, - "y": -2649.321393 - } - } - }, - { - "id": "bbc57b49-cfa1-5f77-b471-579bb5b132ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.385741, - "y": -2649.321393 - }, - "endPoint": { - "x": 1211.663272, - "y": -2649.315117 - } - } - }, - { - "id": "bd935870-3692-557f-b1d2-329db8b8eddb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.663272, - "y": -2649.315117 - }, - "endPoint": { - "x": 1212.092136, - "y": -2649.306639 - } - } - }, - { - "id": "817c6eb3-a44c-5c30-8549-60454b16f150", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.092136, - "y": -2649.306639 - }, - "endPoint": { - "x": 1212.834236, - "y": -2649.26155 - } - } - }, - { - "id": "2b6a4ce2-15a8-5d43-b9c6-9bea071ba480", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.834236, - "y": -2649.26155 - }, - "endPoint": { - "x": 1213.451267, - "y": -2649.295518 - } - } - }, - { - "id": "55230562-25b7-5246-909e-6ef8a6b63eef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.451267, - "y": -2649.295518 - }, - "endPoint": { - "x": 1214.300582, - "y": -2649.346277 - } - } - }, - { - "id": "aa35cfa1-accf-5ae8-b8cd-0d9f5b135fa9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.300582, - "y": -2649.346277 - }, - "endPoint": { - "x": 1214.777463, - "y": -2649.303996 - } - } - }, - { - "id": "d032c1e3-5cef-55a1-bf18-b030d416d91e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.777463, - "y": -2649.303996 - }, - "endPoint": { - "x": 1215.262757, - "y": -2649.256045 - } - } - }, - { - "id": "fb143d9c-785c-5e83-b6e2-67d0c39861c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.262757, - "y": -2649.256045 - }, - "endPoint": { - "x": 1215.563886, - "y": -2649.264303 - } - } - }, - { - "id": "3398f445-114f-5210-a566-f12680bd68b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.563886, - "y": -2649.264303 - }, - "endPoint": { - "x": 1215.961765, - "y": -2649.086701 - } - } - }, - { - "id": "043fadd0-84a0-5183-b4bb-9ed2ddfa65c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.961765, - "y": -2649.086701 - }, - "endPoint": { - "x": 1216.212517, - "y": -2648.865442 - } - } - }, - { - "id": "0d7e26e5-312d-5d76-acf8-303b9fc619f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.212517, - "y": -2648.865442 - }, - "endPoint": { - "x": 1216.291519, - "y": -2648.701879 - } - } - }, - { - "id": "956d69a9-ce9d-5c77-9d22-f15a51255161", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.291519, - "y": -2648.701879 - }, - "endPoint": { - "x": 1216.280233, - "y": -2648.501706 - } - } - }, - { - "id": "ad4916a7-94ea-5f10-a146-142aafd92516", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.280233, - "y": -2648.501706 - }, - "endPoint": { - "x": 1216.373393, - "y": -2648.369193 - } - } - }, - { - "id": "1aabb3de-b3b9-57f3-b795-9b1ba401d9df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.373393, - "y": -2648.369193 - }, - "endPoint": { - "x": 1216.311218, - "y": -2648.053408 - } - } - }, - { - "id": "1b04a48f-6c7b-58a9-b16e-9383778fc5c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.311218, - "y": -2648.053408 - }, - "endPoint": { - "x": 1216.229138, - "y": -2647.9166 - } - } - }, - { - "id": "3d04be2f-0514-5a02-8567-bb80f6e56b89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.229138, - "y": -2647.9166 - }, - "endPoint": { - "x": 1216.234781, - "y": -2647.795373 - } - } - }, - { - "id": "7dd8162b-174f-50cb-84d4-49d98756d208", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.234781, - "y": -2647.795373 - }, - "endPoint": { - "x": 1216.09935, - "y": -2647.648767 - } - } - }, - { - "id": "7c55e040-146c-5054-9008-58cb8e499756", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.09935, - "y": -2647.648767 - }, - "endPoint": { - "x": 1215.90749, - "y": -2647.479588 - } - } - }, - { - "id": "9dfd0422-6dd0-5df2-93a1-8bbcf5092699", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.90749, - "y": -2647.479588 - }, - "endPoint": { - "x": 1215.678899, - "y": -2647.406257 - } - } - }, - { - "id": "388e45ca-74bb-52b4-9177-e648bf651b12", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.678899, - "y": -2647.406257 - }, - "endPoint": { - "x": 1215.204891, - "y": -2647.383685 - } - } - }, - { - "id": "ff179f0c-7fd8-5745-95a3-6903bd34ab48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.204891, - "y": -2647.383685 - }, - "endPoint": { - "x": 1215.123017, - "y": -2647.392164 - } - } - }, - { - "id": "b84baa42-1355-521c-bb71-b517380c9a20", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.123017, - "y": -2647.392164 - }, - "endPoint": { - "x": 1215.066588, - "y": -2647.510583 - } - } - }, - { - "id": "3478588f-b33f-55c2-a52c-892241bd6d83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.066588, - "y": -2647.510583 - }, - "endPoint": { - "x": 1215.027087, - "y": -2647.555672 - } - } - }, - { - "id": "2446ad2e-1bac-5478-b155-4aea2216a1e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.027087, - "y": -2647.555672 - }, - "endPoint": { - "x": 1214.891656, - "y": -2647.535963 - } - } - }, - { - "id": "cd9187c5-720c-574d-a3cf-5b0f8bef76a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.891656, - "y": -2647.535963 - }, - "endPoint": { - "x": 1214.756225, - "y": -2647.431637 - } - } - }, - { - "id": "35968afb-9043-563d-abd5-2dfdfb9349a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.756225, - "y": -2647.431637 - }, - "endPoint": { - "x": 1214.442067, - "y": -2647.417268 - } - } - }, - { - "id": "05c18236-28b9-54cf-b441-76b1f98641ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.442067, - "y": -2647.417268 - }, - "endPoint": { - "x": 1214.185364, - "y": -2647.41446 - } - } - }, - { - "id": "84389629-ac5e-5f8e-afc8-8e82c5a474a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.185364, - "y": -2647.41446 - }, - "endPoint": { - "x": 1214.134577, - "y": -2647.341129 - } - } - }, - { - "id": "51b57789-bb6b-5b4e-b80d-8e54dc45b222", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.134577, - "y": -2647.341129 - }, - "endPoint": { - "x": 1214.114775, - "y": -2647.203001 - } - } - }, - { - "id": "a4e6a7cd-3898-57f5-b2af-8b069627f1f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.114775, - "y": -2647.203001 - }, - "endPoint": { - "x": 1214.241793, - "y": -2647.124055 - } - } - }, - { - "id": "7bc41389-b5e4-5182-87a2-5c0069c27ecf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.241793, - "y": -2647.124055 - }, - "endPoint": { - "x": 1214.48444, - "y": -2647.070488 - } - } - }, - { - "id": "b14b0ced-4a3e-5212-ad56-4a69201636a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.48444, - "y": -2647.070488 - }, - "endPoint": { - "x": 1214.715801, - "y": -2647.059202 - } - } - }, - { - "id": "47e4d3d5-1208-5e1b-be40-110f40128d9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.715801, - "y": -2647.059202 - }, - "endPoint": { - "x": 1214.769768, - "y": -2647.004149 - } - } - }, - { - "id": "6679f19e-cd9b-55b9-b7bb-c2a0a38889c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.769768, - "y": -2647.004149 - }, - "endPoint": { - "x": 1214.860055, - "y": -2646.888537 - } - } - }, - { - "id": "7aaee68d-1741-54f2-b5b3-ca91af245b8a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.860055, - "y": -2646.888537 - }, - "endPoint": { - "x": 1214.919358, - "y": -2646.837778 - } - } - }, - { - "id": "8380463f-9258-5aa9-88c5-796ff5ebd1bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.919358, - "y": -2646.837778 - }, - "endPoint": { - "x": 1215.034987, - "y": -2646.956197 - } - } - }, - { - "id": "da1a4c82-86d8-5f8b-b44c-2f60e9648800", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.034987, - "y": -2646.956197 - }, - "endPoint": { - "x": 1215.153489, - "y": -2647.032336 - } - } - }, - { - "id": "f242e29d-2e3b-5c53-a6de-243757c02c5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.153489, - "y": -2647.032336 - }, - "endPoint": { - "x": 1215.317135, - "y": -2647.085903 - } - } - }, - { - "id": "60a3111a-a679-52f3-8651-1a8f2e509928", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.317135, - "y": -2647.085903 - }, - "endPoint": { - "x": 1215.492169, - "y": -2647.080232 - } - } - }, - { - "id": "64eb4be0-2af0-539d-816d-dc1c400329f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.492169, - "y": -2647.080232 - }, - "endPoint": { - "x": 1215.647299, - "y": -2647.052045 - } - } - }, - { - "id": "ed0e515d-a8fa-532e-b6db-f5411cc5a79e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.647299, - "y": -2647.052045 - }, - "endPoint": { - "x": 1215.715014, - "y": -2647.08871 - } - } - }, - { - "id": "1d52e2d4-818a-5bde-b966-6d67273641c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.715014, - "y": -2647.08871 - }, - "endPoint": { - "x": 1216.039535, - "y": -2646.959005 - } - } - }, - { - "id": "6be710a8-e3fc-5190-b609-1317041d407d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.039535, - "y": -2646.959005 - }, - "endPoint": { - "x": 1216.253967, - "y": -2646.792689 - } - } - }, - { - "id": "6458ac95-7caa-5829-8fe6-722643f9866f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.253967, - "y": -2646.792689 - }, - "endPoint": { - "x": 1216.358413, - "y": -2646.657314 - } - } - }, - { - "id": "e9a89f7a-ab6b-5815-a574-2b2fb46d71d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.358413, - "y": -2646.657314 - }, - "endPoint": { - "x": 1216.386628, - "y": -2646.555851 - } - } - }, - { - "id": "17e32bd0-7a9f-5750-820f-c16be7563c88", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.386628, - "y": -2646.555851 - }, - "endPoint": { - "x": 1216.403557, - "y": -2646.465618 - } - } - }, - { - "id": "b02ee392-6f60-5c24-a8c6-4664c7b97f87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.403557, - "y": -2646.465618 - }, - "endPoint": { - "x": 1216.402941, - "y": -2646.414474 - } - } - } - ] - }, - { - "id": "590eb45e-c6d2-5e8c-80a9-8f1cd4e90131", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "bb3deb66-cf2f-51ca-9e29-64a9f56c22af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.462381, - "y": -2648.460526 - }, - "endPoint": { - "x": 1214.54128, - "y": -2648.534903 - } - } - }, - { - "id": "f2bba999-e74d-54f4-bbbd-820be0d35f5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.54128, - "y": -2648.534903 - }, - "endPoint": { - "x": 1214.804036, - "y": -2648.543656 - } - } - }, - { - "id": "6fecbdb3-5988-5b2a-a908-21ff8de7a8cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.804036, - "y": -2648.543656 - }, - "endPoint": { - "x": 1214.91351, - "y": -2648.499889 - } - } - }, - { - "id": "0bca49a4-468d-5090-be3f-725431f6a903", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.91351, - "y": -2648.499889 - }, - "endPoint": { - "x": 1215.005541, - "y": -2648.337978 - } - } - }, - { - "id": "9e265ac3-9525-5119-b600-9988b11f67b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.005541, - "y": -2648.337978 - }, - "endPoint": { - "x": 1214.992408, - "y": -2648.162908 - } - } - }, - { - "id": "a528b1fe-495b-5799-a610-eb5dab212f5a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.992408, - "y": -2648.162908 - }, - "endPoint": { - "x": 1214.979276, - "y": -2648.027257 - } - } - }, - { - "id": "7031bc79-a3df-53dc-898c-3c7520831208", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.979276, - "y": -2648.027257 - }, - "endPoint": { - "x": 1214.8697, - "y": -2648.000997 - } - } - }, - { - "id": "3a3cb090-9674-59c5-9fae-94115c4e88f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.8697, - "y": -2648.000997 - }, - "endPoint": { - "x": 1214.782183, - "y": -2647.904709 - } - } - }, - { - "id": "28ea89a5-4379-5877-853e-170b399fa79f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.782183, - "y": -2647.904709 - }, - "endPoint": { - "x": 1214.624488, - "y": -2647.882853 - } - } - }, - { - "id": "5f9665b1-0340-5c44-8e53-4503d4fb4a78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.624488, - "y": -2647.882853 - }, - "endPoint": { - "x": 1214.479926, - "y": -2647.887202 - } - } - }, - { - "id": "65a225bc-c28e-5f86-9f3a-bb3edcc910cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.479926, - "y": -2647.887202 - }, - "endPoint": { - "x": 1214.440528, - "y": -2647.965983 - } - } - }, - { - "id": "1091eae0-4162-57f5-9b4e-f8b6ad857a3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.440528, - "y": -2647.965983 - }, - "endPoint": { - "x": 1214.304789, - "y": -2648.075374 - } - } - }, - { - "id": "d0e5327f-625d-57db-b9be-2ed76a2832a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.304789, - "y": -2648.075374 - }, - "endPoint": { - "x": 1214.287244, - "y": -2648.189169 - } - } - }, - { - "id": "5e74e69e-0800-5f6a-84f5-5a027f462cee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.287244, - "y": -2648.189169 - }, - "endPoint": { - "x": 1214.291656, - "y": -2648.298615 - } - } - }, - { - "id": "9c1c633d-dba9-549e-95f9-7a3fcb7cace3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.291656, - "y": -2648.298615 - }, - "endPoint": { - "x": 1214.331054, - "y": -2648.408005 - } - } - }, - { - "id": "4cfc67b0-0d61-52f5-b3a1-2f075ac46817", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.331054, - "y": -2648.408005 - }, - "endPoint": { - "x": 1214.462381, - "y": -2648.460526 - } - } - } - ] - }, - { - "id": "0c27c02e-44e4-586d-857f-249399e1bfd1", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "ac42f6a8-b0b2-54f0-a078-4b7c3234e048", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.25797, - "y": -2648.053518 - }, - "endPoint": { - "x": 1213.21416, - "y": -2648.044764 - } - } - }, - { - "id": "18231bf3-a677-5f4d-b7cb-b4816504aada", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.21416, - "y": -2648.044764 - }, - "endPoint": { - "x": 1213.091554, - "y": -2648.127895 - } - } - }, - { - "id": "5ed2a1f5-c700-58b2-b0a2-da4dd1f31d4d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.091554, - "y": -2648.127895 - }, - "endPoint": { - "x": 1213.030302, - "y": -2648.281108 - } - } - }, - { - "id": "eaaff9a1-5d73-5b9d-9fb3-a5c37d525dc0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.030302, - "y": -2648.281108 - }, - "endPoint": { - "x": 1213.078421, - "y": -2648.447368 - } - } - }, - { - "id": "a0e88ac7-d1de-5330-b20b-c60471e2d5ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.078421, - "y": -2648.447368 - }, - "endPoint": { - "x": 1213.275514, - "y": -2648.548061 - } - } - }, - { - "id": "31ded770-2484-5fe1-8d41-24c214e21068", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.275514, - "y": -2648.548061 - }, - "endPoint": { - "x": 1213.468196, - "y": -2648.574321 - } - } - }, - { - "id": "abc653b3-654b-549c-943d-a93ec1fb2961", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.468196, - "y": -2648.574321 - }, - "endPoint": { - "x": 1213.599625, - "y": -2648.49554 - } - } - }, - { - "id": "d642b1d8-57b5-513f-ab27-3535d6a76db1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.599625, - "y": -2648.49554 - }, - "endPoint": { - "x": 1213.691554, - "y": -2648.368587 - } - } - }, - { - "id": "cf634d99-77d1-52c0-9ac7-84592896286b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.691554, - "y": -2648.368587 - }, - "endPoint": { - "x": 1213.700377, - "y": -2648.206676 - } - } - }, - { - "id": "4c442b67-9d52-5022-b0fe-e6fef7c60a44", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.700377, - "y": -2648.206676 - }, - "endPoint": { - "x": 1213.61717, - "y": -2648.018504 - } - } - }, - { - "id": "85992374-2af2-5c63-af04-b450100f87c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.61717, - "y": -2648.018504 - }, - "endPoint": { - "x": 1213.446342, - "y": -2647.98349 - } - } - }, - { - "id": "58cd79ee-efbe-5956-b78b-c5c359a71e9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.446342, - "y": -2647.98349 - }, - "endPoint": { - "x": 1213.297368, - "y": -2648.00975 - } - } - }, - { - "id": "ee148857-bdbf-56b9-ad71-9d60127195a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.297368, - "y": -2648.00975 - }, - "endPoint": { - "x": 1213.25797, - "y": -2648.053518 - } - } - } - ] - }, - { - "id": "9d72a42a-e69d-5ff5-9e8b-2ad7c07f543c", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "071f54e3-33d3-54b6-9e60-9ea8185f523a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.977635, - "y": -2648.12283 - }, - "endPoint": { - "x": 1211.81994, - "y": -2648.140337 - } - } - }, - { - "id": "dff06d90-c40e-5c72-88af-fffeaab79f14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.81994, - "y": -2648.140337 - }, - "endPoint": { - "x": 1211.710467, - "y": -2648.26283 - } - } - }, - { - "id": "595dca11-6adb-5d44-8dc1-13c056c00510", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.710467, - "y": -2648.26283 - }, - "endPoint": { - "x": 1211.63598, - "y": -2648.363522 - } - } - }, - { - "id": "55228a82-10bf-5712-aa77-f9ca921dec9b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.63598, - "y": -2648.363522 - }, - "endPoint": { - "x": 1211.754277, - "y": -2648.54729 - } - } - }, - { - "id": "e3b464ec-e2f3-5312-854a-d56d9a72f32f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.754277, - "y": -2648.54729 - }, - "endPoint": { - "x": 1212.043299, - "y": -2648.556043 - } - } - }, - { - "id": "c31275be-f388-5bd0-be60-ff6a8a43fa89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.043299, - "y": -2648.556043 - }, - "endPoint": { - "x": 1212.214126, - "y": -2648.494769 - } - } - }, - { - "id": "ac8ef452-6c46-58b7-a7c1-de83af952421", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.214126, - "y": -2648.494769 - }, - "endPoint": { - "x": 1212.297334, - "y": -2648.446653 - } - } - }, - { - "id": "9de761c7-96a1-5362-a45a-075ebe96379d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.297334, - "y": -2648.446653 - }, - "endPoint": { - "x": 1212.37613, - "y": -2648.341611 - } - } - }, - { - "id": "52e5020c-f39e-57e7-b8d1-eae744ad36e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.37613, - "y": -2648.341611 - }, - "endPoint": { - "x": 1212.336732, - "y": -2648.214713 - } - } - }, - { - "id": "1502d996-3575-5637-88c7-3535b246c32c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.336732, - "y": -2648.214713 - }, - "endPoint": { - "x": 1212.196582, - "y": -2648.144686 - } - } - }, - { - "id": "181fede8-9f24-520d-873e-92bb99f9837a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.196582, - "y": -2648.144686 - }, - "endPoint": { - "x": 1211.977635, - "y": -2648.12283 - } - } - } - ] - }, - { - "id": "8ec14429-c8b0-5fe9-83df-20571bcd0e2f", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "64ab0264-f950-5c5d-a6d9-f84a4de9bb33", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.795078, - "y": -2647.680808 - }, - "endPoint": { - "x": 1210.913272, - "y": -2647.672054 - } - } - }, - { - "id": "1dee880a-70d4-5465-b0eb-eb1da0fda1d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.913272, - "y": -2647.672054 - }, - "endPoint": { - "x": 1211.04029, - "y": -2647.571417 - } - } - }, - { - "id": "70468797-c427-5bf0-9619-fa349767cb26", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.04029, - "y": -2647.571417 - }, - "endPoint": { - "x": 1211.206808, - "y": -2647.545157 - } - } - }, - { - "id": "2b1e0d02-29b9-5519-9e24-37a35afcdbfe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.206808, - "y": -2647.545157 - }, - "endPoint": { - "x": 1211.403901, - "y": -2647.575766 - } - } - }, - { - "id": "8610b5f9-52ad-5d28-b09c-4adf7a62891f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.403901, - "y": -2647.575766 - }, - "endPoint": { - "x": 1211.76741, - "y": -2647.58452 - } - } - }, - { - "id": "d6dc03b8-648a-5af8-a6bf-8d224fc73d8e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.76741, - "y": -2647.58452 - }, - "endPoint": { - "x": 1211.960091, - "y": -2647.575766 - } - } - }, - { - "id": "fd43863d-417e-5696-8436-26954680d563", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.960091, - "y": -2647.575766 - }, - "endPoint": { - "x": 1212.27979, - "y": -2647.575766 - } - } - }, - { - "id": "2656e3cf-b95d-567c-82d4-4fe346076d07", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.27979, - "y": -2647.575766 - }, - "endPoint": { - "x": 1212.43769, - "y": -2647.568829 - } - } - }, - { - "id": "4bd349a6-9f63-5280-94b0-8fd5928d5466", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.43769, - "y": -2647.568829 - }, - "endPoint": { - "x": 1212.423429, - "y": -2647.199202 - } - } - }, - { - "id": "120e298d-5d7c-50bb-8b32-d9b0104cfd34", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.423429, - "y": -2647.199202 - }, - "endPoint": { - "x": 1212.123634, - "y": -2647.174208 - } - } - }, - { - "id": "4bd233d1-5f1f-5327-8f96-9862a17d8bc0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.123634, - "y": -2647.174208 - }, - "endPoint": { - "x": 1211.683997, - "y": -2647.1812 - } - } - }, - { - "id": "25ce5fc0-ca2d-5d2c-afb8-77ec9ae7e204", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.683997, - "y": -2647.1812 - }, - "endPoint": { - "x": 1211.279346, - "y": -2647.198597 - } - } - }, - { - "id": "dd71f040-c1ba-5f61-8a0a-0a04a82ee48f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.279346, - "y": -2647.198597 - }, - "endPoint": { - "x": 1210.89583, - "y": -2647.203772 - } - } - }, - { - "id": "90c5a198-4601-55f0-8d1c-95ad650dfdc4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.89583, - "y": -2647.203772 - }, - "endPoint": { - "x": 1210.689914, - "y": -2647.155655 - } - } - }, - { - "id": "c1a50eca-14c3-5e91-a191-e827a1193e27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.689914, - "y": -2647.155655 - }, - "endPoint": { - "x": 1210.554175, - "y": -2647.138148 - } - } - }, - { - "id": "53bf9da4-fe02-52d5-ab1b-f3d52c9cdd61", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.554175, - "y": -2647.138148 - }, - "endPoint": { - "x": 1210.427157, - "y": -2647.146902 - } - } - }, - { - "id": "44bb0248-9125-59c6-bd79-9f53b456266a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.427157, - "y": -2647.146902 - }, - "endPoint": { - "x": 1210.357082, - "y": -2647.225683 - } - } - }, - { - "id": "8e30dd95-f1de-5c5f-bb45-ec3ef80bb114", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.357082, - "y": -2647.225683 - }, - "endPoint": { - "x": 1210.348361, - "y": -2647.308813 - } - } - }, - { - "id": "19a3dd69-dba0-5f03-9a9c-e94853462f04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.348361, - "y": -2647.308813 - }, - "endPoint": { - "x": 1210.265153, - "y": -2647.361334 - } - } - }, - { - "id": "bb72b3de-b7d9-5462-ae4c-e5fdbab88554", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.265153, - "y": -2647.361334 - }, - "endPoint": { - "x": 1210.21252, - "y": -2647.440115 - } - } - }, - { - "id": "b594262b-35c8-5164-8978-f0759b7e1f0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.21252, - "y": -2647.440115 - }, - "endPoint": { - "x": 1210.278286, - "y": -2647.632636 - } - } - }, - { - "id": "0805e267-bed0-5186-9623-aab18a09b9aa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.278286, - "y": -2647.632636 - }, - "endPoint": { - "x": 1210.400892, - "y": -2647.702664 - } - } - }, - { - "id": "ca3b1382-007d-5f89-962a-ea67007f047e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.400892, - "y": -2647.702664 - }, - "endPoint": { - "x": 1210.62425, - "y": -2647.733328 - } - } - }, - { - "id": "21c70a32-05e5-54b5-a6cb-e38a42c05681", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.62425, - "y": -2647.733328 - }, - "endPoint": { - "x": 1210.795078, - "y": -2647.680808 - } - } - } - ] - }, - { - "id": "b525f038-6b9f-59b6-bba5-70978201ff1a", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "5698cc2d-7c64-590f-9e7c-79d3dc818fec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.402941, - "y": -2646.414474 - }, - "endPoint": { - "x": 1216.25961, - "y": -2646.217604 - } - } - }, - { - "id": "0219c6a6-7bd5-5baa-8a4c-04237c94c737", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.25961, - "y": -2646.217604 - }, - "endPoint": { - "x": 1216.098427, - "y": -2646.092303 - } - } - }, - { - "id": "cfc47c29-0680-546f-8a1f-e4cf51251e89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.098427, - "y": -2646.092303 - }, - "endPoint": { - "x": 1215.856601, - "y": -2645.980435 - } - } - }, - { - "id": "16bd0efa-2d89-5ad0-b36d-3e541551da40", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.856601, - "y": -2645.980435 - }, - "endPoint": { - "x": 1215.650582, - "y": -2645.890918 - } - } - }, - { - "id": "6dad637b-6f91-5709-b676-69a1c9b0463a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.650582, - "y": -2645.890918 - }, - "endPoint": { - "x": 1215.220589, - "y": -2645.90881 - } - } - }, - { - "id": "6d7f417f-52cd-5dc1-b4b0-202594679f4b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.220589, - "y": -2645.90881 - }, - "endPoint": { - "x": 1214.911663, - "y": -2645.949109 - } - } - }, - { - "id": "c392ef8d-7335-5939-a218-2445c4591a46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.911663, - "y": -2645.949109 - }, - "endPoint": { - "x": 1214.778079, - "y": -2645.995739 - } - } - }, - { - "id": "4a408498-8371-5cae-8236-b4e79505fd38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.778079, - "y": -2645.995739 - }, - "endPoint": { - "x": 1214.619666, - "y": -2646.049526 - } - } - }, - { - "id": "ce69f7e6-54ce-5c74-9722-aac749044677", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.619666, - "y": -2646.049526 - }, - "endPoint": { - "x": 1214.459611, - "y": -2646.018807 - } - } - }, - { - "id": "e21e684f-bc42-53ce-8596-9c95c4df1f92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.459611, - "y": -2646.018807 - }, - "endPoint": { - "x": 1214.271649, - "y": -2645.656226 - } - } - }, - { - "id": "2c478eee-a014-5fe4-97d2-f21929ce3bb2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.271649, - "y": -2645.656226 - }, - "endPoint": { - "x": 1214.12996, - "y": -2645.400504 - } - } - }, - { - "id": "cdcea843-fc50-5e1a-ac35-6764b96dedb8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.12996, - "y": -2645.400504 - }, - "endPoint": { - "x": 1213.901574, - "y": -2645.211672 - } - } - }, - { - "id": "a2fd12c3-fcb9-5060-97ad-0a09be7424ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.901574, - "y": -2645.211672 - }, - "endPoint": { - "x": 1213.708585, - "y": -2645.129092 - } - } - }, - { - "id": "c84244f4-3966-5be3-b9a5-50abd05b588f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.708585, - "y": -2645.129092 - }, - "endPoint": { - "x": 1213.610193, - "y": -2645.113347 - } - } - }, - { - "id": "13f71ba5-7349-567c-b5be-d1159d4821cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.610193, - "y": -2645.113347 - }, - "endPoint": { - "x": 1213.515699, - "y": -2645.042493 - } - } - }, - { - "id": "c079379a-077f-5265-b514-87935558749a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.515699, - "y": -2645.042493 - }, - "endPoint": { - "x": 1213.090528, - "y": -2645.046457 - } - } - }, - { - "id": "b2928242-ff36-50a3-ae6e-e51505e33324", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.090528, - "y": -2645.046457 - }, - "endPoint": { - "x": 1212.834543, - "y": -2645.097602 - } - } - }, - { - "id": "2165c988-adbb-5bf6-94b5-b496965c7fed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.834543, - "y": -2645.097602 - }, - "endPoint": { - "x": 1212.710706, - "y": -2645.224004 - } - } - }, - { - "id": "12f6827b-de30-5dd7-b3d6-d288e8e0724f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.710706, - "y": -2645.224004 - }, - "endPoint": { - "x": 1212.64771, - "y": -2645.389218 - } - } - }, - { - "id": "be16986d-d0f8-5cce-8e31-28181b359099", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.64771, - "y": -2645.389218 - }, - "endPoint": { - "x": 1212.376028, - "y": -2645.656722 - } - } - }, - { - "id": "9e5e3b58-18dc-51d3-bdc0-83d0d948676e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.376028, - "y": -2645.656722 - }, - "endPoint": { - "x": 1212.309031, - "y": -2645.888881 - } - } - }, - { - "id": "26a68139-2d0e-58ca-8a5a-27e32e4c2f07", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.309031, - "y": -2645.888881 - }, - "endPoint": { - "x": 1212.076746, - "y": -2645.963588 - } - } - }, - { - "id": "b7e55e92-9e45-554a-a18e-432899d44cbc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.076746, - "y": -2645.963588 - }, - "endPoint": { - "x": 1211.722471, - "y": -2645.951807 - } - } - }, - { - "id": "7dee2674-cd93-5317-a3ed-6afe9b351c7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.722471, - "y": -2645.951807 - }, - "endPoint": { - "x": 1211.616179, - "y": -2645.904571 - } - } - }, - { - "id": "1a4037b3-8657-5402-8cca-95b5d6880c42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.616179, - "y": -2645.904571 - }, - "endPoint": { - "x": 1211.470488, - "y": -2645.943934 - } - } - }, - { - "id": "190ea7e3-a8d5-5ff3-8ad4-986488093abe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.470488, - "y": -2645.943934 - }, - "endPoint": { - "x": 1211.246001, - "y": -2646.002951 - } - } - }, - { - "id": "8985bfcf-f8e5-57bd-b6db-1037873c0fbf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.246001, - "y": -2646.002951 - }, - "endPoint": { - "x": 1210.935023, - "y": -2645.940026 - } - } - }, - { - "id": "a7e04dff-9b25-570f-b9de-2df2c732cc74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.935023, - "y": -2645.940026 - }, - "endPoint": { - "x": 1210.802978, - "y": -2645.848582 - } - } - }, - { - "id": "e2cc861c-3c01-5ddc-b555-e06b4424ac81", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.802978, - "y": -2645.848582 - }, - "endPoint": { - "x": 1210.747882, - "y": -2645.636187 - } - } - }, - { - "id": "f85792db-128f-589b-83fa-8221ff35b062", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.747882, - "y": -2645.636187 - }, - "endPoint": { - "x": 1210.610091, - "y": -2645.368628 - } - } - }, - { - "id": "055b65ce-654f-51a9-9785-6963e78d0efa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.610091, - "y": -2645.368628 - }, - "endPoint": { - "x": 1210.499797, - "y": -2645.179796 - } - } - }, - { - "id": "c4a2ff42-83d0-5f3b-a8c1-48679311f79b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.499797, - "y": -2645.179796 - }, - "endPoint": { - "x": 1210.358108, - "y": -2645.132615 - } - } - }, - { - "id": "734eb92c-b828-5edf-9fec-5fb85f0f4403", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.358108, - "y": -2645.132615 - }, - "endPoint": { - "x": 1210.094326, - "y": -2645.108998 - } - } - }, - { - "id": "7d1708ba-4f5c-5fcc-974c-a243d085b3a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.094326, - "y": -2645.108998 - }, - "endPoint": { - "x": 1209.806843, - "y": -2645.179796 - } - } - }, - { - "id": "510f8d3d-74b2-50de-aca2-b3a84dd093f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.806843, - "y": -2645.179796 - }, - "endPoint": { - "x": 1209.586357, - "y": -2645.376501 - } - } - }, - { - "id": "cc306eb9-c37d-5699-949d-1d708751933c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.586357, - "y": -2645.376501 - }, - "endPoint": { - "x": 1209.381672, - "y": -2645.596824 - } - } - }, - { - "id": "e1a4cd64-91cd-5c25-ae19-5a7db01766c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.381672, - "y": -2645.596824 - }, - "endPoint": { - "x": 1209.295078, - "y": -2645.703022 - } - } - }, - { - "id": "c9d085e5-d513-56bd-914b-c7f6245f703d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.295078, - "y": -2645.703022 - }, - "endPoint": { - "x": 1209.291077, - "y": -2645.813183 - } - } - }, - { - "id": "7070532c-e8b1-5668-8a8a-137f2cd0e118", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.291077, - "y": -2645.813183 - }, - "endPoint": { - "x": 1209.153286, - "y": -2645.942998 - } - } - }, - { - "id": "5464457d-c9e5-56f4-b0ad-3b0afdbfbe57", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.153286, - "y": -2645.942998 - }, - "endPoint": { - "x": 1209.121788, - "y": -2646.143667 - } - } - }, - { - "id": "7c2c08d6-d9e7-56d5-9726-b2e6bbea20a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.121788, - "y": -2646.143667 - }, - "endPoint": { - "x": 1208.991898, - "y": -2646.379735 - } - } - }, - { - "id": "c8a655aa-bdcb-573d-b5a1-12eaf6a42a45", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.991898, - "y": -2646.379735 - }, - "endPoint": { - "x": 1208.569805, - "y": -2646.723763 - } - } - }, - { - "id": "fe367639-8cd4-5994-b549-24575d5ec335", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.569805, - "y": -2646.723763 - }, - "endPoint": { - "x": 1208.455612, - "y": -2646.877196 - } - } - }, - { - "id": "8a012570-33b2-59d7-99ca-223631c5b3ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.455612, - "y": -2646.877196 - }, - "endPoint": { - "x": 1208.156433, - "y": -2646.955922 - } - } - }, - { - "id": "e5901e44-4011-5d74-93d2-743f2ee9b6d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.156433, - "y": -2646.955922 - }, - "endPoint": { - "x": 1208.061939, - "y": -2647.050338 - } - } - }, - { - "id": "ab693026-877f-586a-87ba-dd98736f3da8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.061939, - "y": -2647.050338 - }, - "endPoint": { - "x": 1207.994942, - "y": -2647.258825 - } - } - }, - { - "id": "546767e8-648c-525b-a875-0db254997328", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.994942, - "y": -2647.258825 - }, - "endPoint": { - "x": 1207.908348, - "y": -2647.428003 - } - } - }, - { - "id": "a81a206c-2384-5f75-9f5f-679e3dbc96f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.908348, - "y": -2647.428003 - }, - "endPoint": { - "x": 1207.790257, - "y": -2647.510638 - } - } - }, - { - "id": "d51408e9-9c7f-5b7d-88f2-fdbc241a7747", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.790257, - "y": -2647.510638 - }, - "endPoint": { - "x": 1207.764812, - "y": -2647.702058 - } - } - }, - { - "id": "aade89c9-73ba-5e6b-91d3-0af6d365bf6d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.764812, - "y": -2647.702058 - }, - "endPoint": { - "x": 1207.715359, - "y": -2647.835397 - } - } - }, - { - "id": "fa0ea077-bed7-59fd-b031-c64136e9bbb0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.715359, - "y": -2647.835397 - }, - "endPoint": { - "x": 1207.646208, - "y": -2647.998354 - } - } - }, - { - "id": "02a0e5ed-ba74-5c44-aed4-23bbad21db79", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.646208, - "y": -2647.998354 - }, - "endPoint": { - "x": 1207.626406, - "y": -2648.111984 - } - } - }, - { - "id": "402a775b-4760-5dd8-9f61-0c879a5528c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.626406, - "y": -2648.111984 - }, - "endPoint": { - "x": 1207.710435, - "y": -2648.20084 - } - } - }, - { - "id": "3e7d15d6-5ddf-559a-8b7d-be37d4b9dc87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.710435, - "y": -2648.20084 - }, - "endPoint": { - "x": 1207.720284, - "y": -2648.368752 - } - } - }, - { - "id": "35ce56e8-f84c-532f-94f3-26678964d553", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.720284, - "y": -2648.368752 - }, - "endPoint": { - "x": 1207.833964, - "y": -2648.541619 - } - } - }, - { - "id": "4b6752e1-91d9-5236-b568-5e264f41f664", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.833964, - "y": -2648.541619 - }, - "endPoint": { - "x": 1208.076201, - "y": -2648.650239 - } - } - }, - { - "id": "0bb2d038-d1b9-5bd3-8df8-7fd4be3e31f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.076201, - "y": -2648.650239 - }, - "endPoint": { - "x": 1208.402363, - "y": -2648.684813 - } - } - }, - { - "id": "d5c70e2e-428f-5e79-b895-2e7b30fe464c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.402363, - "y": -2648.684813 - }, - "endPoint": { - "x": 1208.575345, - "y": -2648.674958 - } - } - }, - { - "id": "c8ee8f56-ba8b-52a7-be3e-c7739914c558", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.575345, - "y": -2648.674958 - }, - "endPoint": { - "x": 1208.743403, - "y": -2648.566283 - } - } - }, - { - "id": "094c9edc-6607-5ace-814c-83cfa94ea023", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.743403, - "y": -2648.566283 - }, - "endPoint": { - "x": 1208.916385, - "y": -2648.576193 - } - } - }, - { - "id": "c5baf45f-3d3c-57ca-99d0-4f00e4c2b5ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.916385, - "y": -2648.576193 - }, - "endPoint": { - "x": 1208.936187, - "y": -2648.650239 - } - } - }, - { - "id": "5ce1bd98-91df-5eaa-aec7-4831e5c22565", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.936187, - "y": -2648.650239 - }, - "endPoint": { - "x": 1208.871857, - "y": -2648.768769 - } - } - }, - { - "id": "71facef3-e32a-5d51-82e1-bb9abcaa40d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.871857, - "y": -2648.768769 - }, - "endPoint": { - "x": 1208.545694, - "y": -2648.852725 - } - } - }, - { - "id": "6198f763-9820-5a17-bde1-91ea1e825657", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.545694, - "y": -2648.852725 - }, - "endPoint": { - "x": 1208.451816, - "y": -2649.020637 - } - } - }, - { - "id": "647f14c1-7caf-5dbf-8019-b358dd66cce9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.451816, - "y": -2649.020637 - }, - "endPoint": { - "x": 1208.229381, - "y": -2649.139167 - } - } - }, - { - "id": "e07ea3c7-b337-5cdf-aed8-2d650f21e5cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.229381, - "y": -2649.139167 - }, - "endPoint": { - "x": 1208.090975, - "y": -2649.341652 - } - } - }, - { - "id": "feeca65b-5615-5723-9529-06039f1d460b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.090975, - "y": -2649.341652 - }, - "endPoint": { - "x": 1207.947644, - "y": -2649.598476 - } - } - }, - { - "id": "7f9671c1-6c36-5871-9815-05650d678733", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.947644, - "y": -2649.598476 - }, - "endPoint": { - "x": 1207.878595, - "y": -2649.88277 - } - } - }, - { - "id": "8efecc14-e57a-5db5-8faa-15492add589c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.878595, - "y": -2649.88277 - }, - "endPoint": { - "x": 1207.809443, - "y": -2650.134639 - } - } - }, - { - "id": "6f86c9be-7706-55b0-a3ed-d232ba8965bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.809443, - "y": -2650.134639 - }, - "endPoint": { - "x": 1207.87367, - "y": -2650.445799 - } - } - }, - { - "id": "6b5f61fb-af0e-5167-a5d4-61e4045a196c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.87367, - "y": -2650.445799 - }, - "endPoint": { - "x": 1207.962623, - "y": -2650.712477 - } - } - }, - { - "id": "aa5faf90-f18f-5e00-9093-4fcdcc576201", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.962623, - "y": -2650.712477 - }, - "endPoint": { - "x": 1208.209682, - "y": -2650.87048 - } - } - }, - { - "id": "7d29ee58-a6c8-56dd-907a-062acc971597", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.209682, - "y": -2650.87048 - }, - "endPoint": { - "x": 1208.47172, - "y": -2650.944581 - } - } - }, - { - "id": "fc8f3b5f-5659-5ddc-91b4-a4268c1092c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.47172, - "y": -2650.944581 - }, - "endPoint": { - "x": 1208.679278, - "y": -2650.885289 - } - } - }, - { - "id": "a5653ff4-9723-5c17-b66e-aa988a8a617b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.679278, - "y": -2650.885289 - }, - "endPoint": { - "x": 1208.816453, - "y": -2650.821868 - } - } - }, - { - "id": "571b5c45-f6d8-5c79-9c42-7f26b9cf195e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.816453, - "y": -2650.821868 - }, - "endPoint": { - "x": 1208.986152, - "y": -2650.809756 - } - } - }, - { - "id": "c4e8bd5d-5bb4-5424-ab80-9e509b164cb5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.986152, - "y": -2650.809756 - }, - "endPoint": { - "x": 1209.124353, - "y": -2650.82429 - } - } - }, - { - "id": "615ea46d-62c0-58b7-992b-3c81e317e276", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.124353, - "y": -2650.82429 - }, - "endPoint": { - "x": 1209.180065, - "y": -2650.858203 - } - } - }, - { - "id": "a43f4c0c-ebbd-5c98-955b-58d018c6d64e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.180065, - "y": -2650.858203 - }, - "endPoint": { - "x": 1209.180065, - "y": -2650.942985 - } - } - }, - { - "id": "28f54830-e8c9-52a8-a7ab-078323b5a4b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.180065, - "y": -2650.942985 - }, - "endPoint": { - "x": 1209.109682, - "y": -2651.146847 - } - } - }, - { - "id": "fcbfea30-1b12-5c44-90fe-9ae708066665", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.109682, - "y": -2651.146847 - }, - "endPoint": { - "x": 1209.074695, - "y": -2651.297968 - } - } - }, - { - "id": "d9f7d569-2af8-56c1-8046-a9d37c702787", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.074695, - "y": -2651.297968 - }, - "endPoint": { - "x": 1208.966146, - "y": -2651.390952 - } - } - }, - { - "id": "ceebeb3b-acea-5030-9235-02f86a9e3b6c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.966146, - "y": -2651.390952 - }, - "endPoint": { - "x": 1208.927363, - "y": -2651.487846 - } - } - }, - { - "id": "8f615573-64a2-5f14-9330-0674dd2c130a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.927363, - "y": -2651.487846 - }, - "endPoint": { - "x": 1208.896378, - "y": -2651.728098 - } - } - }, - { - "id": "daf6ffda-0ef1-52ad-8971-e41de33f2a70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.896378, - "y": -2651.728098 - }, - "endPoint": { - "x": 1208.729552, - "y": -2651.828846 - } - } - }, - { - "id": "0cd818c3-4c5a-5ab9-b28e-05dfef864b0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.729552, - "y": -2651.828846 - }, - "endPoint": { - "x": 1208.604894, - "y": -2652.056215 - } - } - }, - { - "id": "1daaa7bf-b3e4-58c5-bd2c-0a14b3868610", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.604894, - "y": -2652.056215 - }, - "endPoint": { - "x": 1208.531125, - "y": -2652.253801 - } - } - }, - { - "id": "fe3c27ba-d643-594a-8200-4a93d65d8388", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.531125, - "y": -2652.253801 - }, - "endPoint": { - "x": 1208.310127, - "y": -2652.486346 - } - } - }, - { - "id": "bb496fc1-3cf2-5e53-b89b-584a721c2ff9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.310127, - "y": -2652.486346 - }, - "endPoint": { - "x": 1208.201577, - "y": -2652.703311 - } - } - }, - { - "id": "5debc544-cf9c-54dc-a5d3-e1929551887f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.201577, - "y": -2652.703311 - }, - "endPoint": { - "x": 1208.193779, - "y": -2653.114117 - } - } - }, - { - "id": "e0a65b08-d72c-5862-9402-4434e6490a4a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.193779, - "y": -2653.114117 - }, - "endPoint": { - "x": 1208.275243, - "y": -2653.214865 - } - } - }, - { - "id": "2128c5de-dd47-5d15-853d-76e441f0fca6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.275243, - "y": -2653.214865 - }, - "endPoint": { - "x": 1208.395387, - "y": -2653.404743 - } - } - }, - { - "id": "01a43db7-b171-5377-bba6-091628dca682", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.395387, - "y": -2653.404743 - }, - "endPoint": { - "x": 1208.539641, - "y": -2653.662117 - } - } - }, - { - "id": "24eb4652-aba5-594d-a9e3-78c7db2797f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.539641, - "y": -2653.662117 - }, - "endPoint": { - "x": 1208.869292, - "y": -2653.666026 - } - } - }, - { - "id": "d70c76b9-5af7-549f-b3ee-dea99aa850c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.869292, - "y": -2653.666026 - }, - "endPoint": { - "x": 1209.179552, - "y": -2653.681496 - } - } - }, - { - "id": "a81fd05b-78b7-55f7-9ba8-e6e856af118b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.179552, - "y": -2653.681496 - }, - "endPoint": { - "x": 1209.334682, - "y": -2653.658263 - } - } - }, - { - "id": "eaa90ba4-957d-5203-9e29-da156848a148", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.334682, - "y": -2653.658263 - }, - "endPoint": { - "x": 1209.381159, - "y": -2653.565223 - } - } - }, - { - "id": "302e79f5-eba2-5aec-9af6-3ee544fe289a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.381159, - "y": -2653.565223 - }, - "endPoint": { - "x": 1209.485913, - "y": -2653.510996 - } - } - }, - { - "id": "cb4c50d0-0b9e-512f-8b6a-07f99518d521", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.485913, - "y": -2653.510996 - }, - "endPoint": { - "x": 1209.606159, - "y": -2653.495471 - } - } - }, - { - "id": "705ca07a-fcff-52d8-bc3e-bbc4a6408377", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.606159, - "y": -2653.495471 - }, - "endPoint": { - "x": 1209.726303, - "y": -2653.371491 - } - } - }, - { - "id": "ac039761-d358-59c4-98d6-9f2c8b133950", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.726303, - "y": -2653.371491 - }, - "endPoint": { - "x": 1209.86594, - "y": -2653.193229 - } - } - }, - { - "id": "0835f3ca-e5d3-599d-a48b-9f69b9a2fa1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.86594, - "y": -2653.193229 - }, - "endPoint": { - "x": 1209.958997, - "y": -2653.108007 - } - } - }, - { - "id": "c74418e8-7e1d-5d57-a92b-1a3c85baf4a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.958997, - "y": -2653.108007 - }, - "endPoint": { - "x": 1210.133519, - "y": -2653.061487 - } - } - }, - { - "id": "0bb1d6b3-659b-51ca-8e92-029353ca1bf6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.133519, - "y": -2653.061487 - }, - "endPoint": { - "x": 1210.245967, - "y": -2653.088628 - } - } - }, - { - "id": "81a079e5-6bfe-5381-aa17-97f3ba6a346c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.245967, - "y": -2653.088628 - }, - "endPoint": { - "x": 1210.33133, - "y": -2653.166088 - } - } - }, - { - "id": "6b3aa0d7-2cef-5a66-85c8-1edce66f25f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.33133, - "y": -2653.166088 - }, - "endPoint": { - "x": 1210.424387, - "y": -2653.34435 - } - } - }, - { - "id": "6e03177d-b9ee-5638-a367-2e35ef05d794", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.424387, - "y": -2653.34435 - }, - "endPoint": { - "x": 1210.592342, - "y": -2653.41724 - } - } - }, - { - "id": "4120db07-7224-58b8-98fe-635a58b5a4e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.592342, - "y": -2653.41724 - }, - "endPoint": { - "x": 1210.867718, - "y": -2653.483084 - } - } - }, - { - "id": "4704d39a-b4ef-5dc1-8a55-b75e0373fcba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.867718, - "y": -2653.483084 - }, - "endPoint": { - "x": 1211.042239, - "y": -2653.506371 - } - } - }, - { - "id": "ece58b30-5121-5925-9031-c663be5cf22f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.042239, - "y": -2653.506371 - }, - "endPoint": { - "x": 1211.197369, - "y": -2653.378483 - } - } - }, - { - "id": "d606ec8c-f435-548b-9fbb-3ca36aeb8b78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.197369, - "y": -2653.378483 - }, - "endPoint": { - "x": 1211.426165, - "y": -2653.235124 - } - } - }, - { - "id": "8e4d9fb8-24ae-57fc-894b-139fa62544a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.426165, - "y": -2653.235124 - }, - "endPoint": { - "x": 1211.530816, - "y": -2653.072332 - } - } - }, - { - "id": "4ea97a49-dfd1-5caf-97b5-aeee81e57c88", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.530816, - "y": -2653.072332 - }, - "endPoint": { - "x": 1211.569599, - "y": -2652.932827 - } - } - }, - { - "id": "041684bb-3d8a-5f7e-9b17-3ac262ef6596", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.569599, - "y": -2652.932827 - }, - "endPoint": { - "x": 1211.639469, - "y": -2652.746858 - } - } - }, - { - "id": "eeba0085-28cd-5d7b-8e6b-4ccebdd2a9df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.639469, - "y": -2652.746858 - }, - "endPoint": { - "x": 1211.769975, - "y": -2652.270317 - } - } - }, - { - "id": "009787e3-2399-5d1c-88ca-9f033a6238be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.769975, - "y": -2652.270317 - }, - "endPoint": { - "x": 1211.857287, - "y": -2651.905149 - } - } - }, - { - "id": "50ff7404-6477-5f4b-ad1e-6aec2abd1acb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.857287, - "y": -2651.905149 - }, - "endPoint": { - "x": 1211.846411, - "y": -2651.545487 - } - } - }, - { - "id": "249895c4-de91-5126-b5cc-81b3b8445e27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.846411, - "y": -2651.545487 - }, - "endPoint": { - "x": 1211.808244, - "y": -2651.114916 - } - } - }, - { - "id": "a57b2a14-2760-507a-9d5f-e08f0d94a6da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.808244, - "y": -2651.114916 - }, - "endPoint": { - "x": 1211.72637, - "y": -2650.940507 - } - } - }, - { - "id": "24dfaac9-c90c-5714-9a7c-249e22ebcd70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.72637, - "y": -2650.940507 - }, - "endPoint": { - "x": 1211.562724, - "y": -2650.875104 - } - } - }, - { - "id": "ceb6298b-78fe-5cfd-8bdf-12e7deaf80f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.562724, - "y": -2650.875104 - }, - "endPoint": { - "x": 1211.31187, - "y": -2650.880554 - } - } - }, - { - "id": "d6b7156b-81aa-5696-bb1c-96bf8e2742ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.31187, - "y": -2650.880554 - }, - "endPoint": { - "x": 1211.07189, - "y": -2651.038612 - } - } - }, - { - "id": "0c0f4620-785e-59a5-9da7-6d5394ccc4b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.07189, - "y": -2651.038612 - }, - "endPoint": { - "x": 1210.86464, - "y": -2651.305675 - } - } - }, - { - "id": "7ac65721-56b6-570d-bd22-e03150810f74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.86464, - "y": -2651.305675 - }, - "endPoint": { - "x": 1210.71187, - "y": -2651.670788 - } - } - }, - { - "id": "79ad9c42-9388-52b1-b845-ac5bdbf23a05", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.71187, - "y": -2651.670788 - }, - "endPoint": { - "x": 1210.602807, - "y": -2651.807044 - } - } - }, - { - "id": "70678f44-406c-5c08-ade9-702920942e01", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.602807, - "y": -2651.807044 - }, - "endPoint": { - "x": 1210.455577, - "y": -2652.014155 - } - } - }, - { - "id": "e63b5dae-bfaa-5e95-88d9-af3d3d851611", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.455577, - "y": -2652.014155 - }, - "endPoint": { - "x": 1210.330098, - "y": -2652.074108 - } - } - }, - { - "id": "940d0dd0-cabc-5eef-b5b2-f9762b097b0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.330098, - "y": -2652.074108 - }, - "endPoint": { - "x": 1210.174353, - "y": -2652.074328 - } - } - }, - { - "id": "66b55a3e-12c9-5f57-9ef0-0198f1171f38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.174353, - "y": -2652.074328 - }, - "endPoint": { - "x": 1210.110126, - "y": -2652.015531 - } - } - }, - { - "id": "d4c97687-4941-53bf-89da-333c961410bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.110126, - "y": -2652.015531 - }, - "endPoint": { - "x": 1210.128799, - "y": -2651.724189 - } - } - }, - { - "id": "117c36b1-fae5-55d8-832f-f029c805419e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.128799, - "y": -2651.724189 - }, - "endPoint": { - "x": 1210.139982, - "y": -2651.51284 - } - } - }, - { - "id": "773a8817-739e-5453-9ab4-1ed96e745d06", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.139982, - "y": -2651.51284 - }, - "endPoint": { - "x": 1210.190358, - "y": -2651.355168 - } - } - }, - { - "id": "4a4ba3ad-a2b1-523c-8fb2-52c3c54a41b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.190358, - "y": -2651.355168 - }, - "endPoint": { - "x": 1210.170146, - "y": -2651.157197 - } - } - }, - { - "id": "303283b6-24e7-5159-9c75-241e56fbdb5f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.170146, - "y": -2651.157197 - }, - "endPoint": { - "x": 1210.109716, - "y": -2651.059863 - } - } - }, - { - "id": "64b41a04-5ade-53bb-8a1f-7aa3199caa0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.109716, - "y": -2651.059863 - }, - "endPoint": { - "x": 1210.139982, - "y": -2650.791423 - } - } - }, - { - "id": "07c8ee0e-c7f5-5cae-841f-8c21179fe6a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.139982, - "y": -2650.791423 - }, - "endPoint": { - "x": 1210.270899, - "y": -2650.630338 - } - } - }, - { - "id": "ada46e70-8de1-5935-b01d-9782185569f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.270899, - "y": -2650.630338 - }, - "endPoint": { - "x": 1210.408587, - "y": -2650.59681 - } - } - }, - { - "id": "23b28eee-15a2-53ee-adb0-d8bd7742a015", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.408587, - "y": -2650.59681 - }, - "endPoint": { - "x": 1210.549661, - "y": -2650.657203 - } - } - }, - { - "id": "27b233fa-b4b3-50ce-ae58-13656c71e636", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.549661, - "y": -2650.657203 - }, - "endPoint": { - "x": 1210.892137, - "y": -2650.687428 - } - } - }, - { - "id": "b12dc348-674f-5d3a-9d8e-1341c83265a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.892137, - "y": -2650.687428 - }, - "endPoint": { - "x": 1210.932766, - "y": -2650.602481 - } - } - }, - { - "id": "aeaa6cee-5cfe-5ec2-832c-88fc4a0cf9a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.932766, - "y": -2650.602481 - }, - "endPoint": { - "x": 1210.966316, - "y": -2650.51858 - } - } - }, - { - "id": "81b93695-401b-5447-a00b-9be6541e0636", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.966316, - "y": -2650.51858 - }, - "endPoint": { - "x": 1211.214811, - "y": -2650.471619 - } - } - }, - { - "id": "a747f19f-f2d5-5cdf-8091-bf54817510b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.214811, - "y": -2650.471619 - }, - "endPoint": { - "x": 1211.470077, - "y": -2650.448111 - } - } - }, - { - "id": "95c80181-1a08-5394-8e8b-46e8156dacb9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.470077, - "y": -2650.448111 - }, - "endPoint": { - "x": 1211.647984, - "y": -2650.448111 - } - } - }, - { - "id": "43a496bc-0158-5ff4-9c5a-839a08c318b0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.647984, - "y": -2650.448111 - }, - "endPoint": { - "x": 1211.785672, - "y": -2650.51858 - } - } - }, - { - "id": "4cffed57-0c06-5ace-9c1b-aea7d6c2798b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.785672, - "y": -2650.51858 - }, - "endPoint": { - "x": 1211.940187, - "y": -2650.582331 - } - } - }, - { - "id": "352f3bed-6115-5e6d-984b-aeb3df932495", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.940187, - "y": -2650.582331 - }, - "endPoint": { - "x": 1212.087929, - "y": -2650.729984 - } - } - }, - { - "id": "cdf40abd-ded5-5bf3-bdd1-20a787df7504", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.087929, - "y": -2650.729984 - }, - "endPoint": { - "x": 1212.202122, - "y": -2650.971557 - } - } - }, - { - "id": "61b8b124-3a04-5e35-90b4-9767ca82cbb8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.202122, - "y": -2650.971557 - }, - "endPoint": { - "x": 1212.218846, - "y": -2651.246713 - } - } - }, - { - "id": "6672fd13-61d8-5670-afb6-9631c81500aa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.218846, - "y": -2651.246713 - }, - "endPoint": { - "x": 1212.212177, - "y": -2651.427948 - } - } - }, - { - "id": "2c95fce9-0d52-5521-b2e9-13d964a45815", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.212177, - "y": -2651.427948 - }, - "endPoint": { - "x": 1212.22295, - "y": -2651.551488 - } - } - }, - { - "id": "8f483ae2-1dbe-56f9-ad87-ac64e97f7efa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.22295, - "y": -2651.551488 - }, - "endPoint": { - "x": 1212.23557, - "y": -2651.808421 - } - } - }, - { - "id": "35119a51-5897-5974-9d33-918a29d6ff13", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.23557, - "y": -2651.808421 - }, - "endPoint": { - "x": 1212.307286, - "y": -2651.960092 - } - } - }, - { - "id": "5d59d5dc-020c-5ab4-868c-770daf17d1dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.307286, - "y": -2651.960092 - }, - "endPoint": { - "x": 1212.400036, - "y": -2652.010631 - } - } - }, - { - "id": "594a2388-e8b1-5795-b434-20d0c183772b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.400036, - "y": -2652.010631 - }, - "endPoint": { - "x": 1212.416862, - "y": -2652.393912 - } - } - }, - { - "id": "d9368a28-6dd3-5bfc-87a8-a45bbb11368d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.416862, - "y": -2652.393912 - }, - "endPoint": { - "x": 1212.429482, - "y": -2652.655084 - } - } - }, - { - "id": "7553365d-1a7e-5f26-82af-52fb4bd64f22", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.429482, - "y": -2652.655084 - }, - "endPoint": { - "x": 1212.539263, - "y": -2652.87838 - } - } - }, - { - "id": "056e15a6-da81-5d46-9f46-e29deafa138f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.539263, - "y": -2652.87838 - }, - "endPoint": { - "x": 1212.855474, - "y": -2653.084774 - } - } - }, - { - "id": "552f5911-6269-501d-99b8-704343c2e74b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.855474, - "y": -2653.084774 - }, - "endPoint": { - "x": 1213.053592, - "y": -2653.240685 - } - } - }, - { - "id": "d7d1200d-8451-5db0-932d-94325a45aafc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.053592, - "y": -2653.240685 - }, - "endPoint": { - "x": 1213.237758, - "y": -2653.359545 - } - } - }, - { - "id": "7d4395df-35ab-5290-86b8-eb1af7ef1ff4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.237758, - "y": -2653.359545 - }, - "endPoint": { - "x": 1213.600343, - "y": -2653.397421 - } - } - }, - { - "id": "78a39d45-e249-5a42-bbfe-fae8d6386884", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.600343, - "y": -2653.397421 - }, - "endPoint": { - "x": 1213.654105, - "y": -2653.45264 - } - } - }, - { - "id": "d667a506-9fac-5811-b01a-03051e430af2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.654105, - "y": -2653.45264 - }, - "endPoint": { - "x": 1213.683756, - "y": -2653.713316 - } - } - }, - { - "id": "134c286a-dc59-5627-8844-f7a599757f5d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.683756, - "y": -2653.713316 - }, - "endPoint": { - "x": 1213.778661, - "y": -2653.796282 - } - } - }, - { - "id": "450e8766-6d80-5019-9907-60614b43458f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.778661, - "y": -2653.796282 - }, - "endPoint": { - "x": 1214.543537, - "y": -2653.292655 - } - } - }, - { - "id": "ce3890ff-8af0-5bbf-a16b-fc393a5be6bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.543537, - "y": -2653.292655 - }, - "endPoint": { - "x": 1215.563475, - "y": -2652.463168 - } - } - }, - { - "id": "09868a6c-02e8-52be-9b51-bf42fd444ef3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.563475, - "y": -2652.463168 - }, - "endPoint": { - "x": 1216.126744, - "y": -2651.870686 - } - } - }, - { - "id": "fcaa830d-6c9c-5eb9-8866-3ee5c047cef6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.126744, - "y": -2651.870686 - }, - "endPoint": { - "x": 1216.483276, - "y": -2651.293949 - } - } - }, - { - "id": "48cb3b35-de00-5bae-84df-8c255e114be8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.483276, - "y": -2651.293949 - }, - "endPoint": { - "x": 1216.667134, - "y": -2650.908852 - } - } - }, - { - "id": "8a6cfbdf-275c-5399-b18e-dde9cb2597dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.667134, - "y": -2650.908852 - }, - "endPoint": { - "x": 1216.453625, - "y": -2651.009544 - } - } - }, - { - "id": "0ebde4a1-d8d8-5db1-80a3-7a565d0dfb74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.453625, - "y": -2651.009544 - }, - "endPoint": { - "x": 1216.340971, - "y": -2651.133964 - } - } - }, - { - "id": "c9367630-39c0-5c95-b9b2-9c7a36c754ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.340971, - "y": -2651.133964 - }, - "endPoint": { - "x": 1216.151266, - "y": -2651.175474 - } - } - }, - { - "id": "a2b8aea4-284b-5f26-9d1c-1cf3d817b45e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.151266, - "y": -2651.175474 - }, - "endPoint": { - "x": 1216.02671, - "y": -2651.086563 - } - } - }, - { - "id": "7c13515a-a978-586f-8c0e-7e5dc3cd0c37", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.02671, - "y": -2651.086563 - }, - "endPoint": { - "x": 1215.943708, - "y": -2650.902906 - } - } - }, - { - "id": "4b8e374f-48ce-5476-b764-14e2d7e3e61e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.943708, - "y": -2650.902906 - }, - "endPoint": { - "x": 1215.659098, - "y": -2650.760703 - } - } - }, - { - "id": "81e6b23a-48f1-546b-a1af-31676b627e95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.659098, - "y": -2650.760703 - }, - "endPoint": { - "x": 1215.380438, - "y": -2650.754813 - } - } - }, - { - "id": "820f7b1b-5cd1-5bd6-b9b3-2f0f66c45e6c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.380438, - "y": -2650.754813 - }, - "endPoint": { - "x": 1215.303284, - "y": -2650.701466 - } - } - }, - { - "id": "6aeba01c-21a8-54a2-b084-dcc9a32d1ae4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.303284, - "y": -2650.701466 - }, - "endPoint": { - "x": 1215.17288, - "y": -2650.802159 - } - } - }, - { - "id": "86b5e12f-eba7-52f0-b96f-d3135c884008", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.17288, - "y": -2650.802159 - }, - "endPoint": { - "x": 1215.036526, - "y": -2650.985871 - } - } - }, - { - "id": "74068df7-6b3b-5da0-9197-ffc0d397bcf2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.036526, - "y": -2650.985871 - }, - "endPoint": { - "x": 1215.006875, - "y": -2651.151746 - } - } - }, - { - "id": "020f93f5-1edb-5b47-9b33-5d972281370c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.006875, - "y": -2651.151746 - }, - "endPoint": { - "x": 1215.036526, - "y": -2651.347295 - } - } - }, - { - "id": "dbc43158-9719-5aff-ba0c-c6f5bcfb8dae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.036526, - "y": -2651.347295 - }, - "endPoint": { - "x": 1215.226232, - "y": -2651.412423 - } - } - }, - { - "id": "784b7bbb-9e55-5fbf-8d3c-df102cd8b020", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.226232, - "y": -2651.412423 - }, - "endPoint": { - "x": 1215.487141, - "y": -2651.471715 - } - } - }, - { - "id": "78177b7b-5b33-55f6-9115-b7402a4ea43d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.487141, - "y": -2651.471715 - }, - "endPoint": { - "x": 1215.670896, - "y": -2651.513171 - } - } - }, - { - "id": "e3632a59-acae-56da-9091-ce33d49bb67e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.670896, - "y": -2651.513171 - }, - "endPoint": { - "x": 1215.789501, - "y": -2651.548735 - } - } - }, - { - "id": "29994240-a88b-5072-9b3b-c62c10c2adfa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.789501, - "y": -2651.548735 - }, - "endPoint": { - "x": 1215.801403, - "y": -2651.708664 - } - } - }, - { - "id": "d4f801f8-18f9-5b59-b923-e8b6091adde0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.801403, - "y": -2651.708664 - }, - "endPoint": { - "x": 1215.801403, - "y": -2651.910104 - } - } - }, - { - "id": "340565fd-864b-525f-baee-bd02c77a64e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.801403, - "y": -2651.910104 - }, - "endPoint": { - "x": 1215.75985, - "y": -2652.064198 - } - } - }, - { - "id": "163e727b-aaeb-5aff-a427-ee2ce4d0a69e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.75985, - "y": -2652.064198 - }, - "endPoint": { - "x": 1215.510842, - "y": -2652.052306 - } - } - }, - { - "id": "45e123ce-3dca-5e99-9409-59de23f4bec0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.510842, - "y": -2652.052306 - }, - "endPoint": { - "x": 1215.326984, - "y": -2651.987179 - } - } - }, - { - "id": "a77c2408-1afa-5b5b-b069-64e8627bbdea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.326984, - "y": -2651.987179 - }, - "endPoint": { - "x": 1215.178831, - "y": -2652.004906 - } - } - }, - { - "id": "b70cc12f-af1e-52ec-a025-44e4f737aa1a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.178831, - "y": -2652.004906 - }, - "endPoint": { - "x": 1215.012723, - "y": -2652.105653 - } - } - }, - { - "id": "0358b224-9a75-55d3-a712-37bd34821548", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.012723, - "y": -2652.105653 - }, - "endPoint": { - "x": 1214.805268, - "y": -2652.111599 - } - } - }, - { - "id": "798ac7f9-baa8-5672-a2c3-144006e2fea7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.805268, - "y": -2652.111599 - }, - "endPoint": { - "x": 1214.597709, - "y": -2652.111599 - } - } - }, - { - "id": "b4ac7608-6d94-57d9-81ca-e6b2c1d5595a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.597709, - "y": -2652.111599 - }, - "endPoint": { - "x": 1214.449454, - "y": -2652.188618 - } - } - }, - { - "id": "11048326-a76b-5dcb-b1a9-84d193663a4e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.449454, - "y": -2652.188618 - }, - "endPoint": { - "x": 1214.277498, - "y": -2652.200455 - } - } - }, - { - "id": "32ce3f1c-3b3c-5cbb-a2c1-423a904d0177", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.277498, - "y": -2652.200455 - }, - "endPoint": { - "x": 1214.058141, - "y": -2652.170836 - } - } - }, - { - "id": "57fb033c-062a-5723-b165-44d3a44c59ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.058141, - "y": -2652.170836 - }, - "endPoint": { - "x": 1213.986937, - "y": -2652.070089 - } - } - }, - { - "id": "3d516be1-e36d-5de7-8cab-cd0683816a77", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.986937, - "y": -2652.070089 - }, - "endPoint": { - "x": 1213.78533, - "y": -2652.058252 - } - } - }, - { - "id": "18bc6c68-a5bd-588f-9bf4-c6fe53792378", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.78533, - "y": -2652.058252 - }, - "endPoint": { - "x": 1213.637176, - "y": -2652.153054 - } - } - }, - { - "id": "1a8c5c1d-d914-5736-8b16-fee3982c0cb7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.637176, - "y": -2652.153054 - }, - "endPoint": { - "x": 1213.595624, - "y": -2652.111599 - } - } - }, - { - "id": "665c4054-20a2-54de-a4a0-184c32074f52", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.595624, - "y": -2652.111599 - }, - "endPoint": { - "x": 1213.607525, - "y": -2651.999015 - } - } - }, - { - "id": "8b083cb6-3053-59c9-bb46-f0ceb50d31e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.607525, - "y": -2651.999015 - }, - "endPoint": { - "x": 1213.494871, - "y": -2651.880485 - } - } - }, - { - "id": "cfc81b13-320a-5d78-b730-5332eaa2631c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.494871, - "y": -2651.880485 - }, - "endPoint": { - "x": 1213.423668, - "y": -2651.827194 - } - } - }, - { - "id": "8f23d20c-a0a0-51d5-9da9-83050f53ef06", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.423668, - "y": -2651.827194 - }, - "endPoint": { - "x": 1213.388066, - "y": -2651.79163 - } - } - }, - { - "id": "811c98d1-3b81-5b58-b5d6-1cc99ca433b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.388066, - "y": -2651.79163 - }, - "endPoint": { - "x": 1213.269564, - "y": -2651.767957 - } - } - }, - { - "id": "08de03d0-4580-5c75-98c4-815035fee591", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.269564, - "y": -2651.767957 - }, - "endPoint": { - "x": 1213.145008, - "y": -2651.602026 - } - } - }, - { - "id": "0842e971-e73f-5ef8-9f14-53910899d5b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.145008, - "y": -2651.602026 - }, - "endPoint": { - "x": 1213.050104, - "y": -2651.483552 - } - } - }, - { - "id": "efd9954f-a284-5c22-a717-b708fc9a8769", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.050104, - "y": -2651.483552 - }, - "endPoint": { - "x": 1213.026404, - "y": -2651.270221 - } - } - }, - { - "id": "adbd3485-faad-53ed-9335-658bc41c79ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.026404, - "y": -2651.270221 - }, - "endPoint": { - "x": 1213.085706, - "y": -2651.133964 - } - } - }, - { - "id": "429d96a5-3d51-52ea-8c86-b98103f6f08d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.085706, - "y": -2651.133964 - }, - "endPoint": { - "x": 1213.032354, - "y": -2650.950307 - } - } - }, - { - "id": "4ee682e6-ee8f-5042-828e-4845e816de85", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.032354, - "y": -2650.950307 - }, - "endPoint": { - "x": 1213.079755, - "y": -2650.68963 - } - } - }, - { - "id": "b2243814-4c9e-52f6-ae93-26dd846fc93f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.079755, - "y": -2650.68963 - }, - "endPoint": { - "x": 1213.293264, - "y": -2650.511863 - } - } - }, - { - "id": "97be4761-8b51-597a-a51a-e0f4c6b5f122", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.293264, - "y": -2650.511863 - }, - "endPoint": { - "x": 1213.512621, - "y": -2650.434844 - } - } - }, - { - "id": "91b47d16-384c-5436-87fd-354e26ab504e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.512621, - "y": -2650.434844 - }, - "endPoint": { - "x": 1213.625275, - "y": -2650.48819 - } - } - }, - { - "id": "76acf282-b463-5213-8f54-803c1eb6fc96", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.625275, - "y": -2650.48819 - }, - "endPoint": { - "x": 1213.601574, - "y": -2650.577046 - } - } - }, - { - "id": "2241a491-b327-530d-bbeb-e68aaac5a092", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.601574, - "y": -2650.577046 - }, - "endPoint": { - "x": 1213.447368, - "y": -2650.68963 - } - } - }, - { - "id": "dce9702a-23c6-557f-9db9-22d44c006bc0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.447368, - "y": -2650.68963 - }, - "endPoint": { - "x": 1213.376267, - "y": -2650.914742 - } - } - }, - { - "id": "d74b6948-2048-525a-bfea-592c8f89c7a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.376267, - "y": -2650.914742 - }, - "endPoint": { - "x": 1213.394016, - "y": -2651.276167 - } - } - }, - { - "id": "45918652-46c0-5c88-a2d1-04792d38acf1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.394016, - "y": -2651.276167 - }, - "endPoint": { - "x": 1213.50667, - "y": -2651.447988 - } - } - }, - { - "id": "3b5109e1-cabe-5115-badf-c930590fc487", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.50667, - "y": -2651.447988 - }, - "endPoint": { - "x": 1213.761629, - "y": -2651.530953 - } - } - }, - { - "id": "2457f78d-c539-5672-91f3-340cd5b3d25b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.761629, - "y": -2651.530953 - }, - "endPoint": { - "x": 1214.03444, - "y": -2651.519116 - } - } - }, - { - "id": "4876fec4-42de-5e82-916f-0512f16fb51f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.03444, - "y": -2651.519116 - }, - "endPoint": { - "x": 1214.170794, - "y": -2651.382805 - } - } - }, - { - "id": "aae0f56a-f6d3-547a-ab7b-88bcefa0072b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.170794, - "y": -2651.382805 - }, - "endPoint": { - "x": 1214.325001, - "y": -2651.299894 - } - } - }, - { - "id": "607f1e41-316f-525a-b0e4-7dc609643f85", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.325001, - "y": -2651.299894 - }, - "endPoint": { - "x": 1214.443503, - "y": -2651.258384 - } - } - }, - { - "id": "b073db9e-7a55-5d67-8ad5-15849105a3b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.443503, - "y": -2651.258384 - }, - "endPoint": { - "x": 1214.473154, - "y": -2651.104346 - } - } - }, - { - "id": "bb7edd0c-d02f-5c83-8a72-bad30356e94a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.473154, - "y": -2651.104346 - }, - "endPoint": { - "x": 1214.473154, - "y": -2650.89696 - } - } - }, - { - "id": "8bfe6419-4664-5185-9052-313ce58abd8c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.473154, - "y": -2650.89696 - }, - "endPoint": { - "x": 1214.413852, - "y": -2650.802159 - } - } - }, - { - "id": "862ca450-6c95-5d1e-95fb-46a2cdcec4bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.413852, - "y": -2650.802159 - }, - "endPoint": { - "x": 1214.277498, - "y": -2650.701466 - } - } - }, - { - "id": "60de0e06-a0c2-52c2-a87b-4973b1053262", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.277498, - "y": -2650.701466 - }, - "endPoint": { - "x": 1214.158893, - "y": -2650.56521 - } - } - }, - { - "id": "4e4bedeb-fe5e-5ba6-82b4-72cdd1e0ec04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.158893, - "y": -2650.56521 - }, - "endPoint": { - "x": 1214.194495, - "y": -2650.482244 - } - } - }, - { - "id": "6dbacdcb-1058-52d3-868c-0afcd3671e8f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.194495, - "y": -2650.482244 - }, - "endPoint": { - "x": 1214.289399, - "y": -2650.440789 - } - } - }, - { - "id": "60b01e6c-e41b-5bd7-849e-e9ea1f22c2db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.289399, - "y": -2650.440789 - }, - "endPoint": { - "x": 1214.491006, - "y": -2650.423007 - } - } - }, - { - "id": "6f45c8b4-645a-5af3-a4d8-fceadd051685", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.491006, - "y": -2650.423007 - }, - "endPoint": { - "x": 1214.585808, - "y": -2650.369661 - } - } - }, - { - "id": "d3ad4ad0-44f4-5c2a-a192-592dc3b2ba38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.585808, - "y": -2650.369661 - }, - "endPoint": { - "x": 1214.704413, - "y": -2650.334151 - } - } - }, - { - "id": "75000205-b9ea-5f93-8c9f-7b21342e53ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.704413, - "y": -2650.334151 - }, - "endPoint": { - "x": 1214.793366, - "y": -2650.393389 - } - } - }, - { - "id": "505b03b7-597e-57a7-94e2-0fcd8986850f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.793366, - "y": -2650.393389 - }, - "endPoint": { - "x": 1214.894221, - "y": -2650.334151 - } - } - }, - { - "id": "615cd886-7546-5619-8c7c-d1d094638303", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.894221, - "y": -2650.334151 - }, - "endPoint": { - "x": 1215.042374, - "y": -2650.36377 - } - } - }, - { - "id": "d72715a5-a8e1-5b54-8466-86ce9e6d5f78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.042374, - "y": -2650.36377 - }, - "endPoint": { - "x": 1215.273633, - "y": -2650.428898 - } - } - }, - { - "id": "02c2b92b-be3c-5b29-8d50-82c13a23277f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.273633, - "y": -2650.428898 - }, - "endPoint": { - "x": 1215.564193, - "y": -2650.423007 - } - } - }, - { - "id": "edd856f4-c51c-580a-b00e-6c0246225274", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.564193, - "y": -2650.423007 - }, - "endPoint": { - "x": 1215.872504, - "y": -2650.393389 - } - } - }, - { - "id": "088ed174-1008-5c62-a59b-4b706d01fcf0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.872504, - "y": -2650.393389 - }, - "endPoint": { - "x": 1216.00301, - "y": -2650.304478 - } - } - }, - { - "id": "5b7cdb2d-01bc-5d9d-a0c3-16765f94ec2c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.00301, - "y": -2650.304478 - }, - "endPoint": { - "x": 1216.127463, - "y": -2650.263023 - } - } - }, - { - "id": "ff329673-1196-5f86-a037-907e3100b68e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.127463, - "y": -2650.263023 - }, - "endPoint": { - "x": 1216.281669, - "y": -2650.233404 - } - } - }, - { - "id": "b9fa9cbd-7fd9-5df7-95ab-2feb851debc1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.281669, - "y": -2650.233404 - }, - "endPoint": { - "x": 1216.340971, - "y": -2650.073419 - } - } - }, - { - "id": "175cfdb7-b402-5260-9c4a-d2ae03450140", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.340971, - "y": -2650.073419 - }, - "endPoint": { - "x": 1216.346922, - "y": -2649.931217 - } - } - }, - { - "id": "4e7ac0f6-c897-537c-8d0f-313b28ae4a89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.346922, - "y": -2649.931217 - }, - "endPoint": { - "x": 1216.286902, - "y": -2649.904571 - } - } - }, - { - "id": "258e779b-5682-5285-ab0e-c701555fed11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.286902, - "y": -2649.904571 - }, - "endPoint": { - "x": 1216.197948, - "y": -2649.815715 - } - } - }, - { - "id": "c52324ad-76f8-582a-92df-20418fe29134", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.197948, - "y": -2649.815715 - }, - "endPoint": { - "x": 1216.1684, - "y": -2649.661677 - } - } - }, - { - "id": "144d3e0d-8fa7-5352-9cbb-85ed7157bdf5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.1684, - "y": -2649.661677 - }, - "endPoint": { - "x": 1216.073495, - "y": -2649.602384 - } - } - }, - { - "id": "aaf5663b-7280-545f-b322-2a11d928b1cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.073495, - "y": -2649.602384 - }, - "endPoint": { - "x": 1215.937141, - "y": -2649.632003 - } - } - }, - { - "id": "56986384-9e26-5824-bb22-3c5e8fc075a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.937141, - "y": -2649.632003 - }, - "endPoint": { - "x": 1215.747333, - "y": -2649.637949 - } - } - }, - { - "id": "9d4dac2f-240a-52f6-93da-358bb1dbd11f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.747333, - "y": -2649.637949 - }, - "endPoint": { - "x": 1215.516074, - "y": -2649.549093 - } - } - }, - { - "id": "a6ddff42-b686-5f43-9836-e3d081f8f226", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.516074, - "y": -2649.549093 - }, - "endPoint": { - "x": 1215.344118, - "y": -2649.566875 - } - } - }, - { - "id": "6d2c1a51-1a7f-585b-b424-5de66cbfcba9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.344118, - "y": -2649.566875 - }, - "endPoint": { - "x": 1215.284816, - "y": -2649.649785 - } - } - }, - { - "id": "6ea3dc73-fd23-5a92-b62f-ce5205cc6415", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.284816, - "y": -2649.649785 - }, - "endPoint": { - "x": 1215.089159, - "y": -2649.596494 - } - } - }, - { - "id": "b35f9805-3621-5038-850c-5e78eaa2713f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.089159, - "y": -2649.596494 - }, - "endPoint": { - "x": 1214.875753, - "y": -2649.549093 - } - } - }, - { - "id": "1a548b16-2038-50cf-b91b-55ffec9e791f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.875753, - "y": -2649.549093 - }, - "endPoint": { - "x": 1214.632593, - "y": -2649.554983 - } - } - }, - { - "id": "0591dbbd-e604-598d-bc4c-76277b294c96", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.632593, - "y": -2649.554983 - }, - "endPoint": { - "x": 1214.425138, - "y": -2649.602384 - } - } - }, - { - "id": "36db050f-e796-5197-90b4-845ae370f23d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.425138, - "y": -2649.602384 - }, - "endPoint": { - "x": 1214.116725, - "y": -2649.661677 - } - } - }, - { - "id": "b5d7c0de-e41b-5c9c-8261-f16a115ef3a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.116725, - "y": -2649.661677 - }, - "endPoint": { - "x": 1213.968572, - "y": -2649.572766 - } - } - }, - { - "id": "d6d8997c-8aec-5410-a764-ac185d9e2bba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.968572, - "y": -2649.572766 - }, - "endPoint": { - "x": 1213.761014, - "y": -2649.560929 - } - } - }, - { - "id": "01c5da0f-864e-5832-886b-fe7b9e26e38c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.761014, - "y": -2649.560929 - }, - "endPoint": { - "x": 1213.559406, - "y": -2649.632003 - } - } - }, - { - "id": "4bdf5e06-b21a-530f-9ae1-7592da14184b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.559406, - "y": -2649.632003 - }, - "endPoint": { - "x": 1213.500104, - "y": -2649.786097 - } - } - }, - { - "id": "4a146efa-393d-56ee-8ebd-f8b78bdf572f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.500104, - "y": -2649.786097 - }, - "endPoint": { - "x": 1212.978285, - "y": -2649.803824 - } - } - }, - { - "id": "1fe3fed2-604e-544a-8fd1-d25a3cd26b45", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.978285, - "y": -2649.803824 - }, - "endPoint": { - "x": 1212.770727, - "y": -2649.768315 - } - } - }, - { - "id": "84ffba3a-4977-5050-a601-624e8f1e88a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.770727, - "y": -2649.768315 - }, - "endPoint": { - "x": 1212.626267, - "y": -2649.737485 - } - } - }, - { - "id": "864569c2-eb54-589e-9ef1-f293ba57b158", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.626267, - "y": -2649.737485 - }, - "endPoint": { - "x": 1212.410193, - "y": -2649.661622 - } - } - }, - { - "id": "d846dc93-f0a4-5a68-942d-a803e2568b7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.410193, - "y": -2649.661622 - }, - "endPoint": { - "x": 1212.04217, - "y": -2649.626608 - } - } - }, - { - "id": "7da62f3c-1b10-584d-bb37-6a704f9ce4c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.04217, - "y": -2649.626608 - }, - "endPoint": { - "x": 1211.90202, - "y": -2649.766663 - } - } - }, - { - "id": "769fe5a1-6014-5d5a-84ce-6fd3ab704d1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.90202, - "y": -2649.766663 - }, - "endPoint": { - "x": 1211.849489, - "y": -2649.725814 - } - } - }, - { - "id": "8d180d12-1006-5b74-ba14-f41a44d34e5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.849489, - "y": -2649.725814 - }, - "endPoint": { - "x": 1211.738477, - "y": -2649.725814 - } - } - }, - { - "id": "b10538a8-dbd6-5eb6-852e-6548522f6f06", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.738477, - "y": -2649.725814 - }, - "endPoint": { - "x": 1211.563237, - "y": -2649.801677 - } - } - }, - { - "id": "a0b0831e-6aa8-5788-8d0a-6aa588d5e31b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.563237, - "y": -2649.801677 - }, - "endPoint": { - "x": 1211.452328, - "y": -2649.78417 - } - } - }, - { - "id": "af680a08-f5de-5792-9984-49863e982f3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.452328, - "y": -2649.78417 - }, - "endPoint": { - "x": 1211.417239, - "y": -2649.719978 - } - } - }, - { - "id": "ce2eeff9-6a5a-573b-8b4b-f3ef8899e01b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.417239, - "y": -2649.719978 - }, - "endPoint": { - "x": 1211.281398, - "y": -2649.749046 - } - } - }, - { - "id": "c77c381e-d23d-54f8-a073-684af8f19e8b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.281398, - "y": -2649.749046 - }, - "endPoint": { - "x": 1210.984476, - "y": -2649.714968 - } - } - }, - { - "id": "0b9a9d4a-6805-586b-8bb6-2928678beab6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.984476, - "y": -2649.714968 - }, - "endPoint": { - "x": 1210.511699, - "y": -2649.866089 - } - } - }, - { - "id": "4a1224b7-75ec-53c2-9c89-adefdced5925", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.511699, - "y": -2649.866089 - }, - "endPoint": { - "x": 1210.474353, - "y": -2649.955771 - } - } - }, - { - "id": "67fe61ff-3e46-52f4-8139-3930da99c218", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.474353, - "y": -2649.955771 - }, - "endPoint": { - "x": 1210.40951, - "y": -2650.068575 - } - } - }, - { - "id": "c5244219-372b-5767-aee4-4ce26ffabc6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.40951, - "y": -2650.068575 - }, - "endPoint": { - "x": 1210.251508, - "y": -2650.093954 - } - } - }, - { - "id": "753cd7ad-5513-5bb4-b56c-9b7a48b19c6b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.251508, - "y": -2650.093954 - }, - "endPoint": { - "x": 1210.115974, - "y": -2650.00653 - } - } - }, - { - "id": "735aa182-f1b9-5e50-b94b-8bdd40007706", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.115974, - "y": -2650.00653 - }, - "endPoint": { - "x": 1210.090632, - "y": -2649.851445 - } - } - }, - { - "id": "b0317424-1dbb-502e-935e-54a493ff1dee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.090632, - "y": -2649.851445 - }, - "endPoint": { - "x": 1210.101918, - "y": -2649.671036 - } - } - }, - { - "id": "ab1f9190-55d9-500c-a55e-26a3dd9a8435", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.101918, - "y": -2649.671036 - }, - "endPoint": { - "x": 1210.203491, - "y": -2649.465192 - } - } - }, - { - "id": "46568a7c-a309-5b0d-b220-542969b7ea83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.203491, - "y": -2649.465192 - }, - "endPoint": { - "x": 1210.338922, - "y": -2649.327008 - } - } - }, - { - "id": "1e1fa377-9f6e-5bd6-8f6d-7408dfeb293e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.338922, - "y": -2649.327008 - }, - "endPoint": { - "x": 1210.46871, - "y": -2649.259348 - } - } - }, - { - "id": "71d63af5-c99f-58ce-bba8-823b56ec384d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.46871, - "y": -2649.259348 - }, - "endPoint": { - "x": 1210.669086, - "y": -2649.298821 - } - } - }, - { - "id": "02c818b2-659a-568b-a76b-42292817f8d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.669086, - "y": -2649.298821 - }, - "endPoint": { - "x": 1210.798874, - "y": -2649.363674 - } - } - }, - { - "id": "196794e0-4c19-579b-8b72-ff37e291450e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.798874, - "y": -2649.363674 - }, - "endPoint": { - "x": 1211.112109, - "y": -2649.318585 - } - } - }, - { - "id": "123c6e4d-9213-5bfe-8b66-ce1b01d15f03", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.112109, - "y": -2649.318585 - }, - "endPoint": { - "x": 1211.385741, - "y": -2649.321393 - } - } - }, - { - "id": "bb1d58ef-df0a-5d5a-acea-052c3664ac97", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.385741, - "y": -2649.321393 - }, - "endPoint": { - "x": 1211.663272, - "y": -2649.315117 - } - } - }, - { - "id": "504b6797-25df-548f-9993-7d580e3ead09", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.663272, - "y": -2649.315117 - }, - "endPoint": { - "x": 1212.092136, - "y": -2649.306639 - } - } - }, - { - "id": "96fa8e1a-4b94-5eb9-af19-70deb3e7127f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.092136, - "y": -2649.306639 - }, - "endPoint": { - "x": 1212.834236, - "y": -2649.26155 - } - } - }, - { - "id": "38b2f8b0-1b38-5388-b515-548a1067fab6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.834236, - "y": -2649.26155 - }, - "endPoint": { - "x": 1213.451267, - "y": -2649.295518 - } - } - }, - { - "id": "9341baad-e5b2-5562-8ea6-6171fb3b0f2a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.451267, - "y": -2649.295518 - }, - "endPoint": { - "x": 1214.300582, - "y": -2649.346277 - } - } - }, - { - "id": "949b1362-1546-55c4-8578-cc4cb2d14132", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.300582, - "y": -2649.346277 - }, - "endPoint": { - "x": 1214.777463, - "y": -2649.303996 - } - } - }, - { - "id": "98c177e9-30bb-56eb-9c9f-72b2d81e7829", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.777463, - "y": -2649.303996 - }, - "endPoint": { - "x": 1215.262757, - "y": -2649.256045 - } - } - }, - { - "id": "4b06b302-8c04-5166-9a9d-3af52394c225", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.262757, - "y": -2649.256045 - }, - "endPoint": { - "x": 1215.563886, - "y": -2649.264303 - } - } - }, - { - "id": "675b71ba-7272-518e-9e88-2d137ee935ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.563886, - "y": -2649.264303 - }, - "endPoint": { - "x": 1215.961765, - "y": -2649.086701 - } - } - }, - { - "id": "f99b96ec-84a8-5544-b19a-ad34570281ff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.961765, - "y": -2649.086701 - }, - "endPoint": { - "x": 1216.212517, - "y": -2648.865442 - } - } - }, - { - "id": "5a13eb50-d626-5424-b68f-187578eacda0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.212517, - "y": -2648.865442 - }, - "endPoint": { - "x": 1216.291519, - "y": -2648.701879 - } - } - }, - { - "id": "727154b4-08d9-5b59-b8ce-b3751e6a2200", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.291519, - "y": -2648.701879 - }, - "endPoint": { - "x": 1216.280233, - "y": -2648.501706 - } - } - }, - { - "id": "78868950-ea1b-5dba-bccd-6ecaa9615eff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.280233, - "y": -2648.501706 - }, - "endPoint": { - "x": 1216.373393, - "y": -2648.369193 - } - } - }, - { - "id": "112f54cd-470e-57b1-8642-21c2bb4f7303", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.373393, - "y": -2648.369193 - }, - "endPoint": { - "x": 1216.311218, - "y": -2648.053408 - } - } - }, - { - "id": "e7cc8f17-c5e4-55ba-97aa-3bac12964b99", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.311218, - "y": -2648.053408 - }, - "endPoint": { - "x": 1216.229138, - "y": -2647.9166 - } - } - }, - { - "id": "17d315f5-8827-544c-b9d3-1435f0c178b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.229138, - "y": -2647.9166 - }, - "endPoint": { - "x": 1216.234781, - "y": -2647.795373 - } - } - }, - { - "id": "19ef856d-64d6-522e-abfa-6d8e7973b3ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.234781, - "y": -2647.795373 - }, - "endPoint": { - "x": 1216.09935, - "y": -2647.648767 - } - } - }, - { - "id": "f80fb00b-c7e4-5719-8e2c-bb48b98742cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.09935, - "y": -2647.648767 - }, - "endPoint": { - "x": 1215.90749, - "y": -2647.479588 - } - } - }, - { - "id": "0178d4be-9c8a-50f8-98b3-004d82e2ff42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.90749, - "y": -2647.479588 - }, - "endPoint": { - "x": 1215.678899, - "y": -2647.406257 - } - } - }, - { - "id": "54fb9382-9bf9-5c44-b302-ba718e0e6827", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.678899, - "y": -2647.406257 - }, - "endPoint": { - "x": 1215.204891, - "y": -2647.383685 - } - } - }, - { - "id": "60a22bee-ce1d-5472-9d97-2127cd4b0b2a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.204891, - "y": -2647.383685 - }, - "endPoint": { - "x": 1215.123017, - "y": -2647.392164 - } - } - }, - { - "id": "16178d45-4cbe-5d15-8c50-ae681704cc39", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.123017, - "y": -2647.392164 - }, - "endPoint": { - "x": 1215.066588, - "y": -2647.510583 - } - } - }, - { - "id": "1872f84f-3f70-5fdf-ace3-11b8a589f072", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.066588, - "y": -2647.510583 - }, - "endPoint": { - "x": 1215.027087, - "y": -2647.555672 - } - } - }, - { - "id": "c076d6a6-fbb3-5a8a-b299-d164cdbc79fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.027087, - "y": -2647.555672 - }, - "endPoint": { - "x": 1214.891656, - "y": -2647.535963 - } - } - }, - { - "id": "b49ae791-7e8e-576a-b607-0af0c2dfc4ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.891656, - "y": -2647.535963 - }, - "endPoint": { - "x": 1214.756225, - "y": -2647.431637 - } - } - }, - { - "id": "a0233ffa-f19e-58d8-8865-e288b5fc1d20", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.756225, - "y": -2647.431637 - }, - "endPoint": { - "x": 1214.442067, - "y": -2647.417268 - } - } - }, - { - "id": "195fbc0a-9602-5f60-ba2f-58f097366ea3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.442067, - "y": -2647.417268 - }, - "endPoint": { - "x": 1214.185364, - "y": -2647.41446 - } - } - }, - { - "id": "fb701e45-b5f4-5c39-b3cd-9f31bfdb6aa6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.185364, - "y": -2647.41446 - }, - "endPoint": { - "x": 1214.134577, - "y": -2647.341129 - } - } - }, - { - "id": "4c4ca059-c4b0-5690-b030-e76deefc7a14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.134577, - "y": -2647.341129 - }, - "endPoint": { - "x": 1214.114775, - "y": -2647.203001 - } - } - }, - { - "id": "e30000ef-e471-566b-bc77-5021bf0ac412", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.114775, - "y": -2647.203001 - }, - "endPoint": { - "x": 1214.241793, - "y": -2647.124055 - } - } - }, - { - "id": "5afddf65-d50c-5c07-a36b-751be1a67426", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.241793, - "y": -2647.124055 - }, - "endPoint": { - "x": 1214.48444, - "y": -2647.070488 - } - } - }, - { - "id": "f8b74680-9249-5bd8-8225-0c1b4221101b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.48444, - "y": -2647.070488 - }, - "endPoint": { - "x": 1214.715801, - "y": -2647.059202 - } - } - }, - { - "id": "5aa6c525-2d36-5b18-b471-64c70050ac2c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.715801, - "y": -2647.059202 - }, - "endPoint": { - "x": 1214.769768, - "y": -2647.004149 - } - } - }, - { - "id": "adbfe651-f8cd-564a-b7dd-2affcddfd32c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.769768, - "y": -2647.004149 - }, - "endPoint": { - "x": 1214.860055, - "y": -2646.888537 - } - } - }, - { - "id": "40772db2-7d17-5b77-8676-df4bd8142cce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.860055, - "y": -2646.888537 - }, - "endPoint": { - "x": 1214.919358, - "y": -2646.837778 - } - } - }, - { - "id": "61cb8cc7-f077-5560-8afb-677226ca3e03", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.919358, - "y": -2646.837778 - }, - "endPoint": { - "x": 1215.034987, - "y": -2646.956197 - } - } - }, - { - "id": "91c0e5e1-7bb7-5312-8971-4a5365294c7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.034987, - "y": -2646.956197 - }, - "endPoint": { - "x": 1215.153489, - "y": -2647.032336 - } - } - }, - { - "id": "dfdd636c-ce72-532d-9e9f-968649bb3775", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.153489, - "y": -2647.032336 - }, - "endPoint": { - "x": 1215.317135, - "y": -2647.085903 - } - } - }, - { - "id": "7a04414d-3124-536c-90bc-e85a4af572c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.317135, - "y": -2647.085903 - }, - "endPoint": { - "x": 1215.492169, - "y": -2647.080232 - } - } - }, - { - "id": "291dd053-90dd-54f0-8815-be08297b879b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.492169, - "y": -2647.080232 - }, - "endPoint": { - "x": 1215.647299, - "y": -2647.052045 - } - } - }, - { - "id": "45302aad-78aa-503d-bc24-983b732d86de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.647299, - "y": -2647.052045 - }, - "endPoint": { - "x": 1215.715014, - "y": -2647.08871 - } - } - }, - { - "id": "18f71025-5563-52c9-a152-57531091abff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.715014, - "y": -2647.08871 - }, - "endPoint": { - "x": 1216.039535, - "y": -2646.959005 - } - } - }, - { - "id": "ef3773e9-4167-5e33-829e-c0dc69036e44", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.039535, - "y": -2646.959005 - }, - "endPoint": { - "x": 1216.253967, - "y": -2646.792689 - } - } - }, - { - "id": "335c27db-e28c-5800-a029-5682bc5089dc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.253967, - "y": -2646.792689 - }, - "endPoint": { - "x": 1216.358413, - "y": -2646.657314 - } - } - }, - { - "id": "efd7edc4-9ffc-5061-8cc3-90d939d0a815", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.358413, - "y": -2646.657314 - }, - "endPoint": { - "x": 1216.386628, - "y": -2646.555851 - } - } - }, - { - "id": "3eac6b9c-d98d-56cd-89e4-1546941be075", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.386628, - "y": -2646.555851 - }, - "endPoint": { - "x": 1216.403557, - "y": -2646.465618 - } - } - }, - { - "id": "da6a7846-42bf-5421-8f16-c8e129fe194a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.403557, - "y": -2646.465618 - }, - "endPoint": { - "x": 1216.402941, - "y": -2646.414474 - } - } - } - ] - }, - { - "id": "7aa956ef-7b7a-56d2-926b-1f5c95b49853", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "75988cf6-30ea-56aa-9b37-c5815377a4f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.43769, - "y": -2647.568829 - }, - "endPoint": { - "x": 1212.423429, - "y": -2647.199202 - } - } - }, - { - "id": "6b7cd14a-86ac-55ed-97a3-7e9d85d96ed9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.423429, - "y": -2647.199202 - }, - "endPoint": { - "x": 1212.123634, - "y": -2647.174208 - } - } - }, - { - "id": "bb8b928a-a885-57b1-8937-5402f24ffa6c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.123634, - "y": -2647.174208 - }, - "endPoint": { - "x": 1211.683997, - "y": -2647.1812 - } - } - }, - { - "id": "a7c5d7cb-ff26-54ec-a7e3-fa98b7324449", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.683997, - "y": -2647.1812 - }, - "endPoint": { - "x": 1211.279346, - "y": -2647.198597 - } - } - }, - { - "id": "7ca7ad7f-4538-5607-8e60-2f5f1fd4a99c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.279346, - "y": -2647.198597 - }, - "endPoint": { - "x": 1210.89583, - "y": -2647.203772 - } - } - }, - { - "id": "ca938fcf-3be9-53f2-a740-c8ecec2a93ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.89583, - "y": -2647.203772 - }, - "endPoint": { - "x": 1210.689914, - "y": -2647.155655 - } - } - }, - { - "id": "69c0a24e-252f-5bfe-9933-a633a2c9fbc8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.689914, - "y": -2647.155655 - }, - "endPoint": { - "x": 1210.554175, - "y": -2647.138148 - } - } - }, - { - "id": "4cfdcd73-4e1e-5050-8514-e683a1bab570", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.554175, - "y": -2647.138148 - }, - "endPoint": { - "x": 1210.427157, - "y": -2647.146902 - } - } - }, - { - "id": "8c2d7f2f-c63a-5314-80cc-f0a58c087c11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.427157, - "y": -2647.146902 - }, - "endPoint": { - "x": 1210.357082, - "y": -2647.225683 - } - } - }, - { - "id": "8527fffd-e396-54f0-b866-a5343276bdae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.357082, - "y": -2647.225683 - }, - "endPoint": { - "x": 1210.348361, - "y": -2647.308813 - } - } - }, - { - "id": "20249c7e-6fac-543c-b834-ceacd37c76ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.348361, - "y": -2647.308813 - }, - "endPoint": { - "x": 1210.265153, - "y": -2647.361334 - } - } - }, - { - "id": "dd05032e-4f43-5945-8236-2c4ab8cc6447", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.265153, - "y": -2647.361334 - }, - "endPoint": { - "x": 1210.21252, - "y": -2647.440115 - } - } - }, - { - "id": "b104805c-4ee0-5cb9-91ee-02e93f20d8c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.21252, - "y": -2647.440115 - }, - "endPoint": { - "x": 1210.278286, - "y": -2647.632636 - } - } - }, - { - "id": "061b9a1a-29e3-5e11-969a-017889f5be95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.278286, - "y": -2647.632636 - }, - "endPoint": { - "x": 1210.400892, - "y": -2647.702664 - } - } - }, - { - "id": "13dc69e7-f45a-570f-8df9-ddf379b12d5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.400892, - "y": -2647.702664 - }, - "endPoint": { - "x": 1210.62425, - "y": -2647.733328 - } - } - }, - { - "id": "a6c4c705-3d98-5ff8-bb28-e4dddcf38296", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.62425, - "y": -2647.733328 - }, - "endPoint": { - "x": 1210.795078, - "y": -2647.680808 - } - } - }, - { - "id": "c38e56a5-2fd9-5944-add9-204ec501327d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.795078, - "y": -2647.680808 - }, - "endPoint": { - "x": 1210.913272, - "y": -2647.672054 - } - } - }, - { - "id": "c310a4dc-5cba-57e0-a0c6-8844906c5e85", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.913272, - "y": -2647.672054 - }, - "endPoint": { - "x": 1211.04029, - "y": -2647.571417 - } - } - }, - { - "id": "529f9959-8a56-5a7f-bc68-b114b95e2896", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.04029, - "y": -2647.571417 - }, - "endPoint": { - "x": 1211.206808, - "y": -2647.545157 - } - } - }, - { - "id": "bfc1635e-24ae-55c6-85a6-4c304343c065", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.206808, - "y": -2647.545157 - }, - "endPoint": { - "x": 1211.403901, - "y": -2647.575766 - } - } - }, - { - "id": "ff4762a7-28b8-5fb5-a91e-0ff5f0a2a2d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.403901, - "y": -2647.575766 - }, - "endPoint": { - "x": 1211.76741, - "y": -2647.58452 - } - } - }, - { - "id": "4db534ef-a1f3-5490-aa87-b3794ff95c31", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.76741, - "y": -2647.58452 - }, - "endPoint": { - "x": 1211.960091, - "y": -2647.575766 - } - } - }, - { - "id": "27b064eb-4035-5fc5-b292-9ee6924bb83e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.960091, - "y": -2647.575766 - }, - "endPoint": { - "x": 1212.27979, - "y": -2647.575766 - } - } - }, - { - "id": "faadf692-0eb3-5afe-aba7-0df117263915", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.27979, - "y": -2647.575766 - }, - "endPoint": { - "x": 1212.43769, - "y": -2647.568829 - } - } - } - ] - }, - { - "id": "3cb1f4d6-aa86-55f8-8b6c-0eb01486f7f4", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "7a858c6d-006f-5b2d-b595-5b30426adb98", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.977635, - "y": -2648.12283 - }, - "endPoint": { - "x": 1212.196582, - "y": -2648.144686 - } - } - }, - { - "id": "ef63470c-9e46-5269-a300-01f7d5701394", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.196582, - "y": -2648.144686 - }, - "endPoint": { - "x": 1212.336732, - "y": -2648.214713 - } - } - }, - { - "id": "4cf7b245-11af-5443-9d3d-fce7df3b2f65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.336732, - "y": -2648.214713 - }, - "endPoint": { - "x": 1212.37613, - "y": -2648.341611 - } - } - }, - { - "id": "8ac172d4-5a72-52c0-b039-3cf81cf87b11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.37613, - "y": -2648.341611 - }, - "endPoint": { - "x": 1212.297334, - "y": -2648.446653 - } - } - }, - { - "id": "1909637c-d4ec-5dc9-b9ed-bb96902224a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.297334, - "y": -2648.446653 - }, - "endPoint": { - "x": 1212.214126, - "y": -2648.494769 - } - } - }, - { - "id": "9740d9f9-0797-561b-8065-6825d4a18336", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.214126, - "y": -2648.494769 - }, - "endPoint": { - "x": 1212.043299, - "y": -2648.556043 - } - } - }, - { - "id": "52f441bc-da24-5fb2-90d1-15235709b02d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.043299, - "y": -2648.556043 - }, - "endPoint": { - "x": 1211.754277, - "y": -2648.54729 - } - } - }, - { - "id": "c5cc1a34-5cab-5fbf-b7a5-4259ae0995fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.754277, - "y": -2648.54729 - }, - "endPoint": { - "x": 1211.63598, - "y": -2648.363522 - } - } - }, - { - "id": "3cdb1e4b-ae7e-5ec4-ba4f-0e43353fd19d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.63598, - "y": -2648.363522 - }, - "endPoint": { - "x": 1211.710467, - "y": -2648.26283 - } - } - }, - { - "id": "67dc1599-d4a0-51b3-8378-77ffb84cbb8a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.710467, - "y": -2648.26283 - }, - "endPoint": { - "x": 1211.81994, - "y": -2648.140337 - } - } - }, - { - "id": "e8c82c26-85e3-5349-ad2f-3cf1f8aee40e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.81994, - "y": -2648.140337 - }, - "endPoint": { - "x": 1211.977635, - "y": -2648.12283 - } - } - } - ] - }, - { - "id": "41af1da7-5e77-5936-a6fa-6f5417b6788f", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "9bb63c83-0529-58b6-b83e-3c02dccd8ead", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.25797, - "y": -2648.053518 - }, - "endPoint": { - "x": 1213.21416, - "y": -2648.044764 - } - } - }, - { - "id": "ccbedf6d-3a21-5d67-8585-f4ccb7f09826", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.21416, - "y": -2648.044764 - }, - "endPoint": { - "x": 1213.091554, - "y": -2648.127895 - } - } - }, - { - "id": "15cf85cf-2569-5ad0-90dd-f7512a5f6863", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.091554, - "y": -2648.127895 - }, - "endPoint": { - "x": 1213.030302, - "y": -2648.281108 - } - } - }, - { - "id": "8e1c9514-2db7-57ff-9009-91b545755670", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.030302, - "y": -2648.281108 - }, - "endPoint": { - "x": 1213.078421, - "y": -2648.447368 - } - } - }, - { - "id": "2554d594-b102-54d8-a377-8d50ccf101ff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.078421, - "y": -2648.447368 - }, - "endPoint": { - "x": 1213.275514, - "y": -2648.548061 - } - } - }, - { - "id": "fa34ba4c-f8d8-5ad5-ab8e-811554d4cacd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.275514, - "y": -2648.548061 - }, - "endPoint": { - "x": 1213.468196, - "y": -2648.574321 - } - } - }, - { - "id": "c753199f-2b78-566e-9ba6-d74191bf651d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.468196, - "y": -2648.574321 - }, - "endPoint": { - "x": 1213.599625, - "y": -2648.49554 - } - } - }, - { - "id": "59352049-f1d9-5de1-bf37-dc28bf91042e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.599625, - "y": -2648.49554 - }, - "endPoint": { - "x": 1213.691554, - "y": -2648.368587 - } - } - }, - { - "id": "9d9d2c69-5ce0-5829-8b7c-6ad9f69685d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.691554, - "y": -2648.368587 - }, - "endPoint": { - "x": 1213.700377, - "y": -2648.206676 - } - } - }, - { - "id": "188d819e-2598-5e1c-8e12-b66de2e59f01", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.700377, - "y": -2648.206676 - }, - "endPoint": { - "x": 1213.61717, - "y": -2648.018504 - } - } - }, - { - "id": "fb3a900a-d4a0-569d-958e-ad95b5fdd432", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.61717, - "y": -2648.018504 - }, - "endPoint": { - "x": 1213.446342, - "y": -2647.98349 - } - } - }, - { - "id": "f9dcb507-f250-5543-adeb-4f3dd7528923", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.446342, - "y": -2647.98349 - }, - "endPoint": { - "x": 1213.297368, - "y": -2648.00975 - } - } - }, - { - "id": "1ed0d60e-20e2-5b32-a96e-1b6804b7a4b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.297368, - "y": -2648.00975 - }, - "endPoint": { - "x": 1213.25797, - "y": -2648.053518 - } - } - } - ] - }, - { - "id": "ca5b2326-f065-5633-b70b-503c255e3117", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "d8010214-f3bc-5d9c-b6c2-e9df912e5204", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.304789, - "y": -2648.075374 - }, - "endPoint": { - "x": 1214.440528, - "y": -2647.965983 - } - } - }, - { - "id": "9a5af323-e8ab-5129-aefa-aa1e645a4901", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.440528, - "y": -2647.965983 - }, - "endPoint": { - "x": 1214.479926, - "y": -2647.887202 - } - } - }, - { - "id": "0e488a17-04b0-535f-83b7-dbfec1e51f13", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.479926, - "y": -2647.887202 - }, - "endPoint": { - "x": 1214.624488, - "y": -2647.882853 - } - } - }, - { - "id": "d86fa423-1905-5934-9811-4713964c879f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.624488, - "y": -2647.882853 - }, - "endPoint": { - "x": 1214.782183, - "y": -2647.904709 - } - } - }, - { - "id": "19e4bb0d-2fa1-5aa0-960b-1ff2697b0465", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.782183, - "y": -2647.904709 - }, - "endPoint": { - "x": 1214.8697, - "y": -2648.000997 - } - } - }, - { - "id": "80c72ca8-0f1b-537f-bd59-d778b5a13843", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.8697, - "y": -2648.000997 - }, - "endPoint": { - "x": 1214.979276, - "y": -2648.027257 - } - } - }, - { - "id": "a9aaaf66-6525-56f7-9616-4f07f9aa0eff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.979276, - "y": -2648.027257 - }, - "endPoint": { - "x": 1214.992408, - "y": -2648.162908 - } - } - }, - { - "id": "e053b770-7b34-506a-b884-388c91bdc11e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.992408, - "y": -2648.162908 - }, - "endPoint": { - "x": 1215.005541, - "y": -2648.337978 - } - } - }, - { - "id": "a22a038e-ae61-5d75-8a8d-c36ec1d60075", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.005541, - "y": -2648.337978 - }, - "endPoint": { - "x": 1214.91351, - "y": -2648.499889 - } - } - }, - { - "id": "c82d505b-212c-518d-bbae-6ecf94787caf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.91351, - "y": -2648.499889 - }, - "endPoint": { - "x": 1214.804036, - "y": -2648.543656 - } - } - }, - { - "id": "4a3f18bd-c8a6-5e75-ae2a-d4c5b892bc78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.804036, - "y": -2648.543656 - }, - "endPoint": { - "x": 1214.54128, - "y": -2648.534903 - } - } - }, - { - "id": "716c3f08-f615-53d8-82ab-e98ba202444b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.54128, - "y": -2648.534903 - }, - "endPoint": { - "x": 1214.462381, - "y": -2648.460526 - } - } - }, - { - "id": "f36afa44-903a-5d7c-9db0-d7d61a54fcde", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.462381, - "y": -2648.460526 - }, - "endPoint": { - "x": 1214.331054, - "y": -2648.408005 - } - } - }, - { - "id": "097eed2a-aa11-5488-b481-99d104a22eac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.331054, - "y": -2648.408005 - }, - "endPoint": { - "x": 1214.291656, - "y": -2648.298615 - } - } - }, - { - "id": "a0472cde-dc9c-56db-9de1-b4bbc202219f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.291656, - "y": -2648.298615 - }, - "endPoint": { - "x": 1214.287244, - "y": -2648.189169 - } - } - }, - { - "id": "88d3920b-2008-5e1b-ae7d-c7b82c42d6f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.287244, - "y": -2648.189169 - }, - "endPoint": { - "x": 1214.304789, - "y": -2648.075374 - } - } - } - ] - }, - { - "id": "8211d466-69ac-5996-9fd2-21aee51e64ad", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "66f68621-3fc5-50b8-b2d3-b072f9eb506d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.258899, - "y": -2636.387471 - }, - "endPoint": { - "x": 1201.396587, - "y": -2636.693181 - } - } - }, - { - "id": "5e5761d7-b421-5bd9-89b3-daca55ccdf68", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.396587, - "y": -2636.693181 - }, - "endPoint": { - "x": 1201.471381, - "y": -2636.866488 - } - } - }, - { - "id": "60029a91-6500-534e-9f10-ce50ceeef69a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.471381, - "y": -2636.866488 - }, - "endPoint": { - "x": 1201.460916, - "y": -2637.302234 - } - } - }, - { - "id": "1b1a5d37-f042-5946-b170-f791887e8fb7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.460916, - "y": -2637.302234 - }, - "endPoint": { - "x": 1201.424083, - "y": -2637.66977 - } - } - }, - { - "id": "233e0c57-5b70-53c5-be25-45467ef6b6f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.424083, - "y": -2637.66977 - }, - "endPoint": { - "x": 1201.529145, - "y": -2637.906003 - } - } - }, - { - "id": "0b582936-25f8-567e-96e5-bd60616184ff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.529145, - "y": -2637.906003 - }, - "endPoint": { - "x": 1201.902195, - "y": -2637.963754 - } - } - }, - { - "id": "6ad5464e-5132-5106-b5be-6a6482dc7c71", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.902195, - "y": -2637.963754 - }, - "endPoint": { - "x": 1202.322544, - "y": -2638.021504 - } - } - }, - { - "id": "4c4c5ff1-0202-5de1-8b3d-30a0f8cc5307", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.322544, - "y": -2638.021504 - }, - "endPoint": { - "x": 1202.427605, - "y": -2638.095 - } - } - }, - { - "id": "4fdde721-b8f1-5c54-bb62-aafc8eb7b89a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.427605, - "y": -2638.095 - }, - "endPoint": { - "x": 1202.627263, - "y": -2638.158036 - } - } - }, - { - "id": "d4059843-098b-578c-8ab2-258a275c7e52", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.627263, - "y": -2638.158036 - }, - "endPoint": { - "x": 1202.727092, - "y": -2638.03202 - } - } - }, - { - "id": "1e512801-2ec1-5595-a60d-3ede633cb1e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.727092, - "y": -2638.03202 - }, - "endPoint": { - "x": 1202.821689, - "y": -2637.690745 - } - } - }, - { - "id": "6f99ed0d-aabe-50bd-ad9c-6c669248f942", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.821689, - "y": -2637.690745 - }, - "endPoint": { - "x": 1202.984616, - "y": -2637.029226 - } - } - }, - { - "id": "e37e8b61-1a85-59db-b84e-e75e2cf3cbb7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.984616, - "y": -2637.029226 - }, - "endPoint": { - "x": 1203.546757, - "y": -2636.719496 - } - } - }, - { - "id": "05d5b150-2c72-5810-8515-eae8585ea4ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.546757, - "y": -2636.719496 - }, - "endPoint": { - "x": 1204.100895, - "y": -2636.564907 - } - } - }, - { - "id": "0dd2bf28-7c61-58ad-83bd-ece30661657e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.100895, - "y": -2636.564907 - }, - "endPoint": { - "x": 1204.558076, - "y": -2636.517671 - } - } - }, - { - "id": "f323a3c8-e77a-5b86-88be-ff3c16cd4102", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.558076, - "y": -2636.517671 - }, - "endPoint": { - "x": 1205.178083, - "y": -2636.470436 - } - } - }, - { - "id": "297dd29b-80ea-50db-a641-723cde15be85", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.178083, - "y": -2636.470436 - }, - "endPoint": { - "x": 1205.897816, - "y": -2636.512441 - } - } - }, - { - "id": "d40e8192-b936-5017-a7b5-f221e648c76a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.897816, - "y": -2636.512441 - }, - "endPoint": { - "x": 1206.559888, - "y": -2636.774935 - } - } - }, - { - "id": "d0437dcc-6694-546d-942e-2915f7f55061", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.559888, - "y": -2636.774935 - }, - "endPoint": { - "x": 1206.84891, - "y": -2637.105695 - } - } - }, - { - "id": "efaf236d-b787-56ee-b7e5-fe587c7d4037", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.84891, - "y": -2637.105695 - }, - "endPoint": { - "x": 1206.975004, - "y": -2637.284177 - } - } - }, - { - "id": "dce00c00-742f-5d67-bc8f-efc243b31caf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.975004, - "y": -2637.284177 - }, - "endPoint": { - "x": 1206.947713, - "y": -2638.029212 - } - } - }, - { - "id": "9b7c7352-29f5-5653-9e8d-a6f2f2873649", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.947713, - "y": -2638.029212 - }, - "endPoint": { - "x": 1207.005476, - "y": -2638.412327 - } - } - }, - { - "id": "8726d67e-3705-5b10-b8a1-ac7c69d8d5fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.005476, - "y": -2638.412327 - }, - "endPoint": { - "x": 1206.955921, - "y": -2639.415286 - } - } - }, - { - "id": "6ddc6976-29a3-5a19-a329-7ac9cb9551bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.955921, - "y": -2639.415286 - }, - "endPoint": { - "x": 1206.980647, - "y": -2639.913793 - } - } - }, - { - "id": "03021058-62ab-5f26-b557-99968981be78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.980647, - "y": -2639.913793 - }, - "endPoint": { - "x": 1207.042412, - "y": -2640.696869 - } - } - }, - { - "id": "3db4889b-c086-55e3-b3d6-fa8e70305bbe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.042412, - "y": -2640.696869 - }, - "endPoint": { - "x": 1207.108691, - "y": -2641.284287 - } - } - }, - { - "id": "c30bb108-a641-56c6-94f1-87e846f373cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.108691, - "y": -2641.284287 - }, - "endPoint": { - "x": 1207.125209, - "y": -2642.1778 - } - } - }, - { - "id": "badf6159-357e-5ab6-8786-f2dc9f12aef7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.125209, - "y": -2642.1778 - }, - "endPoint": { - "x": 1207.166659, - "y": -2642.665902 - } - } - }, - { - "id": "32d9b3d3-2ed2-5a01-9a2b-7848eed315b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.166659, - "y": -2642.665902 - }, - "endPoint": { - "x": 1207.125209, - "y": -2643.336065 - } - } - }, - { - "id": "a1dcdc37-d5d1-5be0-a2dc-70a9ee1bc8bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.125209, - "y": -2643.336065 - }, - "endPoint": { - "x": 1207.14183, - "y": -2643.617331 - } - } - }, - { - "id": "6a099913-3357-5cc8-ae3e-f5b5309a554d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.14183, - "y": -2643.617331 - }, - "endPoint": { - "x": 1207.025893, - "y": -2643.956569 - } - } - }, - { - "id": "b9dfb1ed-5b6d-52a6-b5e4-49613fd89515", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.025893, - "y": -2643.956569 - }, - "endPoint": { - "x": 1206.909443, - "y": -2644.30891 - } - } - }, - { - "id": "eb4e909c-43f3-5a0d-8084-50c0b54fd0ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.909443, - "y": -2644.30891 - }, - "endPoint": { - "x": 1206.329861, - "y": -2644.780495 - } - } - }, - { - "id": "14141b66-7b67-5fb9-9970-5faf0694e06b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.329861, - "y": -2644.780495 - }, - "endPoint": { - "x": 1205.741968, - "y": -2644.970759 - } - } - }, - { - "id": "bef70070-63ff-51d9-b6e8-8c20dbe0b7dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.741968, - "y": -2644.970759 - }, - "endPoint": { - "x": 1205.187214, - "y": -2644.937672 - } - } - }, - { - "id": "8fbde14e-5018-51fc-a0c6-4749b99f020b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.187214, - "y": -2644.937672 - }, - "endPoint": { - "x": 1204.731879, - "y": -2645.028675 - } - } - }, - { - "id": "df3d910a-6beb-5431-be00-312bb7893c74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.731879, - "y": -2645.028675 - }, - "endPoint": { - "x": 1204.110847, - "y": -2644.863185 - } - } - }, - { - "id": "96354c80-8c33-5d80-9634-3ceeea2cc375", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.110847, - "y": -2644.863185 - }, - "endPoint": { - "x": 1203.539575, - "y": -2644.69775 - } - } - }, - { - "id": "9cd8f090-579e-5e7b-b9c6-0f29393d7972", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.539575, - "y": -2644.69775 - }, - "endPoint": { - "x": 1203.059308, - "y": -2644.300596 - } - } - }, - { - "id": "4f4a16aa-6167-55d2-ba75-2509d387acbd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.059308, - "y": -2644.300596 - }, - "endPoint": { - "x": 1202.786087, - "y": -2643.870411 - } - } - }, - { - "id": "fbd9e1d9-b37c-5f93-bbd3-fa3670dc3537", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.786087, - "y": -2643.870411 - }, - "endPoint": { - "x": 1202.759103, - "y": -2643.271432 - } - } - }, - { - "id": "df76a2e4-ba6d-5183-a315-0594a54a246d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.759103, - "y": -2643.271432 - }, - "endPoint": { - "x": 1202.734274, - "y": -2642.568238 - } - } - }, - { - "id": "f95a274a-ee44-5d6f-9358-9dc65eb4ec79", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.734274, - "y": -2642.568238 - }, - "endPoint": { - "x": 1202.767414, - "y": -2642.270345 - } - } - }, - { - "id": "6ea5d358-0cd2-5938-be6b-df55ec6d355d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.767414, - "y": -2642.270345 - }, - "endPoint": { - "x": 1202.709445, - "y": -2642.013907 - } - } - }, - { - "id": "e01d126c-10a8-559e-ae47-0267dfaadab8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.709445, - "y": -2642.013907 - }, - "endPoint": { - "x": 1202.568679, - "y": -2642.005649 - } - } - }, - { - "id": "7b091a3c-f798-5548-b44b-0b505309bb63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.568679, - "y": -2642.005649 - }, - "endPoint": { - "x": 1202.419603, - "y": -2642.162826 - } - } - }, - { - "id": "0b4e70eb-146e-5068-b8e6-9469cc3865c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.419603, - "y": -2642.162826 - }, - "endPoint": { - "x": 1202.378255, - "y": -2642.262087 - } - } - }, - { - "id": "ee45cec2-f50b-5d7b-92c3-2bcd2b2f80d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.378255, - "y": -2642.262087 - }, - "endPoint": { - "x": 1202.2458, - "y": -2642.286916 - } - } - }, - { - "id": "c7b528af-b389-5311-9843-3f28506b29f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.2458, - "y": -2642.286916 - }, - "endPoint": { - "x": 1202.088413, - "y": -2642.171084 - } - } - }, - { - "id": "ef699eca-5a03-536b-b785-d65615c7c93e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.088413, - "y": -2642.171084 - }, - "endPoint": { - "x": 1201.931128, - "y": -2642.071823 - } - } - }, - { - "id": "128044b5-4975-5f79-9f04-a6dada3fbe39", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.931128, - "y": -2642.071823 - }, - "endPoint": { - "x": 1201.757223, - "y": -2642.088339 - } - } - }, - { - "id": "2a88520b-95c8-5c02-aa5e-c234d9e24b4e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.757223, - "y": -2642.088339 - }, - "endPoint": { - "x": 1201.599938, - "y": -2642.129739 - } - } - }, - { - "id": "08637dcd-a4bb-5f17-9f52-2b270bf1d9fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.599938, - "y": -2642.129739 - }, - "endPoint": { - "x": 1201.58342, - "y": -2642.303487 - } - } - }, - { - "id": "4dd63032-9c80-58ae-a2ce-095cc0d747d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.58342, - "y": -2642.303487 - }, - "endPoint": { - "x": 1201.707565, - "y": -2642.609583 - } - } - }, - { - "id": "b62e627e-4854-53f1-9c83-d2c21a6fa8e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.707565, - "y": -2642.609583 - }, - "endPoint": { - "x": 1201.782052, - "y": -2642.841246 - } - } - }, - { - "id": "1e4ae66e-36a3-55b7-a31c-3a3773486349", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.782052, - "y": -2642.841246 - }, - "endPoint": { - "x": 1201.782052, - "y": -2643.122513 - } - } - }, - { - "id": "894ae8d2-c542-5e4c-9aad-0c0b3caa76b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.782052, - "y": -2643.122513 - }, - "endPoint": { - "x": 1201.757223, - "y": -2643.561012 - } - } - }, - { - "id": "8c4a9cf2-1f4d-58b9-9a96-e39a4ecd651f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.757223, - "y": -2643.561012 - }, - "endPoint": { - "x": 1201.856641, - "y": -2643.726502 - } - } - }, - { - "id": "592bbbf4-264d-54ea-b016-54f49e40b001", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.856641, - "y": -2643.726502 - }, - "endPoint": { - "x": 1201.856641, - "y": -2643.916766 - } - } - }, - { - "id": "61e82200-d318-5c08-b50a-a9cbc91d5d48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.856641, - "y": -2643.916766 - }, - "endPoint": { - "x": 1201.84002, - "y": -2644.140171 - } - } - }, - { - "id": "51dd0abf-6f9b-5f9d-a975-4da012af091f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.84002, - "y": -2644.140171 - }, - "endPoint": { - "x": 1201.84002, - "y": -2644.37178 - } - } - }, - { - "id": "14160df1-b667-5520-9e32-df913fa4bf27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.84002, - "y": -2644.37178 - }, - "endPoint": { - "x": 1201.666217, - "y": -2644.669618 - } - } - }, - { - "id": "95464d57-c454-5d4d-b3a3-040ac8643449", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.666217, - "y": -2644.669618 - }, - "endPoint": { - "x": 1201.426033, - "y": -2644.893024 - } - } - }, - { - "id": "ac8628f2-bba4-5dfc-bb13-0f422f080566", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.426033, - "y": -2644.893024 - }, - "endPoint": { - "x": 1201.227298, - "y": -2645.050201 - } - } - }, - { - "id": "dfeb32dc-a0f0-59b8-a8d6-daba4124c66b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.227298, - "y": -2645.050201 - }, - "endPoint": { - "x": 1200.863071, - "y": -2645.058514 - } - } - }, - { - "id": "b92d8fc8-1ca4-5dca-8413-cd9b1fd36a82", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.863071, - "y": -2645.058514 - }, - "endPoint": { - "x": 1200.664337, - "y": -2645.091601 - } - } - }, - { - "id": "583fd1d5-0672-572e-bbd5-f9aaab1a1ae6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.664337, - "y": -2645.091601 - }, - "endPoint": { - "x": 1200.506949, - "y": -2644.926111 - } - } - }, - { - "id": "2ad1ff7c-feca-5915-845e-3c8b827fb14a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.506949, - "y": -2644.926111 - }, - "endPoint": { - "x": 1200.283489, - "y": -2644.595186 - } - } - }, - { - "id": "e7d7cdc9-fea3-5a2e-a632-40e2f7238f14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.283489, - "y": -2644.595186 - }, - "endPoint": { - "x": 1200.283489, - "y": -2644.073942 - } - } - }, - { - "id": "cb00a72a-a881-57ae-a8c6-b44b11fc5606", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.283489, - "y": -2644.073942 - }, - "endPoint": { - "x": 1200.308318, - "y": -2643.354177 - } - } - }, - { - "id": "a4ad8879-25a0-500e-8249-5ac1d28ba835", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.308318, - "y": -2643.354177 - }, - "endPoint": { - "x": 1200.308318, - "y": -2642.866075 - } - } - }, - { - "id": "2c586bc3-8561-5c43-8c84-0a0b1a2e17fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.308318, - "y": -2642.866075 - }, - "endPoint": { - "x": 1200.399323, - "y": -2642.634412 - } - } - }, - { - "id": "65d8b690-1bcb-54a0-8f13-dd3298804818", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.399323, - "y": -2642.634412 - }, - "endPoint": { - "x": 1200.366286, - "y": -2642.402748 - } - } - }, - { - "id": "3a17094f-974e-58c2-989b-cd63a7808059", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.366286, - "y": -2642.402748 - }, - "endPoint": { - "x": 1200.200691, - "y": -2642.386177 - } - } - }, - { - "id": "ad6e1be0-92a4-5264-bf94-fcfb6d346888", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.200691, - "y": -2642.386177 - }, - "endPoint": { - "x": 1199.968817, - "y": -2642.667499 - } - } - }, - { - "id": "db5e147e-af06-5f95-b8e3-db883b880022", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.968817, - "y": -2642.667499 - }, - "endPoint": { - "x": 1199.794911, - "y": -2642.890849 - } - } - }, - { - "id": "35e03b37-f8c8-5fa9-b480-95b4707186fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.794911, - "y": -2642.890849 - }, - "endPoint": { - "x": 1199.571348, - "y": -2642.965336 - } - } - }, - { - "id": "9848e542-aedb-52c0-8cb4-730ebbacb5d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.571348, - "y": -2642.965336 - }, - "endPoint": { - "x": 1199.447203, - "y": -2642.998423 - } - } - }, - { - "id": "e31c02a1-11ed-5045-a5ad-d520b04c1e7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.447203, - "y": -2642.998423 - }, - "endPoint": { - "x": 1199.215329, - "y": -2643.1556 - } - } - }, - { - "id": "e3a89fa4-325a-5b57-89e9-88911121ea7a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.215329, - "y": -2643.1556 - }, - "endPoint": { - "x": 1198.958729, - "y": -2643.07291 - } - } - }, - { - "id": "67542315-9b76-5526-9336-9b62e4f3b14f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.958729, - "y": -2643.07291 - }, - "endPoint": { - "x": 1198.677196, - "y": -2642.882591 - } - } - }, - { - "id": "1258fa5b-c87f-52ee-aa8f-38dd81746608", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.677196, - "y": -2642.882591 - }, - "endPoint": { - "x": 1198.412183, - "y": -2642.617841 - } - } - }, - { - "id": "1a444af9-83ad-5376-859c-cadfb0049f5a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.412183, - "y": -2642.617841 - }, - "endPoint": { - "x": 1198.312867, - "y": -2642.286916 - } - } - }, - { - "id": "f6aaa82e-c484-5e9b-97e5-6fab020ffeea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.312867, - "y": -2642.286916 - }, - "endPoint": { - "x": 1198.370835, - "y": -2641.881504 - } - } - }, - { - "id": "1fda2d9f-d1c3-5c31-9fc9-b2f4d4dfdde5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.370835, - "y": -2641.881504 - }, - "endPoint": { - "x": 1198.52812, - "y": -2641.674669 - } - } - }, - { - "id": "32979478-b517-5c11-8ac5-f7ea7fbdb469", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.52812, - "y": -2641.674669 - }, - "endPoint": { - "x": 1198.56957, - "y": -2641.484405 - } - } - }, - { - "id": "ebd0fd2b-e148-5b2c-82e2-54c6d4180f66", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.56957, - "y": -2641.484405 - }, - "endPoint": { - "x": 1198.850999, - "y": -2641.434747 - } - } - }, - { - "id": "17dd7b68-329b-5d46-84ea-1da2692fce17", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.850999, - "y": -2641.434747 - }, - "endPoint": { - "x": 1199.594535, - "y": -2640.719166 - } - } - }, - { - "id": "97562189-48b3-52cc-93a7-08103902a325", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.594535, - "y": -2640.719166 - }, - "endPoint": { - "x": 1199.960506, - "y": -2640.387801 - } - } - }, - { - "id": "190bf46a-741c-57ef-a1fb-b861601f7f6c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.960506, - "y": -2640.387801 - }, - "endPoint": { - "x": 1200.070082, - "y": -2640.253911 - } - } - }, - { - "id": "473b0602-80f5-579b-a7f7-4028579377f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.070082, - "y": -2640.253911 - }, - "endPoint": { - "x": 1200.090397, - "y": -2640.193023 - } - } - }, - { - "id": "c614f821-c5b4-5f69-bdec-628e6a94a379", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.090397, - "y": -2640.193023 - }, - "endPoint": { - "x": 1200.005137, - "y": -2639.986078 - } - } - }, - { - "id": "a1aa7f19-260d-56e7-a150-393e15ee5de6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.005137, - "y": -2639.986078 - }, - "endPoint": { - "x": 1199.879248, - "y": -2639.835948 - } - } - }, - { - "id": "4fe10bed-90fa-5b26-8310-808169b78c27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.879248, - "y": -2639.835948 - }, - "endPoint": { - "x": 1199.408113, - "y": -2639.811559 - } - } - }, - { - "id": "2793b33b-17b4-580a-9d54-0ad9f30e03ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.408113, - "y": -2639.811559 - }, - "endPoint": { - "x": 1199.119809, - "y": -2639.762892 - } - } - }, - { - "id": "c9d1e256-17f5-504e-9a7c-42af3e0645db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.119809, - "y": -2639.762892 - }, - "endPoint": { - "x": 1198.99392, - "y": -2639.730411 - } - } - }, - { - "id": "fd7c1059-f5ac-5906-b2a6-f1f3055525cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.99392, - "y": -2639.730411 - }, - "endPoint": { - "x": 1198.773845, - "y": -2639.550827 - } - } - }, - { - "id": "50352d7f-7daa-5058-bc8e-3603814c378e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.773845, - "y": -2639.550827 - }, - "endPoint": { - "x": 1198.656061, - "y": -2639.274845 - } - } - }, - { - "id": "e0dd4002-967c-51fd-b9f5-a3cbd054e753", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.656061, - "y": -2639.274845 - }, - "endPoint": { - "x": 1198.501752, - "y": -2639.189678 - } - } - }, - { - "id": "a55591b7-ab8e-5a3e-9a78-3bc3f1043ca5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.501752, - "y": -2639.189678 - }, - "endPoint": { - "x": 1199.079693, - "y": -2638.225587 - } - } - }, - { - "id": "7e782776-fed0-55da-9789-6dfbb6199e53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.079693, - "y": -2638.225587 - }, - "endPoint": { - "x": 1199.650657, - "y": -2637.720308 - } - } - }, - { - "id": "f6376d71-5c58-5677-a75c-cf89c3a82599", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.650657, - "y": -2637.720308 - }, - "endPoint": { - "x": 1200.311293, - "y": -2637.141699 - } - } - }, - { - "id": "a47dc9cb-8505-5ec1-81c9-72c5972ec54d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.311293, - "y": -2637.141699 - }, - "endPoint": { - "x": 1200.910882, - "y": -2636.530829 - } - } - }, - { - "id": "6b695c7c-c2a3-514e-b342-d40a3356c681", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.910882, - "y": -2636.530829 - }, - "endPoint": { - "x": 1201.173639, - "y": -2636.336822 - } - } - }, - { - "id": "a2d6ca18-b103-5dc3-8efe-7eaecb628aa4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.173639, - "y": -2636.336822 - }, - "endPoint": { - "x": 1201.220424, - "y": -2636.342877 - } - } - }, - { - "id": "c2053661-10a0-565e-9ccd-42600237827f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.220424, - "y": -2636.342877 - }, - "endPoint": { - "x": 1201.258899, - "y": -2636.387471 - } - } - } - ] - }, - { - "id": "98894fe9-5c7a-595c-ab89-9ccd878a2091", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "ec1d2a14-4dc3-5e98-aabe-fa388e52b46c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.718952, - "y": -2638.228284 - }, - "endPoint": { - "x": 1204.533863, - "y": -2638.189362 - } - } - }, - { - "id": "1a1c14a2-2e18-5ead-9cf6-d4dc75c50bd2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.533863, - "y": -2638.189362 - }, - "endPoint": { - "x": 1204.353596, - "y": -2638.247773 - } - } - }, - { - "id": "523f171a-8715-557c-9012-f66cf085d9ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.353596, - "y": -2638.247773 - }, - "endPoint": { - "x": 1204.231811, - "y": -2638.413263 - } - } - }, - { - "id": "7010d4a7-abe4-50b7-9617-d3fd219ded7a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.231811, - "y": -2638.413263 - }, - "endPoint": { - "x": 1204.215395, - "y": -2638.467215 - } - } - }, - { - "id": "afcd1c85-427b-577b-8017-47ca5fae4a44", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.215395, - "y": -2638.467215 - }, - "endPoint": { - "x": 1204.220217, - "y": -2638.538839 - } - } - }, - { - "id": "950db22a-8dee-5b86-be5e-ec6c634e124f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.220217, - "y": -2638.538839 - }, - "endPoint": { - "x": 1204.382632, - "y": -2638.610519 - } - } - }, - { - "id": "2e991e2b-b3e1-5bac-9d03-146a1b9a5103", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.382632, - "y": -2638.610519 - }, - "endPoint": { - "x": 1204.647953, - "y": -2638.691667 - } - } - }, - { - "id": "6f82149e-3e56-5350-a407-2b492d5de8b0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.647953, - "y": -2638.691667 - }, - "endPoint": { - "x": 1204.853459, - "y": -2638.674986 - } - } - }, - { - "id": "7607a95a-1677-5e37-8872-d838796a725d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.853459, - "y": -2638.674986 - }, - "endPoint": { - "x": 1205.152125, - "y": -2638.660617 - } - } - }, - { - "id": "efa8e6ce-c8c2-5bae-ab42-d1e4b503c3e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.152125, - "y": -2638.660617 - }, - "endPoint": { - "x": 1205.300278, - "y": -2638.64867 - } - } - }, - { - "id": "6357ef88-dd02-5881-93b5-e79317fc6ac2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.300278, - "y": -2638.64867 - }, - "endPoint": { - "x": 1205.405956, - "y": -2638.559319 - } - } - }, - { - "id": "8d3dde6f-c131-5b8b-b753-a2aa8b3e4551", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.405956, - "y": -2638.559319 - }, - "endPoint": { - "x": 1205.556981, - "y": -2638.510652 - } - } - }, - { - "id": "726c6740-9581-5871-943c-6aee2e073619", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.556981, - "y": -2638.510652 - }, - "endPoint": { - "x": 1205.459512, - "y": -2638.359751 - } - } - }, - { - "id": "2d4942a3-53cf-5038-bba9-551af1f1b807", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.459512, - "y": -2638.359751 - }, - "endPoint": { - "x": 1205.308486, - "y": -2638.194206 - } - } - }, - { - "id": "d9100ca2-0d8d-5e61-97f6-c41b7f1abd08", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.308486, - "y": -2638.194206 - }, - "endPoint": { - "x": 1205.069738, - "y": -2638.174773 - } - } - }, - { - "id": "fc1dd3b9-2d28-5300-adcb-5b3477f9549b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.069738, - "y": -2638.174773 - }, - "endPoint": { - "x": 1204.718952, - "y": -2638.228284 - } - } - } - ] - }, - { - "id": "dbdf9581-aa43-55da-89ca-30b01c3760b1", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "1206406a-14fe-52fa-8de1-29f736c706cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.341113, - "y": -2640.409877 - }, - "endPoint": { - "x": 1205.483213, - "y": -2640.360605 - } - } - }, - { - "id": "c4c9b1b3-0299-54f6-9060-bc995e50d7ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.483213, - "y": -2640.360605 - }, - "endPoint": { - "x": 1205.532152, - "y": -2640.259031 - } - } - }, - { - "id": "cee9fd44-c88e-54d7-bf82-88b87ac72d76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.532152, - "y": -2640.259031 - }, - "endPoint": { - "x": 1205.528356, - "y": -2640.13863 - } - } - }, - { - "id": "ee5c2364-4482-5df5-9ee6-299ff32676b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.528356, - "y": -2640.13863 - }, - "endPoint": { - "x": 1205.539745, - "y": -2640.025771 - } - } - }, - { - "id": "a27b4b2a-e11d-5696-a2ed-93241c53d974", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.539745, - "y": -2640.025771 - }, - "endPoint": { - "x": 1205.407905, - "y": -2639.98817 - } - } - }, - { - "id": "41fb49a7-6b85-5b0d-bd3b-b3d0c3f41a7a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.407905, - "y": -2639.98817 - }, - "endPoint": { - "x": 1205.253493, - "y": -2639.894084 - } - } - }, - { - "id": "c41db5b0-314e-59f7-8b06-aa483b545152", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.253493, - "y": -2639.894084 - }, - "endPoint": { - "x": 1205.076612, - "y": -2639.864025 - } - } - }, - { - "id": "e0b948dd-de37-5fbf-ac95-1868041cad95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.076612, - "y": -2639.864025 - }, - "endPoint": { - "x": 1204.790361, - "y": -2639.897882 - } - } - }, - { - "id": "1082dec8-a2ef-55e9-9ed9-3201eba72fc6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.790361, - "y": -2639.897882 - }, - "endPoint": { - "x": 1204.669909, - "y": -2639.965598 - } - } - }, - { - "id": "3f243e4e-0ade-5eaa-b2c3-522c4c294565", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.669909, - "y": -2639.965598 - }, - "endPoint": { - "x": 1204.545662, - "y": -2640.010741 - } - } - }, - { - "id": "984b2737-b972-5448-ba3f-654cee7373d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.545662, - "y": -2640.010741 - }, - "endPoint": { - "x": 1204.323535, - "y": -2640.003199 - } - } - }, - { - "id": "6de5fe2f-5fff-5cca-b253-6897c4c7d7eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.323535, - "y": -2640.003199 - }, - "endPoint": { - "x": 1204.314198, - "y": -2640.082971 - } - } - }, - { - "id": "ec9633e0-75c4-56bb-9307-7239d1bb5fd1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.314198, - "y": -2640.082971 - }, - "endPoint": { - "x": 1204.294191, - "y": -2640.186581 - } - } - }, - { - "id": "8d106335-bcf5-53b8-bbce-6ae597c41062", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.294191, - "y": -2640.186581 - }, - "endPoint": { - "x": 1204.310607, - "y": -2640.33016 - } - } - }, - { - "id": "030ebc1e-b8af-5847-bf01-263e01a2c446", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.310607, - "y": -2640.33016 - }, - "endPoint": { - "x": 1204.35965, - "y": -2640.368312 - } - } - }, - { - "id": "4f5fdb1c-452f-544b-8de2-57b8eaf4bd2e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.35965, - "y": -2640.368312 - }, - "endPoint": { - "x": 1204.552536, - "y": -2640.388296 - } - } - }, - { - "id": "66d45ff2-2f9e-50d5-86cb-9098227241b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.552536, - "y": -2640.388296 - }, - "endPoint": { - "x": 1204.858076, - "y": -2640.399197 - } - } - }, - { - "id": "1ac5e108-765c-5fd9-8555-03ecd1a2ee3f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.858076, - "y": -2640.399197 - }, - "endPoint": { - "x": 1205.341113, - "y": -2640.409877 - } - } - } - ] - }, - { - "id": "918b3f13-574a-5e28-9680-32c7e1563fb0", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "2f689e6f-8b7c-5264-8cf5-823086f1d508", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.851715, - "y": -2641.824579 - }, - "endPoint": { - "x": 1204.674013, - "y": -2641.864658 - } - } - }, - { - "id": "2a48bfd5-dbcc-5b25-8d32-028f0dfa892f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.674013, - "y": -2641.864658 - }, - "endPoint": { - "x": 1204.542071, - "y": -2641.973498 - } - } - }, - { - "id": "3cb11128-31c5-583f-b061-c0315df98b23", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.542071, - "y": -2641.973498 - }, - "endPoint": { - "x": 1204.398842, - "y": -2641.9964 - } - } - }, - { - "id": "08f12f82-ee91-5cec-930e-460db3715a1e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.398842, - "y": -2641.9964 - }, - "endPoint": { - "x": 1204.384479, - "y": -2642.082338 - } - } - }, - { - "id": "3edb8489-a2f1-522f-bc65-6e525fb5e3fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.384479, - "y": -2642.082338 - }, - "endPoint": { - "x": 1204.458966, - "y": -2642.196904 - } - } - }, - { - "id": "3595919e-8133-5cbd-9eb9-47fd3a516392", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.458966, - "y": -2642.196904 - }, - "endPoint": { - "x": 1204.630922, - "y": -2642.320058 - } - } - }, - { - "id": "103c4576-cde7-5382-97cc-f2247773078a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.630922, - "y": -2642.320058 - }, - "endPoint": { - "x": 1204.745628, - "y": -2642.388764 - } - } - }, - { - "id": "a9c51f29-f36d-5b07-92af-2546eea7c4d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.745628, - "y": -2642.388764 - }, - "endPoint": { - "x": 1204.9577, - "y": -2642.460388 - } - } - }, - { - "id": "38494daa-167e-5731-b864-336ba47ba051", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.9577, - "y": -2642.460388 - }, - "endPoint": { - "x": 1205.158384, - "y": -2642.471839 - } - } - }, - { - "id": "13b5e767-a439-59b5-8fdf-0049a5e4d72b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.158384, - "y": -2642.471839 - }, - "endPoint": { - "x": 1205.255853, - "y": -2642.405941 - } - } - }, - { - "id": "4c4400b8-9cd8-5c4c-8e93-56aa0108bfc7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.255853, - "y": -2642.405941 - }, - "endPoint": { - "x": 1205.333213, - "y": -2642.351548 - } - } - }, - { - "id": "800caa95-56ac-5d16-821e-cf08a13aeb44", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.333213, - "y": -2642.351548 - }, - "endPoint": { - "x": 1205.508042, - "y": -2642.302881 - } - } - }, - { - "id": "819d38f8-7c30-52bf-97f9-bf3bd51e6313", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.508042, - "y": -2642.302881 - }, - "endPoint": { - "x": 1205.631263, - "y": -2642.136731 - } - } - }, - { - "id": "ac4e4649-998f-5d7f-ad24-64b3f3d9bc37", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.631263, - "y": -2642.136731 - }, - "endPoint": { - "x": 1205.57114, - "y": -2642.065162 - } - } - }, - { - "id": "59252e34-a261-529a-bfd3-ac6efe8e708e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.57114, - "y": -2642.065162 - }, - "endPoint": { - "x": 1205.508042, - "y": -2641.993537 - } - } - }, - { - "id": "ea892a83-732c-5497-a287-adda9e328400", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.508042, - "y": -2641.993537 - }, - "endPoint": { - "x": 1205.410573, - "y": -2641.91905 - } - } - }, - { - "id": "9b9d078f-ab76-50da-8540-20808a93d8fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.410573, - "y": -2641.91905 - }, - "endPoint": { - "x": 1205.301715, - "y": -2641.850344 - } - } - }, - { - "id": "6f516722-31fd-5986-9ade-844b63ca2f74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.301715, - "y": -2641.850344 - }, - "endPoint": { - "x": 1205.060915, - "y": -2641.818854 - } - } - }, - { - "id": "c254431e-21a6-518a-9ea4-117886e8f89c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.060915, - "y": -2641.818854 - }, - "endPoint": { - "x": 1204.851715, - "y": -2641.824579 - } - } - } - ] - }, - { - "id": "811b7ad2-b363-5e63-aa45-fd684b1a08cf", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "9d5c1243-348c-57cd-98d1-9da999686ffc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.034343, - "y": -2639.65774 - }, - "endPoint": { - "x": 1201.866183, - "y": -2639.529246 - } - } - }, - { - "id": "905f7e7b-9318-57a6-a917-82785f31cb0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.866183, - "y": -2639.529246 - }, - "endPoint": { - "x": 1201.678221, - "y": -2639.55892 - } - } - }, - { - "id": "832a904e-df70-583b-ae85-d9ef9b28362e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.678221, - "y": -2639.55892 - }, - "endPoint": { - "x": 1201.64857, - "y": -2639.66765 - } - } - }, - { - "id": "6c4ae023-63a3-5175-b100-11c6d11489f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.64857, - "y": -2639.66765 - }, - "endPoint": { - "x": 1201.65093, - "y": -2639.724245 - } - } - }, - { - "id": "030b128a-21c4-570a-ba51-8df657ec8782", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.65093, - "y": -2639.724245 - }, - "endPoint": { - "x": 1201.701306, - "y": -2639.915665 - } - } - }, - { - "id": "0acdcbeb-5415-50e7-b8ca-78a9ab49c066", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.701306, - "y": -2639.915665 - }, - "endPoint": { - "x": 1202.02398, - "y": -2640.157513 - } - } - }, - { - "id": "403583c7-e0fd-5d19-bdf7-b1c2d912f74a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.02398, - "y": -2640.157513 - }, - "endPoint": { - "x": 1202.245902, - "y": -2640.308634 - } - } - }, - { - "id": "43658c3f-1ce2-5347-9155-42adbf87a1a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.245902, - "y": -2640.308634 - }, - "endPoint": { - "x": 1202.487831, - "y": -2640.238111 - } - } - }, - { - "id": "32a8b7c5-20e5-58eb-bee9-9ff85570fcaf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.487831, - "y": -2640.238111 - }, - "endPoint": { - "x": 1202.659274, - "y": -2640.217962 - } - } - }, - { - "id": "53c32428-faa2-5551-bd68-6c8f6b9a5076", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.659274, - "y": -2640.217962 - }, - "endPoint": { - "x": 1202.669431, - "y": -2639.814917 - } - } - }, - { - "id": "6cd3de3a-0032-5c48-841f-71af91985965", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.669431, - "y": -2639.814917 - }, - "endPoint": { - "x": 1202.669431, - "y": -2639.583143 - } - } - }, - { - "id": "522be431-49c5-571f-b250-f2c8decfb427", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.669431, - "y": -2639.583143 - }, - "endPoint": { - "x": 1202.487831, - "y": -2639.593218 - } - } - }, - { - "id": "4c8cfb23-6183-56b0-9e27-0bcd1a5bc4bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.487831, - "y": -2639.593218 - }, - "endPoint": { - "x": 1202.360813, - "y": -2639.682459 - } - } - }, - { - "id": "e896292a-62d9-52d9-a039-52ed8e98d33e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.360813, - "y": -2639.682459 - }, - "endPoint": { - "x": 1202.034343, - "y": -2639.65774 - } - } - } - ] - }, - { - "id": "0f806070-bc03-5abb-b480-0351c00f5f94", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "0b4b295c-44c2-5ec8-9f14-ba127854f8b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.483215, - "y": -2637.875779 - }, - "endPoint": { - "x": 1199.488961, - "y": -2637.904682 - } - } - }, - { - "id": "10021d28-ecb0-5715-8c38-6117e4253185", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.488961, - "y": -2637.904682 - }, - "endPoint": { - "x": 1199.463927, - "y": -2638.075291 - } - } - }, - { - "id": "6a5e4cee-8887-516e-b688-6d2ea718272f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.463927, - "y": -2638.075291 - }, - "endPoint": { - "x": 1199.589405, - "y": -2638.175653 - } - } - }, - { - "id": "6735644e-4838-5cea-8ed6-4b0e6de26832", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.589405, - "y": -2638.175653 - }, - "endPoint": { - "x": 1199.991184, - "y": -2638.065272 - } - } - }, - { - "id": "d652773f-6e16-56d2-9292-2fba5aa3dac6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.991184, - "y": -2638.065272 - }, - "endPoint": { - "x": 1200.12169, - "y": -2637.924776 - } - } - }, - { - "id": "928107f0-7e19-5851-9ff8-b056d4dbba95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.12169, - "y": -2637.924776 - }, - "endPoint": { - "x": 1200.151854, - "y": -2637.643784 - } - } - }, - { - "id": "f5ea63a1-12a6-5b6a-b70b-ae83216bd3da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.151854, - "y": -2637.643784 - }, - "endPoint": { - "x": 1199.991184, - "y": -2637.483249 - } - } - }, - { - "id": "371e27df-3725-59fa-91aa-c586226ff4d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.991184, - "y": -2637.483249 - }, - "endPoint": { - "x": 1199.980975, - "y": -2637.431004 - } - } - }, - { - "id": "e21ef8fb-30f1-558e-9e2e-ea590a9d2717", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.980975, - "y": -2637.431004 - }, - "endPoint": { - "x": 1199.483215, - "y": -2637.875779 - } - } - } - ] - }, - { - "id": "383f005b-1189-5934-9026-17ab1cd32e4b", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "c82039b0-aecf-5a6d-9980-cf5c10899cb4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.258899, - "y": -2636.387471 - }, - "endPoint": { - "x": 1201.396587, - "y": -2636.693181 - } - } - }, - { - "id": "d457fc20-ce3c-50c6-918b-c928fd010401", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.396587, - "y": -2636.693181 - }, - "endPoint": { - "x": 1201.471381, - "y": -2636.866488 - } - } - }, - { - "id": "43f0f53c-30fc-5d8a-b8b8-68df56a4d74d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.471381, - "y": -2636.866488 - }, - "endPoint": { - "x": 1201.460916, - "y": -2637.302234 - } - } - }, - { - "id": "b149324a-8c16-5b28-8739-18b7b66dfb7a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.460916, - "y": -2637.302234 - }, - "endPoint": { - "x": 1201.424083, - "y": -2637.66977 - } - } - }, - { - "id": "243424db-587f-5208-8745-9f388ff4f984", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.424083, - "y": -2637.66977 - }, - "endPoint": { - "x": 1201.529145, - "y": -2637.906003 - } - } - }, - { - "id": "c1b55054-25a5-5549-a39d-3b8c83f3e8e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.529145, - "y": -2637.906003 - }, - "endPoint": { - "x": 1201.902195, - "y": -2637.963754 - } - } - }, - { - "id": "e9b6ce53-8fe6-502b-8948-93b49375c325", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.902195, - "y": -2637.963754 - }, - "endPoint": { - "x": 1202.322544, - "y": -2638.021504 - } - } - }, - { - "id": "67344b13-87c8-5adb-9897-fcc1fefe604f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.322544, - "y": -2638.021504 - }, - "endPoint": { - "x": 1202.427605, - "y": -2638.095 - } - } - }, - { - "id": "740b14bf-425b-5e1f-8821-ee46e1609d05", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.427605, - "y": -2638.095 - }, - "endPoint": { - "x": 1202.627263, - "y": -2638.158036 - } - } - }, - { - "id": "696dd770-fb1d-58c7-b142-196cfd1df9cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.627263, - "y": -2638.158036 - }, - "endPoint": { - "x": 1202.727092, - "y": -2638.03202 - } - } - }, - { - "id": "d37cbdeb-3c9d-5e42-b76d-98b29334be35", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.727092, - "y": -2638.03202 - }, - "endPoint": { - "x": 1202.821689, - "y": -2637.690745 - } - } - }, - { - "id": "156030a8-371f-592b-a76d-65214ff44341", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.821689, - "y": -2637.690745 - }, - "endPoint": { - "x": 1202.984616, - "y": -2637.029226 - } - } - }, - { - "id": "1d23e1ca-0322-5b64-aecd-2f32ffb69189", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.984616, - "y": -2637.029226 - }, - "endPoint": { - "x": 1203.546757, - "y": -2636.719496 - } - } - }, - { - "id": "e7fcc741-ab90-5dbf-945c-6766aa4e4e30", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.546757, - "y": -2636.719496 - }, - "endPoint": { - "x": 1204.100895, - "y": -2636.564907 - } - } - }, - { - "id": "f5edcc36-09f5-5763-acb5-6158668a0c90", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.100895, - "y": -2636.564907 - }, - "endPoint": { - "x": 1204.558076, - "y": -2636.517671 - } - } - }, - { - "id": "b0151c7e-c199-5d76-b9e7-48d0e418480a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.558076, - "y": -2636.517671 - }, - "endPoint": { - "x": 1205.178083, - "y": -2636.470436 - } - } - }, - { - "id": "04b1b1aa-bc76-5499-97de-219e953d910d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.178083, - "y": -2636.470436 - }, - "endPoint": { - "x": 1205.897816, - "y": -2636.512441 - } - } - }, - { - "id": "0381acaf-66b3-5913-8e1b-12ce0d91ceb0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.897816, - "y": -2636.512441 - }, - "endPoint": { - "x": 1206.559888, - "y": -2636.774935 - } - } - }, - { - "id": "8656fc7f-fec1-58d4-9c72-95221714c103", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.559888, - "y": -2636.774935 - }, - "endPoint": { - "x": 1206.84891, - "y": -2637.105695 - } - } - }, - { - "id": "b5b3bae8-e12b-5d2f-a49c-159fb2eb6c4a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.84891, - "y": -2637.105695 - }, - "endPoint": { - "x": 1206.975004, - "y": -2637.284177 - } - } - }, - { - "id": "796d7fcb-2162-5dae-893e-704bd1f7c4c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.975004, - "y": -2637.284177 - }, - "endPoint": { - "x": 1206.947713, - "y": -2638.029212 - } - } - }, - { - "id": "feea505d-9c3a-5cd9-89d0-d9625a88dc01", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.947713, - "y": -2638.029212 - }, - "endPoint": { - "x": 1207.005476, - "y": -2638.412327 - } - } - }, - { - "id": "b0413194-4b44-5979-9b21-42262882fcf5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.005476, - "y": -2638.412327 - }, - "endPoint": { - "x": 1206.955921, - "y": -2639.415286 - } - } - }, - { - "id": "94e7d690-3681-5b26-b7cd-73b146a74e70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.955921, - "y": -2639.415286 - }, - "endPoint": { - "x": 1206.980647, - "y": -2639.913793 - } - } - }, - { - "id": "2938e0c9-f891-5eed-a452-43fab672e280", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.980647, - "y": -2639.913793 - }, - "endPoint": { - "x": 1207.042412, - "y": -2640.696869 - } - } - }, - { - "id": "107e4c3e-f872-5f40-abe9-d09c3ab62555", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.042412, - "y": -2640.696869 - }, - "endPoint": { - "x": 1207.108691, - "y": -2641.284287 - } - } - }, - { - "id": "c7fcd448-5dc2-5037-8790-2ca7470c4a1e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.108691, - "y": -2641.284287 - }, - "endPoint": { - "x": 1207.125209, - "y": -2642.1778 - } - } - }, - { - "id": "fe6398a4-f4cd-5d20-a60a-ae6ac9cda159", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.125209, - "y": -2642.1778 - }, - "endPoint": { - "x": 1207.166659, - "y": -2642.665902 - } - } - }, - { - "id": "9e493f9e-e14d-5148-a709-22cbd68efc57", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.166659, - "y": -2642.665902 - }, - "endPoint": { - "x": 1207.125209, - "y": -2643.336065 - } - } - }, - { - "id": "49265a97-00da-5f1f-a839-b093d213c76e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.125209, - "y": -2643.336065 - }, - "endPoint": { - "x": 1207.14183, - "y": -2643.617331 - } - } - }, - { - "id": "09300aea-a0c2-5890-bbb1-a24ce5b04c34", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.14183, - "y": -2643.617331 - }, - "endPoint": { - "x": 1207.025893, - "y": -2643.956569 - } - } - }, - { - "id": "42c832d9-66cc-5b9f-bdad-5a5d61c21ce6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.025893, - "y": -2643.956569 - }, - "endPoint": { - "x": 1206.909443, - "y": -2644.30891 - } - } - }, - { - "id": "d682340c-b39a-5026-84b5-8a8ff80419b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.909443, - "y": -2644.30891 - }, - "endPoint": { - "x": 1206.329861, - "y": -2644.780495 - } - } - }, - { - "id": "de19c27c-3267-532e-9bf0-199209250441", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.329861, - "y": -2644.780495 - }, - "endPoint": { - "x": 1205.741968, - "y": -2644.970759 - } - } - }, - { - "id": "d77f953f-5f45-5f37-85cf-e69d8294c34a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.741968, - "y": -2644.970759 - }, - "endPoint": { - "x": 1205.187214, - "y": -2644.937672 - } - } - }, - { - "id": "5359a1bc-8ec4-5823-a3d1-14ef10342703", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.187214, - "y": -2644.937672 - }, - "endPoint": { - "x": 1204.731879, - "y": -2645.028675 - } - } - }, - { - "id": "8f2c6754-e44e-534d-b88a-be2629a2be14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.731879, - "y": -2645.028675 - }, - "endPoint": { - "x": 1204.110847, - "y": -2644.863185 - } - } - }, - { - "id": "bef2e7e4-7f2d-59db-81bc-fe6326f158ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.110847, - "y": -2644.863185 - }, - "endPoint": { - "x": 1203.539575, - "y": -2644.69775 - } - } - }, - { - "id": "adc488f1-85d3-5354-bd6a-fbd075763bbb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.539575, - "y": -2644.69775 - }, - "endPoint": { - "x": 1203.059308, - "y": -2644.300596 - } - } - }, - { - "id": "2c2875fa-e964-533a-83ae-49f7cadc66e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.059308, - "y": -2644.300596 - }, - "endPoint": { - "x": 1202.786087, - "y": -2643.870411 - } - } - }, - { - "id": "852ffc66-9e57-5a26-beec-a05e59a29343", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.786087, - "y": -2643.870411 - }, - "endPoint": { - "x": 1202.759103, - "y": -2643.271432 - } - } - }, - { - "id": "bb087875-9838-5220-8d95-29b1c00a2361", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.759103, - "y": -2643.271432 - }, - "endPoint": { - "x": 1202.734274, - "y": -2642.568238 - } - } - }, - { - "id": "5abb2f6c-e485-5181-910e-9282d95797a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.734274, - "y": -2642.568238 - }, - "endPoint": { - "x": 1202.767414, - "y": -2642.270345 - } - } - }, - { - "id": "ae3782c2-3642-505b-880f-567033400085", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.767414, - "y": -2642.270345 - }, - "endPoint": { - "x": 1202.709445, - "y": -2642.013907 - } - } - }, - { - "id": "1179d404-1f15-5354-af36-5097a830c909", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.709445, - "y": -2642.013907 - }, - "endPoint": { - "x": 1202.568679, - "y": -2642.005649 - } - } - }, - { - "id": "9aabb061-c065-5b65-b505-218b04c56d27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.568679, - "y": -2642.005649 - }, - "endPoint": { - "x": 1202.419603, - "y": -2642.162826 - } - } - }, - { - "id": "18ab0f1f-6785-5932-9ebb-3fe0e98aede1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.419603, - "y": -2642.162826 - }, - "endPoint": { - "x": 1202.378255, - "y": -2642.262087 - } - } - }, - { - "id": "350f9567-f7fe-5333-bcb3-4002ac3baea6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.378255, - "y": -2642.262087 - }, - "endPoint": { - "x": 1202.2458, - "y": -2642.286916 - } - } - }, - { - "id": "ef4435fd-c490-58b0-9416-f95106bcb6fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.2458, - "y": -2642.286916 - }, - "endPoint": { - "x": 1202.088413, - "y": -2642.171084 - } - } - }, - { - "id": "a1ddfac8-39cc-538b-a4b5-a50938483fd7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.088413, - "y": -2642.171084 - }, - "endPoint": { - "x": 1201.931128, - "y": -2642.071823 - } - } - }, - { - "id": "86de9278-3bce-53f4-8059-cabf62e2b97a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.931128, - "y": -2642.071823 - }, - "endPoint": { - "x": 1201.757223, - "y": -2642.088339 - } - } - }, - { - "id": "a38fec08-b367-5605-8a51-785e1f9336dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.757223, - "y": -2642.088339 - }, - "endPoint": { - "x": 1201.599938, - "y": -2642.129739 - } - } - }, - { - "id": "a9f049d3-bdb2-5c5f-9825-a5f6abf9f65b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.599938, - "y": -2642.129739 - }, - "endPoint": { - "x": 1201.58342, - "y": -2642.303487 - } - } - }, - { - "id": "315bb392-f779-5a07-80f8-a5d13f9f7a11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.58342, - "y": -2642.303487 - }, - "endPoint": { - "x": 1201.707565, - "y": -2642.609583 - } - } - }, - { - "id": "3aa950e3-9279-5366-a027-9bdee7685d68", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.707565, - "y": -2642.609583 - }, - "endPoint": { - "x": 1201.782052, - "y": -2642.841246 - } - } - }, - { - "id": "1399e787-8b13-5182-9b91-039c12d5d304", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.782052, - "y": -2642.841246 - }, - "endPoint": { - "x": 1201.782052, - "y": -2643.122513 - } - } - }, - { - "id": "8f5e6042-9196-5c40-80f3-32888d541ff0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.782052, - "y": -2643.122513 - }, - "endPoint": { - "x": 1201.757223, - "y": -2643.561012 - } - } - }, - { - "id": "bad3a70f-528e-5fad-9313-5782b29b6859", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.757223, - "y": -2643.561012 - }, - "endPoint": { - "x": 1201.856641, - "y": -2643.726502 - } - } - }, - { - "id": "78b21153-aa34-53f3-8cf5-8400f7e0ee49", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.856641, - "y": -2643.726502 - }, - "endPoint": { - "x": 1201.856641, - "y": -2643.916766 - } - } - }, - { - "id": "6dd1336e-d817-5ddf-9e83-f1915a63a245", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.856641, - "y": -2643.916766 - }, - "endPoint": { - "x": 1201.84002, - "y": -2644.140171 - } - } - }, - { - "id": "0b503d9a-ddfd-5e1e-bc29-c48d493dbf4e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.84002, - "y": -2644.140171 - }, - "endPoint": { - "x": 1201.84002, - "y": -2644.37178 - } - } - }, - { - "id": "6333c909-f692-5fd3-abe8-b7283bdc2876", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.84002, - "y": -2644.37178 - }, - "endPoint": { - "x": 1201.666217, - "y": -2644.669618 - } - } - }, - { - "id": "c3afafba-1803-521a-bb16-a356dde29782", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.666217, - "y": -2644.669618 - }, - "endPoint": { - "x": 1201.426033, - "y": -2644.893024 - } - } - }, - { - "id": "f2b15dea-76ea-5aca-8ebc-12f16f549282", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.426033, - "y": -2644.893024 - }, - "endPoint": { - "x": 1201.227298, - "y": -2645.050201 - } - } - }, - { - "id": "96c538ae-4fd6-5b61-86d3-ee32fcc6c93b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.227298, - "y": -2645.050201 - }, - "endPoint": { - "x": 1200.863071, - "y": -2645.058514 - } - } - }, - { - "id": "9c7675c4-2d10-5857-8ae6-18c4113b85b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.863071, - "y": -2645.058514 - }, - "endPoint": { - "x": 1200.664337, - "y": -2645.091601 - } - } - }, - { - "id": "42d46a22-60f2-5e52-826d-d5f0580935fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.664337, - "y": -2645.091601 - }, - "endPoint": { - "x": 1200.506949, - "y": -2644.926111 - } - } - }, - { - "id": "4b805aa0-a2f8-5a04-b072-8e9fceb9914a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.506949, - "y": -2644.926111 - }, - "endPoint": { - "x": 1200.283489, - "y": -2644.595186 - } - } - }, - { - "id": "c04660b3-6c88-522e-809e-2aaa15f679af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.283489, - "y": -2644.595186 - }, - "endPoint": { - "x": 1200.283489, - "y": -2644.073942 - } - } - }, - { - "id": "d180b791-2731-5fcb-8baa-2607f76c8002", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.283489, - "y": -2644.073942 - }, - "endPoint": { - "x": 1200.308318, - "y": -2643.354177 - } - } - }, - { - "id": "5e47ded7-9fd2-5df4-8515-8bb592554645", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.308318, - "y": -2643.354177 - }, - "endPoint": { - "x": 1200.308318, - "y": -2642.866075 - } - } - }, - { - "id": "ea021dad-8839-5d4a-b60b-b966b7b373a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.308318, - "y": -2642.866075 - }, - "endPoint": { - "x": 1200.399323, - "y": -2642.634412 - } - } - }, - { - "id": "b609492f-fe86-5c65-a0b8-b1a37c68e890", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.399323, - "y": -2642.634412 - }, - "endPoint": { - "x": 1200.366286, - "y": -2642.402748 - } - } - }, - { - "id": "e761df60-76cc-50eb-a27e-def63a5db7aa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.366286, - "y": -2642.402748 - }, - "endPoint": { - "x": 1200.200691, - "y": -2642.386177 - } - } - }, - { - "id": "784fa194-bbec-555e-84b9-ce0616ca16fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.200691, - "y": -2642.386177 - }, - "endPoint": { - "x": 1199.968817, - "y": -2642.667499 - } - } - }, - { - "id": "757beea0-8b6c-57dc-b1bc-53d50e5e8535", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.968817, - "y": -2642.667499 - }, - "endPoint": { - "x": 1199.794911, - "y": -2642.890849 - } - } - }, - { - "id": "d152804b-c3b3-5b78-9ca1-a0d4fe7e0baa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.794911, - "y": -2642.890849 - }, - "endPoint": { - "x": 1199.571348, - "y": -2642.965336 - } - } - }, - { - "id": "ed02b479-0e42-5d33-b6b3-2e09eae8f242", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.571348, - "y": -2642.965336 - }, - "endPoint": { - "x": 1199.447203, - "y": -2642.998423 - } - } - }, - { - "id": "094c0a18-4409-59bf-b6eb-dc4a2214a68e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.447203, - "y": -2642.998423 - }, - "endPoint": { - "x": 1199.215329, - "y": -2643.1556 - } - } - }, - { - "id": "10911c7c-2cfa-5ff3-a697-4766a8cfdc0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.215329, - "y": -2643.1556 - }, - "endPoint": { - "x": 1198.958729, - "y": -2643.07291 - } - } - }, - { - "id": "3f22b302-211b-56c5-baf4-cdc9259e0a28", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.958729, - "y": -2643.07291 - }, - "endPoint": { - "x": 1198.677196, - "y": -2642.882591 - } - } - }, - { - "id": "4f66d6a2-b09b-5270-9f4d-66d3f70c5247", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.677196, - "y": -2642.882591 - }, - "endPoint": { - "x": 1198.412183, - "y": -2642.617841 - } - } - }, - { - "id": "19b2d0b0-3502-5ef2-8a04-010f43dc01f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.412183, - "y": -2642.617841 - }, - "endPoint": { - "x": 1198.312867, - "y": -2642.286916 - } - } - }, - { - "id": "4b1d31e5-01f6-5a5e-a5de-4023e659c7c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.312867, - "y": -2642.286916 - }, - "endPoint": { - "x": 1198.370835, - "y": -2641.881504 - } - } - }, - { - "id": "5812a774-5cda-59a9-bee3-deb48fdbd4b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.370835, - "y": -2641.881504 - }, - "endPoint": { - "x": 1198.52812, - "y": -2641.674669 - } - } - }, - { - "id": "7d9374ce-fa3f-5e10-828f-aab8606f5991", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.52812, - "y": -2641.674669 - }, - "endPoint": { - "x": 1198.56957, - "y": -2641.484405 - } - } - }, - { - "id": "1ee63da0-1a08-5eef-b34c-a75fb333cfb5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.56957, - "y": -2641.484405 - }, - "endPoint": { - "x": 1198.850999, - "y": -2641.434747 - } - } - }, - { - "id": "14dc9f07-b86f-5039-96df-6f2bcccc0e24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.850999, - "y": -2641.434747 - }, - "endPoint": { - "x": 1199.594535, - "y": -2640.719166 - } - } - }, - { - "id": "710380a5-bcc3-507e-81d1-e564f902769f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.594535, - "y": -2640.719166 - }, - "endPoint": { - "x": 1199.960506, - "y": -2640.387801 - } - } - }, - { - "id": "a4a54d39-4036-5038-a462-5aac5b729957", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.960506, - "y": -2640.387801 - }, - "endPoint": { - "x": 1200.070082, - "y": -2640.253911 - } - } - }, - { - "id": "0b331f48-654b-5a87-8330-080223144e57", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.070082, - "y": -2640.253911 - }, - "endPoint": { - "x": 1200.090397, - "y": -2640.193023 - } - } - }, - { - "id": "ea4a9cdf-dae7-51b3-974d-57c765a1d158", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.090397, - "y": -2640.193023 - }, - "endPoint": { - "x": 1200.005137, - "y": -2639.986078 - } - } - }, - { - "id": "bb1f2294-5d2c-50d3-88cd-054ae126343b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.005137, - "y": -2639.986078 - }, - "endPoint": { - "x": 1199.879248, - "y": -2639.835948 - } - } - }, - { - "id": "7dc323ab-5ebc-50ab-9b5f-ab2c4d8ac0e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.879248, - "y": -2639.835948 - }, - "endPoint": { - "x": 1199.408113, - "y": -2639.811559 - } - } - }, - { - "id": "38bb1434-dacb-52a3-9afe-7009a6c5e79e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.408113, - "y": -2639.811559 - }, - "endPoint": { - "x": 1199.119809, - "y": -2639.762892 - } - } - }, - { - "id": "369d120c-4f10-5569-a826-2fef23666f18", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.119809, - "y": -2639.762892 - }, - "endPoint": { - "x": 1198.99392, - "y": -2639.730411 - } - } - }, - { - "id": "1b7f32a8-4abb-50b0-9165-fa9f53087c8a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.99392, - "y": -2639.730411 - }, - "endPoint": { - "x": 1198.773845, - "y": -2639.550827 - } - } - }, - { - "id": "ee969004-8ec3-5be1-8e88-78cb73eab03e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.773845, - "y": -2639.550827 - }, - "endPoint": { - "x": 1198.656061, - "y": -2639.274845 - } - } - }, - { - "id": "621129eb-2b60-5d95-835c-3e6c6742a671", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.656061, - "y": -2639.274845 - }, - "endPoint": { - "x": 1198.501752, - "y": -2639.189678 - } - } - }, - { - "id": "6bb3b5c1-09a9-5a51-8888-2f724fe1b426", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.501752, - "y": -2639.189678 - }, - "endPoint": { - "x": 1199.079693, - "y": -2638.225587 - } - } - }, - { - "id": "89fdd8ef-e074-548c-b529-6973bb50a1e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.079693, - "y": -2638.225587 - }, - "endPoint": { - "x": 1199.650657, - "y": -2637.720308 - } - } - }, - { - "id": "ff3e54f5-d4d6-5bcf-b425-c5f012f2bd6d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.650657, - "y": -2637.720308 - }, - "endPoint": { - "x": 1200.311293, - "y": -2637.141699 - } - } - }, - { - "id": "349b8f43-e848-58fe-b436-ad6b55fe0f8d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.311293, - "y": -2637.141699 - }, - "endPoint": { - "x": 1200.910882, - "y": -2636.530829 - } - } - }, - { - "id": "f1a6eefe-ae5e-5a72-a507-201b54814d34", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.910882, - "y": -2636.530829 - }, - "endPoint": { - "x": 1201.173639, - "y": -2636.336822 - } - } - }, - { - "id": "e467b788-35bb-5b72-9640-707612845939", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.173639, - "y": -2636.336822 - }, - "endPoint": { - "x": 1201.220424, - "y": -2636.342877 - } - } - }, - { - "id": "1630c246-1294-5ec5-83e5-0a97b3dad7f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.220424, - "y": -2636.342877 - }, - "endPoint": { - "x": 1201.258899, - "y": -2636.387471 - } - } - } - ] - }, - { - "id": "a96fc13d-afc7-5910-81a9-2b88e6dd21a1", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "414bcfaa-0c2d-50b2-901f-fd4ef8ce3405", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.488961, - "y": -2637.904682 - }, - "endPoint": { - "x": 1199.463927, - "y": -2638.075291 - } - } - }, - { - "id": "9552ad4f-2595-5f44-8ea6-0186abe36ac2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.463927, - "y": -2638.075291 - }, - "endPoint": { - "x": 1199.589405, - "y": -2638.175653 - } - } - }, - { - "id": "0b5b304f-60ec-584a-a5db-2065743518c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.589405, - "y": -2638.175653 - }, - "endPoint": { - "x": 1199.991184, - "y": -2638.065272 - } - } - }, - { - "id": "35c599b5-603f-565d-b617-bb3a6d7fe26c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.991184, - "y": -2638.065272 - }, - "endPoint": { - "x": 1200.12169, - "y": -2637.924776 - } - } - }, - { - "id": "a9006f7d-7664-5d77-ac66-1073b2a6fa16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.12169, - "y": -2637.924776 - }, - "endPoint": { - "x": 1200.151854, - "y": -2637.643784 - } - } - }, - { - "id": "430a4531-a134-51b1-8682-7f67b63bc6c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.151854, - "y": -2637.643784 - }, - "endPoint": { - "x": 1199.991184, - "y": -2637.483249 - } - } - }, - { - "id": "51a8bd30-adf0-517d-84c7-303adbb86311", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.991184, - "y": -2637.483249 - }, - "endPoint": { - "x": 1199.980975, - "y": -2637.431004 - } - } - }, - { - "id": "50eb0bf2-ae3c-5e24-bdb5-8eec068fa61b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.980975, - "y": -2637.431004 - }, - "endPoint": { - "x": 1199.483215, - "y": -2637.875779 - } - } - }, - { - "id": "7b290b5a-ddf8-5751-b2f0-dc10d0502efe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.483215, - "y": -2637.875779 - }, - "endPoint": { - "x": 1199.488961, - "y": -2637.904682 - } - } - } - ] - }, - { - "id": "2e9de439-c480-589b-bbab-e190183a6d14", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "3a4ef37d-179e-5c30-b827-2ddcd0957063", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.65093, - "y": -2639.724245 - }, - "endPoint": { - "x": 1201.701306, - "y": -2639.915665 - } - } - }, - { - "id": "7234f195-8bcb-58e6-922e-d507544199ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.701306, - "y": -2639.915665 - }, - "endPoint": { - "x": 1202.02398, - "y": -2640.157513 - } - } - }, - { - "id": "0bb60ff3-de52-58ec-93f1-4de13ce92fc3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.02398, - "y": -2640.157513 - }, - "endPoint": { - "x": 1202.245902, - "y": -2640.308634 - } - } - }, - { - "id": "6b52f1bf-2a81-527c-a057-7e67c0e692ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.245902, - "y": -2640.308634 - }, - "endPoint": { - "x": 1202.487831, - "y": -2640.238111 - } - } - }, - { - "id": "e8186c99-f07e-52d0-b45f-a1c857a94640", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.487831, - "y": -2640.238111 - }, - "endPoint": { - "x": 1202.659274, - "y": -2640.217962 - } - } - }, - { - "id": "8eb0fcf8-31ba-55a6-b77f-e773c70c3b6f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.659274, - "y": -2640.217962 - }, - "endPoint": { - "x": 1202.669431, - "y": -2639.814917 - } - } - }, - { - "id": "d2866257-e12c-5fa2-bb80-d74e94aec489", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.669431, - "y": -2639.814917 - }, - "endPoint": { - "x": 1202.669431, - "y": -2639.583143 - } - } - }, - { - "id": "772a0747-4bc3-5779-8bad-041fa4f84723", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.669431, - "y": -2639.583143 - }, - "endPoint": { - "x": 1202.487831, - "y": -2639.593218 - } - } - }, - { - "id": "93671a4e-2cec-51d0-b33a-1529845cf91a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.487831, - "y": -2639.593218 - }, - "endPoint": { - "x": 1202.360813, - "y": -2639.682459 - } - } - }, - { - "id": "e0ee88b5-6430-56c3-9367-320cad71561f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.360813, - "y": -2639.682459 - }, - "endPoint": { - "x": 1202.034343, - "y": -2639.65774 - } - } - }, - { - "id": "c11794f4-d3a0-5519-bac6-6ab37a065605", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.034343, - "y": -2639.65774 - }, - "endPoint": { - "x": 1201.866183, - "y": -2639.529246 - } - } - }, - { - "id": "603fcca6-c9aa-57b2-82d2-8e49c15fbd5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.866183, - "y": -2639.529246 - }, - "endPoint": { - "x": 1201.678221, - "y": -2639.55892 - } - } - }, - { - "id": "f70cbcb4-7b44-5368-9594-78f81213953d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.678221, - "y": -2639.55892 - }, - "endPoint": { - "x": 1201.64857, - "y": -2639.66765 - } - } - }, - { - "id": "3ec94fc7-5bfd-52da-8113-14fad6368229", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.64857, - "y": -2639.66765 - }, - "endPoint": { - "x": 1201.65093, - "y": -2639.724245 - } - } - } - ] - }, - { - "id": "70b990c8-523b-5e9f-baed-a1d271c15662", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "1c29c55e-4bb1-541f-8578-588663bc5f04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.231811, - "y": -2638.413263 - }, - "endPoint": { - "x": 1204.353596, - "y": -2638.247773 - } - } - }, - { - "id": "dc823e48-cb2e-55f1-9c46-89b64e1a9c61", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.353596, - "y": -2638.247773 - }, - "endPoint": { - "x": 1204.533863, - "y": -2638.189362 - } - } - }, - { - "id": "5474eeb8-831c-5f4d-858b-62572dd7a05e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.533863, - "y": -2638.189362 - }, - "endPoint": { - "x": 1204.718952, - "y": -2638.228284 - } - } - }, - { - "id": "45a38941-141e-5806-87c9-16b7bc2c6a1a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.718952, - "y": -2638.228284 - }, - "endPoint": { - "x": 1205.069738, - "y": -2638.174773 - } - } - }, - { - "id": "c1b0c1e3-6572-5664-83bd-0c672cb59256", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.069738, - "y": -2638.174773 - }, - "endPoint": { - "x": 1205.308486, - "y": -2638.194206 - } - } - }, - { - "id": "73d8f79b-c3a9-567c-8f69-cc95de0ecb15", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.308486, - "y": -2638.194206 - }, - "endPoint": { - "x": 1205.459512, - "y": -2638.359751 - } - } - }, - { - "id": "10f1fac9-0c63-5e0e-9721-be50eb453bf7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.459512, - "y": -2638.359751 - }, - "endPoint": { - "x": 1205.556981, - "y": -2638.510652 - } - } - }, - { - "id": "30b886aa-824c-5386-9e55-cfe6603cb25a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.556981, - "y": -2638.510652 - }, - "endPoint": { - "x": 1205.405956, - "y": -2638.559319 - } - } - }, - { - "id": "6fce22a7-f0f1-5625-8953-4650f24f6a1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.405956, - "y": -2638.559319 - }, - "endPoint": { - "x": 1205.300278, - "y": -2638.64867 - } - } - }, - { - "id": "33ef4cab-f408-5a01-a636-46cd440bd01a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.300278, - "y": -2638.64867 - }, - "endPoint": { - "x": 1205.152125, - "y": -2638.660617 - } - } - }, - { - "id": "24a736a3-39b2-5a26-b557-a3c7113c6a48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.152125, - "y": -2638.660617 - }, - "endPoint": { - "x": 1204.853459, - "y": -2638.674986 - } - } - }, - { - "id": "68e25dda-ab5e-5f1f-88e2-bd108289d143", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.853459, - "y": -2638.674986 - }, - "endPoint": { - "x": 1204.647953, - "y": -2638.691667 - } - } - }, - { - "id": "21f5b4f9-1fc2-5bb1-bcd6-0c08ebe1dca4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.647953, - "y": -2638.691667 - }, - "endPoint": { - "x": 1204.382632, - "y": -2638.610519 - } - } - }, - { - "id": "621c309e-c8fe-53b0-9d12-850b5fe7f953", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.382632, - "y": -2638.610519 - }, - "endPoint": { - "x": 1204.220217, - "y": -2638.538839 - } - } - }, - { - "id": "592f1239-6e18-5977-bd1f-c98afffe0fa7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.220217, - "y": -2638.538839 - }, - "endPoint": { - "x": 1204.215395, - "y": -2638.467215 - } - } - }, - { - "id": "12cd1db3-1148-5294-9f01-8dfb8508f244", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.215395, - "y": -2638.467215 - }, - "endPoint": { - "x": 1204.231811, - "y": -2638.413263 - } - } - } - ] - }, - { - "id": "2dc849a2-30d0-5056-adc6-d52599c94a93", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "e90a70f8-9146-5ff7-8890-7bb0839a7280", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.323535, - "y": -2640.003199 - }, - "endPoint": { - "x": 1204.545662, - "y": -2640.010741 - } - } - }, - { - "id": "0877effd-e0a9-57f3-afcb-aa48b68e4a58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.545662, - "y": -2640.010741 - }, - "endPoint": { - "x": 1204.669909, - "y": -2639.965598 - } - } - }, - { - "id": "0d339fb5-e73b-5b60-99e8-4b09110cf9b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.669909, - "y": -2639.965598 - }, - "endPoint": { - "x": 1204.790361, - "y": -2639.897882 - } - } - }, - { - "id": "b10b09cd-3ccf-532a-bb88-f1fc9d718ede", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.790361, - "y": -2639.897882 - }, - "endPoint": { - "x": 1205.076612, - "y": -2639.864025 - } - } - }, - { - "id": "a9da0615-df4b-5590-a71c-fda2fe94cc1c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.076612, - "y": -2639.864025 - }, - "endPoint": { - "x": 1205.253493, - "y": -2639.894084 - } - } - }, - { - "id": "73628abd-b99b-53c4-81db-158805583f01", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.253493, - "y": -2639.894084 - }, - "endPoint": { - "x": 1205.407905, - "y": -2639.98817 - } - } - }, - { - "id": "d0e521ca-7f66-53cf-81f8-f72ed9c95ffa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.407905, - "y": -2639.98817 - }, - "endPoint": { - "x": 1205.539745, - "y": -2640.025771 - } - } - }, - { - "id": "b158a36a-4634-502e-89d7-d0f45c81e242", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.539745, - "y": -2640.025771 - }, - "endPoint": { - "x": 1205.528356, - "y": -2640.13863 - } - } - }, - { - "id": "b6773e3a-74e7-57ca-a448-15cb7ebfe95b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.528356, - "y": -2640.13863 - }, - "endPoint": { - "x": 1205.532152, - "y": -2640.259031 - } - } - }, - { - "id": "5ede84a2-2764-59be-a34b-3ca735828164", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.532152, - "y": -2640.259031 - }, - "endPoint": { - "x": 1205.483213, - "y": -2640.360605 - } - } - }, - { - "id": "acdf3dab-a7b3-544e-909d-eadc30dc7e4b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.483213, - "y": -2640.360605 - }, - "endPoint": { - "x": 1205.341113, - "y": -2640.409877 - } - } - }, - { - "id": "465301fe-ec5b-5762-b63f-59843eecb6af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.341113, - "y": -2640.409877 - }, - "endPoint": { - "x": 1204.858076, - "y": -2640.399197 - } - } - }, - { - "id": "be802e59-3dc7-5d08-b7f7-0271ba3bf445", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.858076, - "y": -2640.399197 - }, - "endPoint": { - "x": 1204.552536, - "y": -2640.388296 - } - } - }, - { - "id": "48905bb5-b3f7-506e-af9e-337cb7f30527", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.552536, - "y": -2640.388296 - }, - "endPoint": { - "x": 1204.35965, - "y": -2640.368312 - } - } - }, - { - "id": "ec405dd0-d25f-5f5b-a277-1c995c097cde", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.35965, - "y": -2640.368312 - }, - "endPoint": { - "x": 1204.310607, - "y": -2640.33016 - } - } - }, - { - "id": "e0877549-62a3-513e-8351-d679ac5d498c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.310607, - "y": -2640.33016 - }, - "endPoint": { - "x": 1204.294191, - "y": -2640.186581 - } - } - }, - { - "id": "1b154d04-96fe-56a6-8eb8-b948707ab2ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.294191, - "y": -2640.186581 - }, - "endPoint": { - "x": 1204.314198, - "y": -2640.082971 - } - } - }, - { - "id": "8b9f420f-ba21-59db-8208-47786025ca0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.314198, - "y": -2640.082971 - }, - "endPoint": { - "x": 1204.323535, - "y": -2640.003199 - } - } - } - ] - }, - { - "id": "c26034db-b63d-5197-a041-2ce1a9fe5dc4", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "1702b2d9-a186-5da5-a417-54dda558bb32", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.398842, - "y": -2641.9964 - }, - "endPoint": { - "x": 1204.542071, - "y": -2641.973498 - } - } - }, - { - "id": "afeb67a7-1369-5e69-8a6e-84d3faf0e597", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.542071, - "y": -2641.973498 - }, - "endPoint": { - "x": 1204.674013, - "y": -2641.864658 - } - } - }, - { - "id": "774f6f6f-1959-5300-9003-0cba6792febb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.674013, - "y": -2641.864658 - }, - "endPoint": { - "x": 1204.851715, - "y": -2641.824579 - } - } - }, - { - "id": "0526e82b-8c25-5fbc-8b96-8add63caf8ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.851715, - "y": -2641.824579 - }, - "endPoint": { - "x": 1205.060915, - "y": -2641.818854 - } - } - }, - { - "id": "244cad0f-efc2-530e-90eb-c4e8aa40d437", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.060915, - "y": -2641.818854 - }, - "endPoint": { - "x": 1205.301715, - "y": -2641.850344 - } - } - }, - { - "id": "6e624cb7-f1a4-5b01-a57d-4d0b8fc43d2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.301715, - "y": -2641.850344 - }, - "endPoint": { - "x": 1205.410573, - "y": -2641.91905 - } - } - }, - { - "id": "8b9c9dfa-2671-5b9c-8eaa-4e9e5ac3384a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.410573, - "y": -2641.91905 - }, - "endPoint": { - "x": 1205.508042, - "y": -2641.993537 - } - } - }, - { - "id": "d4cd813d-d383-5fe5-abfa-a689dc4cb233", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.508042, - "y": -2641.993537 - }, - "endPoint": { - "x": 1205.57114, - "y": -2642.065162 - } - } - }, - { - "id": "181d25f0-b849-5ae3-9798-602f4857932e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.57114, - "y": -2642.065162 - }, - "endPoint": { - "x": 1205.631263, - "y": -2642.136731 - } - } - }, - { - "id": "1d1a080e-5fbe-5e4d-9b1e-e0370ea67bbb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.631263, - "y": -2642.136731 - }, - "endPoint": { - "x": 1205.508042, - "y": -2642.302881 - } - } - }, - { - "id": "093bd487-45cf-5cf7-9152-b7af1e7fd684", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.508042, - "y": -2642.302881 - }, - "endPoint": { - "x": 1205.333213, - "y": -2642.351548 - } - } - }, - { - "id": "dd4e6dff-4967-518a-8fec-50c78b27d3aa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.333213, - "y": -2642.351548 - }, - "endPoint": { - "x": 1205.255853, - "y": -2642.405941 - } - } - }, - { - "id": "f72c5311-0a8b-5b95-82e5-2cf894c9fa79", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.255853, - "y": -2642.405941 - }, - "endPoint": { - "x": 1205.158384, - "y": -2642.471839 - } - } - }, - { - "id": "8c4cdc46-1538-5c33-8509-86dc6037b379", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.158384, - "y": -2642.471839 - }, - "endPoint": { - "x": 1204.9577, - "y": -2642.460388 - } - } - }, - { - "id": "f845b46c-c018-59e3-8177-3baed79a5cee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.9577, - "y": -2642.460388 - }, - "endPoint": { - "x": 1204.745628, - "y": -2642.388764 - } - } - }, - { - "id": "911766c7-ce74-5eff-a428-a824b8b7fe5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.745628, - "y": -2642.388764 - }, - "endPoint": { - "x": 1204.630922, - "y": -2642.320058 - } - } - }, - { - "id": "5758e121-be4f-5f21-b848-d06fecbad460", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.630922, - "y": -2642.320058 - }, - "endPoint": { - "x": 1204.458966, - "y": -2642.196904 - } - } - }, - { - "id": "6e4cc345-7c49-5280-a910-84c209b4de0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.458966, - "y": -2642.196904 - }, - "endPoint": { - "x": 1204.384479, - "y": -2642.082338 - } - } - }, - { - "id": "70101c75-6dd1-5bb7-8440-bf8d7857419c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.384479, - "y": -2642.082338 - }, - "endPoint": { - "x": 1204.398842, - "y": -2641.9964 - } - } - } - ] - }, - { - "id": "9e13c545-872e-525f-a11f-3283cb5de14b", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "e08b55f5-1bf6-5094-9e44-8c57d9f40366", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.50671, - "y": -2647.611716 - }, - "endPoint": { - "x": 1199.393133, - "y": -2647.522089 - } - } - }, - { - "id": "5b96c9d5-f19f-5a7f-a4d8-71730c40446d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.393133, - "y": -2647.522089 - }, - "endPoint": { - "x": 1199.129966, - "y": -2647.510143 - } - } - }, - { - "id": "bd5ac3eb-a322-5dc0-b5d7-5c85e15dd825", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.129966, - "y": -2647.510143 - }, - "endPoint": { - "x": 1199.010438, - "y": -2647.426462 - } - } - }, - { - "id": "c81c4f2b-cf92-50d2-adc3-73c088cf7a61", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.010438, - "y": -2647.426462 - }, - "endPoint": { - "x": 1198.836738, - "y": -2647.106988 - } - } - }, - { - "id": "5d40434a-a526-5db1-a3c1-107a7ca5af5b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.836738, - "y": -2647.106988 - }, - "endPoint": { - "x": 1198.794878, - "y": -2646.760483 - } - } - }, - { - "id": "0ee0cdfd-3824-50e0-977e-d8a7a3e85ae3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.794878, - "y": -2646.760483 - }, - "endPoint": { - "x": 1198.938414, - "y": -2646.282456 - } - } - }, - { - "id": "13959de4-817a-5cf9-8feb-fdd23b6fce1d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.938414, - "y": -2646.282456 - }, - "endPoint": { - "x": 1199.345014, - "y": -2645.894111 - } - } - }, - { - "id": "0fea6aad-f6e5-5ea2-bb58-0a6e3e5ca965", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.345014, - "y": -2645.894111 - }, - "endPoint": { - "x": 1199.673844, - "y": -2645.613285 - } - } - }, - { - "id": "06c2004e-0155-5c70-8ee6-075236f29f88", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.673844, - "y": -2645.613285 - }, - "endPoint": { - "x": 1200.283796, - "y": -2645.565499 - } - } - }, - { - "id": "17fc2e12-d2c5-53e8-ab62-da44d525739e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.283796, - "y": -2645.565499 - }, - "endPoint": { - "x": 1200.53619, - "y": -2645.438876 - } - } - }, - { - "id": "200c02a8-fb2b-5ffa-b5b0-494b213cc8d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.53619, - "y": -2645.438876 - }, - "endPoint": { - "x": 1200.805308, - "y": -2645.444877 - } - } - }, - { - "id": "97079ed5-ff2c-581a-b348-0da34d674020", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.805308, - "y": -2645.444877 - }, - "endPoint": { - "x": 1200.990602, - "y": -2645.534504 - } - } - }, - { - "id": "ee11d3cd-e6f2-5ac3-b308-53c2eb9366da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.990602, - "y": -2645.534504 - }, - "endPoint": { - "x": 1201.451067, - "y": -2645.474716 - } - } - }, - { - "id": "7e90de55-f51a-5478-9fd2-a701678bb6c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.451067, - "y": -2645.474716 - }, - "endPoint": { - "x": 1202.043064, - "y": -2645.438876 - } - } - }, - { - "id": "3eadaa8b-5d5b-572f-864a-c9a0a5752d56", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.043064, - "y": -2645.438876 - }, - "endPoint": { - "x": 1202.51543, - "y": -2645.516556 - } - } - }, - { - "id": "e28c46c9-9ac0-5f50-a5b3-3a6dec9904fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.51543, - "y": -2645.516556 - }, - "endPoint": { - "x": 1202.641011, - "y": -2645.648023 - } - } - }, - { - "id": "a97cb294-8521-5b50-a87c-f779cfd963f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.641011, - "y": -2645.648023 - }, - "endPoint": { - "x": 1202.727297, - "y": -2645.875008 - } - } - }, - { - "id": "5871340f-d53f-5acb-98a0-228e6f2635e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.727297, - "y": -2645.875008 - }, - "endPoint": { - "x": 1202.894739, - "y": -2645.851115 - } - } - }, - { - "id": "a9d5161c-7e74-5368-a6a6-edd0be219592", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.894739, - "y": -2645.851115 - }, - "endPoint": { - "x": 1203.18766, - "y": -2645.516501 - } - } - }, - { - "id": "7f354c92-c603-5671-ade3-ff91e9207e75", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.18766, - "y": -2645.516501 - }, - "endPoint": { - "x": 1203.379007, - "y": -2645.396981 - } - } - }, - { - "id": "c0699c61-fe4f-5647-956c-e33b32ba1fcd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.379007, - "y": -2645.396981 - }, - "endPoint": { - "x": 1203.516592, - "y": -2645.307354 - } - } - }, - { - "id": "3c3f3dd0-e471-5362-bfaf-d064b12fae87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.516592, - "y": -2645.307354 - }, - "endPoint": { - "x": 1203.899287, - "y": -2645.241676 - } - } - }, - { - "id": "00572f8f-0eed-50f4-8e9f-7ac5c500956e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.899287, - "y": -2645.241676 - }, - "endPoint": { - "x": 1204.03677, - "y": -2645.492608 - } - } - }, - { - "id": "6733ddbd-c479-54d0-ac00-7119669a49ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.03677, - "y": -2645.492608 - }, - "endPoint": { - "x": 1204.108589, - "y": -2645.671861 - } - } - }, - { - "id": "0ef7bd47-6848-5bc2-91b0-9761a31dffe6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.108589, - "y": -2645.671861 - }, - "endPoint": { - "x": 1204.162351, - "y": -2645.869007 - } - } - }, - { - "id": "a4096bb0-8370-5ba1-86f4-61bc558b85ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.162351, - "y": -2645.869007 - }, - "endPoint": { - "x": 1204.156401, - "y": -2646.2813 - } - } - }, - { - "id": "dd3cdefb-55ff-557c-b914-764f737501b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.156401, - "y": -2646.2813 - }, - "endPoint": { - "x": 1204.317789, - "y": -2646.227513 - } - } - }, - { - "id": "531306b1-9307-5708-8fdd-bf3d324ff46f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.317789, - "y": -2646.227513 - }, - "endPoint": { - "x": 1204.473329, - "y": -2646.0841 - } - } - }, - { - "id": "69532470-c275-57fb-999a-d2c301c29a0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.473329, - "y": -2646.0841 - }, - "endPoint": { - "x": 1204.527091, - "y": -2645.946687 - } - } - }, - { - "id": "288c5379-8b28-515c-a87c-12969fc785ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.527091, - "y": -2645.946687 - }, - "endPoint": { - "x": 1204.521141, - "y": -2645.785381 - } - } - }, - { - "id": "12a9de3d-0dae-51db-84fd-d966b79d2ce4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.521141, - "y": -2645.785381 - }, - "endPoint": { - "x": 1204.389609, - "y": -2645.689754 - } - } - }, - { - "id": "a617ce13-a14b-5c52-a1e0-68798226ec7b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.389609, - "y": -2645.689754 - }, - "endPoint": { - "x": 1204.281982, - "y": -2645.641968 - } - } - }, - { - "id": "033abb13-e798-5436-a801-19810227acc4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.281982, - "y": -2645.641968 - }, - "endPoint": { - "x": 1204.297269, - "y": -2645.408817 - } - } - }, - { - "id": "663659e6-5ed4-5839-8d4d-09d634db10be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.297269, - "y": -2645.408817 - }, - "endPoint": { - "x": 1204.400381, - "y": -2645.231546 - } - } - }, - { - "id": "73ac66a2-79be-5116-8c45-d17e5dcb2fd8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.400381, - "y": -2645.231546 - }, - "endPoint": { - "x": 1204.569465, - "y": -2645.206827 - } - } - }, - { - "id": "f62a53f3-45a0-5e70-9641-e1e9139bb9a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.569465, - "y": -2645.206827 - }, - "endPoint": { - "x": 1204.771585, - "y": -2645.219214 - } - } - }, - { - "id": "b0fcea27-d312-57ef-be03-45ac79a86952", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.771585, - "y": -2645.219214 - }, - "endPoint": { - "x": 1205.031469, - "y": -2645.346993 - } - } - }, - { - "id": "b8b246b6-3e79-55bd-adf5-c345d340ca24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.031469, - "y": -2645.346993 - }, - "endPoint": { - "x": 1205.146995, - "y": -2645.392301 - } - } - }, - { - "id": "d8dc1132-7405-5d99-a35b-f8ad1d413808", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.146995, - "y": -2645.392301 - }, - "endPoint": { - "x": 1205.464642, - "y": -2645.433536 - } - } - }, - { - "id": "51a2c2e6-6bc4-5948-9b32-595fa1261153", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.464642, - "y": -2645.433536 - }, - "endPoint": { - "x": 1205.613103, - "y": -2645.52008 - } - } - }, - { - "id": "9489e10d-5d62-570b-bd38-71e744cf55c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.613103, - "y": -2645.52008 - }, - "endPoint": { - "x": 1205.779622, - "y": -2645.672963 - } - } - }, - { - "id": "43298899-212b-5e0b-a67d-2339420c9389", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.779622, - "y": -2645.672963 - }, - "endPoint": { - "x": 1206.126099, - "y": -2645.94498 - } - } - }, - { - "id": "5eb832ea-da57-5836-967e-22605bef628d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.126099, - "y": -2645.94498 - }, - "endPoint": { - "x": 1206.406605, - "y": -2646.184021 - } - } - }, - { - "id": "be1fc76a-4d7a-5761-9616-5d2d19b11207", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.406605, - "y": -2646.184021 - }, - "endPoint": { - "x": 1206.608725, - "y": -2646.33239 - } - } - }, - { - "id": "6a01c0f8-9bec-564e-ac88-dedfb415720e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.608725, - "y": -2646.33239 - }, - "endPoint": { - "x": 1206.84378, - "y": -2646.629181 - } - } - }, - { - "id": "b97b341e-0c82-55d4-8abf-b649c33c2a36", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.84378, - "y": -2646.629181 - }, - "endPoint": { - "x": 1206.975825, - "y": -2646.806398 - } - } - }, - { - "id": "1a80796b-6035-5b69-9f32-63b7891f4a24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.975825, - "y": -2646.806398 - }, - "endPoint": { - "x": 1207.263, - "y": -2647.93207 - } - } - }, - { - "id": "9d271622-6a2d-5dae-a140-8a8e9a1ab4fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.263, - "y": -2647.93207 - }, - "endPoint": { - "x": 1207.344258, - "y": -2648.923358 - } - } - }, - { - "id": "2f90b105-b0b3-5bd3-be76-cef35592ab52", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.344258, - "y": -2648.923358 - }, - "endPoint": { - "x": 1207.367548, - "y": -2649.418507 - } - } - }, - { - "id": "7cd0a7a8-5742-5cd9-b79b-412c19adf2be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.367548, - "y": -2649.418507 - }, - "endPoint": { - "x": 1207.292138, - "y": -2649.650336 - } - } - }, - { - "id": "6e88c1ec-8d5d-5f6c-ae75-8b3881f95f50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.292138, - "y": -2649.650336 - }, - "endPoint": { - "x": 1207.268951, - "y": -2649.870658 - } - } - }, - { - "id": "2440336c-bfff-5ea6-9bc9-27025ac5282f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.268951, - "y": -2649.870658 - }, - "endPoint": { - "x": 1207.251509, - "y": -2650.137281 - } - } - }, - { - "id": "2bdb7c5b-5ef9-5912-97e7-bb2079c0d8a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.251509, - "y": -2650.137281 - }, - "endPoint": { - "x": 1207.083246, - "y": -2650.554694 - } - } - }, - { - "id": "e30578f9-82a1-53eb-91a8-e6a008a5ab04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.083246, - "y": -2650.554694 - }, - "endPoint": { - "x": 1206.796892, - "y": -2651.262623 - } - } - }, - { - "id": "c20fece6-348e-55a0-aa46-1ca8666ede91", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.796892, - "y": -2651.262623 - }, - "endPoint": { - "x": 1206.292104, - "y": -2651.663191 - } - } - }, - { - "id": "7dc005ea-8d3b-5b2f-b770-6be2c2ce482d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.292104, - "y": -2651.663191 - }, - "endPoint": { - "x": 1205.753664, - "y": -2651.982499 - } - } - }, - { - "id": "9232d6f1-d392-5f81-8d79-ca8abc66891e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.753664, - "y": -2651.982499 - }, - "endPoint": { - "x": 1205.265805, - "y": -2652.069813 - } - } - }, - { - "id": "e4dcc5eb-00ef-5b9a-90a9-5574e1d57e89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.265805, - "y": -2652.069813 - }, - "endPoint": { - "x": 1204.806982, - "y": -2652.084402 - } - } - }, - { - "id": "295e14eb-8ed1-5556-adb1-c2f287647274", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.806982, - "y": -2652.084402 - }, - "endPoint": { - "x": 1204.428288, - "y": -2652.142594 - } - } - }, - { - "id": "32a7eab6-f511-5d75-90a3-d030438de5d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.428288, - "y": -2652.142594 - }, - "endPoint": { - "x": 1204.280751, - "y": -2652.274611 - } - } - }, - { - "id": "512ecab2-11fb-506c-b9c7-4f4312cacb95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.280751, - "y": -2652.274611 - }, - "endPoint": { - "x": 1204.261462, - "y": -2652.432174 - } - } - }, - { - "id": "8c222d60-cb6b-54ab-a0c2-e1b41bf1873a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.261462, - "y": -2652.432174 - }, - "endPoint": { - "x": 1204.322098, - "y": -2652.945379 - } - } - }, - { - "id": "670d308e-a09a-5fcd-91aa-29bd50e65f58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.322098, - "y": -2652.945379 - }, - "endPoint": { - "x": 1204.348979, - "y": -2653.164932 - } - } - }, - { - "id": "13335ef8-8ab6-504c-8940-a489bfc9c0bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.348979, - "y": -2653.164932 - }, - "endPoint": { - "x": 1204.456606, - "y": -2653.267936 - } - } - }, - { - "id": "a7519273-e918-5e98-bb4a-4bd6560e5ec2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.456606, - "y": -2653.267936 - }, - "endPoint": { - "x": 1204.505956, - "y": -2653.362022 - } - } - }, - { - "id": "6d16b2b3-972c-5102-a846-63c3f07f7d9d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.505956, - "y": -2653.362022 - }, - "endPoint": { - "x": 1204.514882, - "y": -2653.509895 - } - } - }, - { - "id": "f7750295-6b7d-55fd-a069-3f22472120be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.514882, - "y": -2653.509895 - }, - "endPoint": { - "x": 1204.37586, - "y": -2653.715959 - } - } - }, - { - "id": "9e2226cb-3df6-5b59-8ce3-2b37227d7c2a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.37586, - "y": -2653.715959 - }, - "endPoint": { - "x": 1204.209957, - "y": -2653.993757 - } - } - }, - { - "id": "3a0378e5-4cfa-5925-8bf0-93f72dad5994", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.209957, - "y": -2653.993757 - }, - "endPoint": { - "x": 1203.936531, - "y": -2654.07887 - } - } - }, - { - "id": "cc5fa44e-e865-5a94-9366-22fac13e7414", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.936531, - "y": -2654.07887 - }, - "endPoint": { - "x": 1203.479144, - "y": -2654.04303 - } - } - }, - { - "id": "79a7d4c4-9759-57cf-99f2-71563bd7f209", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.479144, - "y": -2654.04303 - }, - "endPoint": { - "x": 1203.241524, - "y": -2653.819019 - } - } - }, - { - "id": "9c4f07be-7ad0-57ab-993d-46903e1f1e39", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.241524, - "y": -2653.819019 - }, - "endPoint": { - "x": 1203.04874, - "y": -2653.581574 - } - } - }, - { - "id": "47d323c7-2ae2-50ab-be56-ec917a7586b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.04874, - "y": -2653.581574 - }, - "endPoint": { - "x": 1202.981538, - "y": -2653.397862 - } - } - }, - { - "id": "f999e4f1-6208-50ad-b235-82ed0d6a8ddf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.981538, - "y": -2653.397862 - }, - "endPoint": { - "x": 1203.075621, - "y": -2652.999166 - } - } - }, - { - "id": "1dd6344b-d1dc-57b8-af3a-e40a0a583c93", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.075621, - "y": -2652.999166 - }, - "endPoint": { - "x": 1203.138412, - "y": -2652.694502 - } - } - }, - { - "id": "d15fce33-8a0b-5c55-a5b4-c8e7991e69b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.138412, - "y": -2652.694502 - }, - "endPoint": { - "x": 1203.205717, - "y": -2652.457058 - } - } - }, - { - "id": "d7151f0e-8318-5cc4-8e02-434d69c96d68", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.205717, - "y": -2652.457058 - }, - "endPoint": { - "x": 1203.120457, - "y": -2652.237505 - } - } - }, - { - "id": "3b7f8bec-bf3e-527a-9e4a-f4d86dbef7e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.120457, - "y": -2652.237505 - }, - "endPoint": { - "x": 1203.0353, - "y": -2652.152393 - } - } - }, - { - "id": "83fe95a1-7e46-5a4a-b863-82ab46a391dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.0353, - "y": -2652.152393 - }, - "endPoint": { - "x": 1202.98595, - "y": -2652.121068 - } - } - }, - { - "id": "5fc2e431-ade2-53ee-8c57-384f62af091c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.98595, - "y": -2652.121068 - }, - "endPoint": { - "x": 1202.716935, - "y": -2652.129987 - } - } - }, - { - "id": "d96e1115-f059-5ad3-aae2-846124a337c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.716935, - "y": -2652.129987 - }, - "endPoint": { - "x": 1202.533077, - "y": -2652.10758 - } - } - }, - { - "id": "474a12be-dc55-52d6-bb97-a322e41abefc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.533077, - "y": -2652.10758 - }, - "endPoint": { - "x": 1202.479315, - "y": -2652.192747 - } - } - }, - { - "id": "de605e15-56fc-5c3b-9a06-087e0bb323bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.479315, - "y": -2652.192747 - }, - "endPoint": { - "x": 1202.421039, - "y": -2652.210639 - } - } - }, - { - "id": "65eea0b7-0c65-540e-87ef-7b9ce2c239c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.421039, - "y": -2652.210639 - }, - "endPoint": { - "x": 1202.100724, - "y": -2652.272024 - } - } - }, - { - "id": "f7822b3b-5589-5856-a0d0-333c64a20659", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.100724, - "y": -2652.272024 - }, - "endPoint": { - "x": 1201.907941, - "y": -2652.379543 - } - } - }, - { - "id": "1467df79-f8b8-5c44-a268-f4e630a13a91", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.907941, - "y": -2652.379543 - }, - "endPoint": { - "x": 1201.49539, - "y": -2652.415382 - } - } - }, - { - "id": "50a2bf72-828f-515a-b2f3-e2cca0db4f80", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.49539, - "y": -2652.415382 - }, - "endPoint": { - "x": 1200.988755, - "y": -2652.410923 - } - } - }, - { - "id": "82940a68-b390-57fb-af31-6d87ce717f45", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.988755, - "y": -2652.410923 - }, - "endPoint": { - "x": 1200.863276, - "y": -2652.312323 - } - } - }, - { - "id": "a5c4758b-c0fc-5230-aba9-5e51cd6c682b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.863276, - "y": -2652.312323 - }, - "endPoint": { - "x": 1200.603187, - "y": -2652.245158 - } - } - }, - { - "id": "560f9e19-9884-580c-91de-9a204776e252", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.603187, - "y": -2652.245158 - }, - "endPoint": { - "x": 1199.911464, - "y": -2652.236239 - } - } - }, - { - "id": "bca18bd5-cbd7-5739-ada3-4e189b94b28f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.911464, - "y": -2652.236239 - }, - "endPoint": { - "x": 1199.799836, - "y": -2652.241579 - } - } - }, - { - "id": "03b652a6-b9d2-5e90-99ef-a6485b3779ff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.799836, - "y": -2652.241579 - }, - "endPoint": { - "x": 1199.534925, - "y": -2652.014705 - } - } - }, - { - "id": "e4471395-4005-595b-9b7f-ce4c3a682159", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.534925, - "y": -2652.014705 - }, - "endPoint": { - "x": 1199.238619, - "y": -2651.460264 - } - } - }, - { - "id": "11238ed3-dfb6-5906-8a91-d0195cf0b02a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.238619, - "y": -2651.460264 - }, - "endPoint": { - "x": 1199.093544, - "y": -2650.993964 - } - } - }, - { - "id": "5cdb1a8b-25ee-52a4-9e18-b71bdbcf523c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.093544, - "y": -2650.993964 - }, - "endPoint": { - "x": 1198.909378, - "y": -2650.195748 - } - } - }, - { - "id": "f1fae8cc-6e8c-5f08-9106-9bf42d2ec9d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.909378, - "y": -2650.195748 - }, - "endPoint": { - "x": 1199.07959, - "y": -2648.815839 - } - } - }, - { - "id": "e48694be-13ba-51f9-9b7a-3e747701adfc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.07959, - "y": -2648.815839 - }, - "endPoint": { - "x": 1199.331882, - "y": -2648.110167 - } - } - }, - { - "id": "9cb7956d-53ec-5b17-b651-b5995d807723", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.331882, - "y": -2648.110167 - }, - "endPoint": { - "x": 1199.48342, - "y": -2647.886211 - } - } - }, - { - "id": "47747dd0-d473-5262-afa9-f76a89689b2f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.48342, - "y": -2647.886211 - }, - "endPoint": { - "x": 1199.50671, - "y": -2647.611716 - } - } - } - ] - }, - { - "id": "328c97cc-e6e9-54cb-84f7-279642b49a3d", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "e0c4cec1-d318-50b2-93ae-7d7c5a179f4e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.175279, - "y": -2648.994817 - }, - "endPoint": { - "x": 1204.152605, - "y": -2649.75323 - } - } - }, - { - "id": "cefae033-e590-53a3-99f5-fa612df3c7bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.152605, - "y": -2649.75323 - }, - "endPoint": { - "x": 1204.323637, - "y": -2650.147521 - } - } - }, - { - "id": "6ea8dcf8-035e-50d4-9ac0-405d13e7b375", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.323637, - "y": -2650.147521 - }, - "endPoint": { - "x": 1204.442037, - "y": -2650.200097 - } - } - }, - { - "id": "c8677422-27fa-5a4b-886b-ffbb0931ad7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.442037, - "y": -2650.200097 - }, - "endPoint": { - "x": 1204.678733, - "y": -2650.489291 - } - } - }, - { - "id": "92b6114d-7b48-5e45-8e91-f6fd753dfcd6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.678733, - "y": -2650.489291 - }, - "endPoint": { - "x": 1205.139198, - "y": -2650.489291 - } - } - }, - { - "id": "27e1af8d-573c-55bf-86fc-8087a808d69b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.139198, - "y": -2650.489291 - }, - "endPoint": { - "x": 1205.481263, - "y": -2650.173836 - } - } - }, - { - "id": "2eb9fb15-3a93-5a82-a6c1-d6c5d400ae67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.481263, - "y": -2650.173836 - }, - "endPoint": { - "x": 1205.665429, - "y": -2649.77949 - } - } - }, - { - "id": "2a66bd32-2ea3-5836-bb4b-c44388bb4a24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.665429, - "y": -2649.77949 - }, - "endPoint": { - "x": 1205.751715, - "y": -2649.579537 - } - } - }, - { - "id": "b275e733-e89b-53bb-b0fe-7d416daad5a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.751715, - "y": -2649.579537 - }, - "endPoint": { - "x": 1205.81153, - "y": -2648.891758 - } - } - }, - { - "id": "a8c82230-26bc-5e48-8d83-6e4747c9b4c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.81153, - "y": -2648.891758 - }, - "endPoint": { - "x": 1205.766694, - "y": -2648.29366 - } - } - }, - { - "id": "08d086a4-f86d-5fcd-9a04-644efa7d7f68", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.766694, - "y": -2648.29366 - }, - "endPoint": { - "x": 1205.676817, - "y": -2648.02456 - } - } - }, - { - "id": "ac0dba17-1807-5d09-8a8b-48fb1aba5c95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.676817, - "y": -2648.02456 - }, - "endPoint": { - "x": 1205.497269, - "y": -2647.725511 - } - } - }, - { - "id": "8a9e982f-7ea1-5225-89c0-481f2f68a2cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.497269, - "y": -2647.725511 - }, - "endPoint": { - "x": 1205.542207, - "y": -2647.48625 - } - } - }, - { - "id": "162c6f63-5494-5947-a38d-cc20ebbf434f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.542207, - "y": -2647.48625 - }, - "endPoint": { - "x": 1205.287864, - "y": -2647.276937 - } - } - }, - { - "id": "9f45b659-a29c-51f3-ad42-90b5725439a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.287864, - "y": -2647.276937 - }, - "endPoint": { - "x": 1204.928664, - "y": -2646.977888 - } - } - }, - { - "id": "913dfac1-4b17-583a-91a8-42601ac31b4d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.928664, - "y": -2646.977888 - }, - "endPoint": { - "x": 1204.345081, - "y": -2647.097519 - } - } - }, - { - "id": "23689755-ef08-55e3-b8d6-9d437a5494d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.345081, - "y": -2647.097519 - }, - "endPoint": { - "x": 1204.22545, - "y": -2647.516199 - } - } - }, - { - "id": "50052bf7-8c2f-5911-bebe-85bb537528ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.22545, - "y": -2647.516199 - }, - "endPoint": { - "x": 1204.21047, - "y": -2648.233872 - } - } - }, - { - "id": "102ee639-f603-57f4-800f-9b7b5f7f150c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.21047, - "y": -2648.233872 - }, - "endPoint": { - "x": 1204.175279, - "y": -2648.994817 - } - } - } - ] - }, - { - "id": "8de02553-a655-54aa-a479-b1cd0fa089d0", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "5a9d788a-52dc-5ec9-938a-5c709fad4b2e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.122955, - "y": -2647.578409 - }, - "endPoint": { - "x": 1200.866867, - "y": -2647.672495 - } - } - }, - { - "id": "7375d467-7765-5db8-96d2-00edf7e90d0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.866867, - "y": -2647.672495 - }, - "endPoint": { - "x": 1200.685985, - "y": -2647.830607 - } - } - }, - { - "id": "bab39c88-7e56-54f1-891c-97640f26985f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.685985, - "y": -2647.830607 - }, - "endPoint": { - "x": 1200.441183, - "y": -2647.951064 - } - } - }, - { - "id": "085741c9-1427-5bae-ab07-b026456763ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.441183, - "y": -2647.951064 - }, - "endPoint": { - "x": 1200.249015, - "y": -2648.222036 - } - } - }, - { - "id": "241e7b75-0ba8-5097-b3ba-3af3a7038c54", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.249015, - "y": -2648.222036 - }, - "endPoint": { - "x": 1200.203872, - "y": -2648.429091 - } - } - }, - { - "id": "c218c94f-b764-509c-92c0-85b429a36167", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.203872, - "y": -2648.429091 - }, - "endPoint": { - "x": 1199.992825, - "y": -2648.688832 - } - } - }, - { - "id": "0cce24ff-3368-566a-950b-48c66e1c7fa2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.992825, - "y": -2648.688832 - }, - "endPoint": { - "x": 1199.940089, - "y": -2648.775375 - } - } - }, - { - "id": "4d44e545-5735-55e2-bab4-80535195cdc7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.940089, - "y": -2648.775375 - }, - "endPoint": { - "x": 1199.88684, - "y": -2649.12744 - } - } - }, - { - "id": "399ec993-2220-5a44-b80b-6694861ef216", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.88684, - "y": -2649.12744 - }, - "endPoint": { - "x": 1199.917004, - "y": -2649.477469 - } - } - }, - { - "id": "8bd1f36b-2b41-55fc-921c-872fa504957e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.917004, - "y": -2649.477469 - }, - "endPoint": { - "x": 1199.973537, - "y": -2649.744752 - } - } - }, - { - "id": "4db3684a-6483-5090-b008-4a947b4527ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.973537, - "y": -2649.744752 - }, - "endPoint": { - "x": 1199.954658, - "y": -2649.917894 - } - } - }, - { - "id": "c1344e25-9f5a-5a83-8ca4-76e3241bf3b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.954658, - "y": -2649.917894 - }, - "endPoint": { - "x": 1200.094091, - "y": -2650.072208 - } - } - }, - { - "id": "f2c215c8-cafd-586e-b9d4-50a6b2025229", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.094091, - "y": -2650.072208 - }, - "endPoint": { - "x": 1200.35777, - "y": -2650.29633 - } - } - }, - { - "id": "120a3a80-46a1-50f7-97cd-c59bd1466ecf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.35777, - "y": -2650.29633 - }, - "endPoint": { - "x": 1200.892722, - "y": -2650.458186 - } - } - }, - { - "id": "d36db09a-d439-52af-a452-7e0f53f59c7d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.892722, - "y": -2650.458186 - }, - "endPoint": { - "x": 1201.393714, - "y": -2650.522213 - } - } - }, - { - "id": "7e11009b-988a-5795-ab8a-7a2346822a4d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.393714, - "y": -2650.522213 - }, - "endPoint": { - "x": 1201.838173, - "y": -2650.428072 - } - } - }, - { - "id": "1bc49747-a5a8-5922-b82e-a7e64f5e1c23", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.838173, - "y": -2650.428072 - }, - "endPoint": { - "x": 1202.212557, - "y": -2650.390746 - } - } - }, - { - "id": "0eb1fc5c-3c29-56b9-aca1-49bf0803f138", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.212557, - "y": -2650.390746 - }, - "endPoint": { - "x": 1202.461155, - "y": -2650.225091 - } - } - }, - { - "id": "b8287da1-b726-505c-a273-b7551b813199", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.461155, - "y": -2650.225091 - }, - "endPoint": { - "x": 1202.657017, - "y": -2650.078319 - } - } - }, - { - "id": "446fc391-c2b4-59de-b2ff-0211975dd881", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.657017, - "y": -2650.078319 - }, - "endPoint": { - "x": 1202.901921, - "y": -2650.104635 - } - } - }, - { - "id": "39f35857-37ea-5c3a-8f13-5c24223d4a08", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.901921, - "y": -2650.104635 - }, - "endPoint": { - "x": 1203.218337, - "y": -2650.082063 - } - } - }, - { - "id": "fbf6b1fc-2944-5110-bfee-be7bf7566c20", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.218337, - "y": -2650.082063 - }, - "endPoint": { - "x": 1203.338891, - "y": -2649.886349 - } - } - }, - { - "id": "265d9bb4-e5be-56b7-a7a4-51b26df93195", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.338891, - "y": -2649.886349 - }, - "endPoint": { - "x": 1203.387831, - "y": -2649.769636 - } - } - }, - { - "id": "60e966c4-317c-543e-a9e1-186d89019212", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.387831, - "y": -2649.769636 - }, - "endPoint": { - "x": 1203.395936, - "y": -2649.691295 - } - } - }, - { - "id": "1c06591d-d91e-5bd2-9759-fc3f04c4d7c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.395936, - "y": -2649.691295 - }, - "endPoint": { - "x": 1203.249117, - "y": -2649.544578 - } - } - }, - { - "id": "68215c78-75da-5b7c-a023-ba88770e5d89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.249117, - "y": -2649.544578 - }, - "endPoint": { - "x": 1203.258863, - "y": -2648.859992 - } - } - }, - { - "id": "1c278a43-001a-5509-91c3-73042123fbf0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.258863, - "y": -2648.859992 - }, - "endPoint": { - "x": 1203.209924, - "y": -2647.969947 - } - } - }, - { - "id": "bdbb3bff-2c50-5eda-8409-c78150bb6040", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.209924, - "y": -2647.969947 - }, - "endPoint": { - "x": 1203.072954, - "y": -2647.627681 - } - } - }, - { - "id": "f45006ac-5425-5d1f-b9d1-b8d7d1837100", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.072954, - "y": -2647.627681 - }, - "endPoint": { - "x": 1202.994568, - "y": -2647.471165 - } - } - }, - { - "id": "d1391ddf-b687-56e4-a1ad-246b7cb918ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.994568, - "y": -2647.471165 - }, - "endPoint": { - "x": 1202.887249, - "y": -2647.441106 - } - } - }, - { - "id": "f15ea5b5-d6a2-521b-835b-00bce5fc6e86", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.887249, - "y": -2647.441106 - }, - "endPoint": { - "x": 1202.752947, - "y": -2647.417543 - } - } - }, - { - "id": "849af940-597e-527f-97e5-2f1604ca72ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.752947, - "y": -2647.417543 - }, - "endPoint": { - "x": 1202.571654, - "y": -2647.481075 - } - } - }, - { - "id": "807186e2-76a0-55c0-a5e8-da082463279b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.571654, - "y": -2647.481075 - }, - "endPoint": { - "x": 1202.395081, - "y": -2647.575216 - } - } - }, - { - "id": "be12af11-0f3b-5647-9da8-acc0deeb3b19", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.395081, - "y": -2647.575216 - }, - "endPoint": { - "x": 1201.804829, - "y": -2647.597237 - } - } - }, - { - "id": "10927459-2a88-513b-ac25-aae571c61c2d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.804829, - "y": -2647.597237 - }, - "endPoint": { - "x": 1201.122955, - "y": -2647.578409 - } - } - } - ] - }, - { - "id": "d67d3597-8d0f-5ed7-b0a1-6686500f4331", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "316390ef-9ac9-5898-9fe1-41073d3cbbe2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.50671, - "y": -2647.611716 - }, - "endPoint": { - "x": 1199.393133, - "y": -2647.522089 - } - } - }, - { - "id": "46e9bb26-a646-5008-8e40-51289adb48db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.393133, - "y": -2647.522089 - }, - "endPoint": { - "x": 1199.129966, - "y": -2647.510143 - } - } - }, - { - "id": "85ac77a4-cfd6-560f-8407-cf6adf2f2ae3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.129966, - "y": -2647.510143 - }, - "endPoint": { - "x": 1199.010438, - "y": -2647.426462 - } - } - }, - { - "id": "64aa505c-f924-5024-8e2e-099b7ffbbf56", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.010438, - "y": -2647.426462 - }, - "endPoint": { - "x": 1198.836738, - "y": -2647.106988 - } - } - }, - { - "id": "e0c7d9dc-2f81-5d9f-8964-b2cda16dcf29", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.836738, - "y": -2647.106988 - }, - "endPoint": { - "x": 1198.794878, - "y": -2646.760483 - } - } - }, - { - "id": "6a1396f1-c669-5edf-90fa-fa3001165f55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.794878, - "y": -2646.760483 - }, - "endPoint": { - "x": 1198.938414, - "y": -2646.282456 - } - } - }, - { - "id": "4a39e7d8-4e79-57a5-a008-d8f79b03247f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.938414, - "y": -2646.282456 - }, - "endPoint": { - "x": 1199.345014, - "y": -2645.894111 - } - } - }, - { - "id": "639a339d-fb16-50b2-a659-045d62a1d881", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.345014, - "y": -2645.894111 - }, - "endPoint": { - "x": 1199.673844, - "y": -2645.613285 - } - } - }, - { - "id": "3f494be8-d100-54ab-af66-9b567b288180", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.673844, - "y": -2645.613285 - }, - "endPoint": { - "x": 1200.283796, - "y": -2645.565499 - } - } - }, - { - "id": "cf58680f-d520-5f9d-84d5-771a76fe0022", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.283796, - "y": -2645.565499 - }, - "endPoint": { - "x": 1200.53619, - "y": -2645.438876 - } - } - }, - { - "id": "5a634611-a87c-585f-a1c4-b319d3f2c6c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.53619, - "y": -2645.438876 - }, - "endPoint": { - "x": 1200.805308, - "y": -2645.444877 - } - } - }, - { - "id": "3eacbe61-5a07-587c-851e-a8f05e8d9cc4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.805308, - "y": -2645.444877 - }, - "endPoint": { - "x": 1200.990602, - "y": -2645.534504 - } - } - }, - { - "id": "7a4c9a51-1885-5516-96a0-f24ffbc890b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.990602, - "y": -2645.534504 - }, - "endPoint": { - "x": 1201.451067, - "y": -2645.474716 - } - } - }, - { - "id": "8205553b-2511-59f2-aadc-b27eaeb91cb2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.451067, - "y": -2645.474716 - }, - "endPoint": { - "x": 1202.043064, - "y": -2645.438876 - } - } - }, - { - "id": "85052d44-545d-5438-b981-fe667e61e0a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.043064, - "y": -2645.438876 - }, - "endPoint": { - "x": 1202.51543, - "y": -2645.516556 - } - } - }, - { - "id": "bd378a41-cd39-5143-a4d0-9d17a5b58bb7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.51543, - "y": -2645.516556 - }, - "endPoint": { - "x": 1202.641011, - "y": -2645.648023 - } - } - }, - { - "id": "e6f36567-417b-592b-abc6-518401aa9543", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.641011, - "y": -2645.648023 - }, - "endPoint": { - "x": 1202.727297, - "y": -2645.875008 - } - } - }, - { - "id": "dca19756-aa25-5453-b9b4-93fdacf8a235", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.727297, - "y": -2645.875008 - }, - "endPoint": { - "x": 1202.894739, - "y": -2645.851115 - } - } - }, - { - "id": "3e4d6380-b22f-5536-b514-39c80d22a908", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.894739, - "y": -2645.851115 - }, - "endPoint": { - "x": 1203.18766, - "y": -2645.516501 - } - } - }, - { - "id": "b4643c22-165d-5723-888a-2e2010063133", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.18766, - "y": -2645.516501 - }, - "endPoint": { - "x": 1203.379007, - "y": -2645.396981 - } - } - }, - { - "id": "fdfcb2e0-a374-5357-b736-e6bddfd52c1d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.379007, - "y": -2645.396981 - }, - "endPoint": { - "x": 1203.516592, - "y": -2645.307354 - } - } - }, - { - "id": "ff6512fb-daf7-543c-83f6-979fdc93a8e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.516592, - "y": -2645.307354 - }, - "endPoint": { - "x": 1203.899287, - "y": -2645.241676 - } - } - }, - { - "id": "526691ec-0a9f-5a57-8666-5151b4c3d00a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.899287, - "y": -2645.241676 - }, - "endPoint": { - "x": 1204.03677, - "y": -2645.492608 - } - } - }, - { - "id": "e38755a7-fdd0-5f32-8140-ef1effd6fe65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.03677, - "y": -2645.492608 - }, - "endPoint": { - "x": 1204.108589, - "y": -2645.671861 - } - } - }, - { - "id": "cf5e48a2-3216-5af3-b733-4745a7e22501", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.108589, - "y": -2645.671861 - }, - "endPoint": { - "x": 1204.162351, - "y": -2645.869007 - } - } - }, - { - "id": "d7616f80-e6fe-53cb-b410-6e1eae98f2eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.162351, - "y": -2645.869007 - }, - "endPoint": { - "x": 1204.156401, - "y": -2646.2813 - } - } - }, - { - "id": "bf7f3c42-2141-5fe4-b3f1-6bfe9eb22eee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.156401, - "y": -2646.2813 - }, - "endPoint": { - "x": 1204.317789, - "y": -2646.227513 - } - } - }, - { - "id": "1454c2c4-2e5d-5295-9167-6202444905f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.317789, - "y": -2646.227513 - }, - "endPoint": { - "x": 1204.473329, - "y": -2646.0841 - } - } - }, - { - "id": "cfe1536e-5845-52e9-b64d-1dbddd9c1789", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.473329, - "y": -2646.0841 - }, - "endPoint": { - "x": 1204.527091, - "y": -2645.946687 - } - } - }, - { - "id": "96cf8131-46b7-5965-86e7-cd2af8d729c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.527091, - "y": -2645.946687 - }, - "endPoint": { - "x": 1204.521141, - "y": -2645.785381 - } - } - }, - { - "id": "f8c1e578-2e3e-5d55-81a2-e350540d9238", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.521141, - "y": -2645.785381 - }, - "endPoint": { - "x": 1204.389609, - "y": -2645.689754 - } - } - }, - { - "id": "a8340234-1412-509d-adb2-bf2a826c549c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.389609, - "y": -2645.689754 - }, - "endPoint": { - "x": 1204.281982, - "y": -2645.641968 - } - } - }, - { - "id": "cfd71d8e-ca95-5732-9cdc-b58a69f4283c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.281982, - "y": -2645.641968 - }, - "endPoint": { - "x": 1204.297269, - "y": -2645.408817 - } - } - }, - { - "id": "ba2e6da3-9e4c-5fcc-b65e-e5ef73c0f112", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.297269, - "y": -2645.408817 - }, - "endPoint": { - "x": 1204.400381, - "y": -2645.231546 - } - } - }, - { - "id": "cf0db8dd-c703-5a4a-905d-25af43fb1049", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.400381, - "y": -2645.231546 - }, - "endPoint": { - "x": 1204.569465, - "y": -2645.206827 - } - } - }, - { - "id": "cfb12d6c-2f8f-5090-b2cd-12516c10d5bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.569465, - "y": -2645.206827 - }, - "endPoint": { - "x": 1204.771585, - "y": -2645.219214 - } - } - }, - { - "id": "bb15acdf-1229-5249-9b23-34ac5b1b071f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.771585, - "y": -2645.219214 - }, - "endPoint": { - "x": 1205.031469, - "y": -2645.346993 - } - } - }, - { - "id": "7c3f2045-a535-51cf-af73-9b2aee4db03e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.031469, - "y": -2645.346993 - }, - "endPoint": { - "x": 1205.146995, - "y": -2645.392301 - } - } - }, - { - "id": "ed63af26-194d-5aeb-a73f-c3044351cbf8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.146995, - "y": -2645.392301 - }, - "endPoint": { - "x": 1205.464642, - "y": -2645.433536 - } - } - }, - { - "id": "881c9bfd-866c-56f7-b38e-489f886a8220", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.464642, - "y": -2645.433536 - }, - "endPoint": { - "x": 1205.613103, - "y": -2645.52008 - } - } - }, - { - "id": "681dadf0-2296-51c4-bf56-8a94dbbdda10", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.613103, - "y": -2645.52008 - }, - "endPoint": { - "x": 1205.779622, - "y": -2645.672963 - } - } - }, - { - "id": "81d5ae75-ed7d-598a-8556-c053b0245d95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.779622, - "y": -2645.672963 - }, - "endPoint": { - "x": 1206.126099, - "y": -2645.94498 - } - } - }, - { - "id": "82a7bceb-f706-52f2-8d32-b92bc3740e38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.126099, - "y": -2645.94498 - }, - "endPoint": { - "x": 1206.406605, - "y": -2646.184021 - } - } - }, - { - "id": "866f8671-6320-5d0f-9073-d8d4d3a8141d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.406605, - "y": -2646.184021 - }, - "endPoint": { - "x": 1206.608725, - "y": -2646.33239 - } - } - }, - { - "id": "dc889bb5-567a-503b-b054-3909b0208bfe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.608725, - "y": -2646.33239 - }, - "endPoint": { - "x": 1206.84378, - "y": -2646.629181 - } - } - }, - { - "id": "4c3b0e38-b4c0-5501-8f56-d22f5f6392f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.84378, - "y": -2646.629181 - }, - "endPoint": { - "x": 1206.975825, - "y": -2646.806398 - } - } - }, - { - "id": "3639d39f-d1a7-5f6f-b8d0-32b70a54e593", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.975825, - "y": -2646.806398 - }, - "endPoint": { - "x": 1207.263, - "y": -2647.93207 - } - } - }, - { - "id": "aa6e8ab9-eee3-5c83-9179-a9b977ff0e7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.263, - "y": -2647.93207 - }, - "endPoint": { - "x": 1207.344258, - "y": -2648.923358 - } - } - }, - { - "id": "72e368f5-bc75-5480-832d-f2e6573634c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.344258, - "y": -2648.923358 - }, - "endPoint": { - "x": 1207.367548, - "y": -2649.418507 - } - } - }, - { - "id": "534d61bc-9226-5441-94cb-795555889b4a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.367548, - "y": -2649.418507 - }, - "endPoint": { - "x": 1207.292138, - "y": -2649.650336 - } - } - }, - { - "id": "81cb5f3f-8007-50e5-acc0-46496a8c23c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.292138, - "y": -2649.650336 - }, - "endPoint": { - "x": 1207.268951, - "y": -2649.870658 - } - } - }, - { - "id": "9ca945ea-d280-5565-bd09-e8be600dd8eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.268951, - "y": -2649.870658 - }, - "endPoint": { - "x": 1207.251509, - "y": -2650.137281 - } - } - }, - { - "id": "3f4a9011-cf41-58e1-9cc2-ee14dbb9c0b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.251509, - "y": -2650.137281 - }, - "endPoint": { - "x": 1207.083246, - "y": -2650.554694 - } - } - }, - { - "id": "714c527f-9fc3-54af-a1ff-c4532338549f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.083246, - "y": -2650.554694 - }, - "endPoint": { - "x": 1206.796892, - "y": -2651.262623 - } - } - }, - { - "id": "7a1b7f88-9e3d-577e-bef7-72c6bfeb2af4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.796892, - "y": -2651.262623 - }, - "endPoint": { - "x": 1206.292104, - "y": -2651.663191 - } - } - }, - { - "id": "2ba8123b-09d3-55f3-8dba-7125826a17da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.292104, - "y": -2651.663191 - }, - "endPoint": { - "x": 1205.753664, - "y": -2651.982499 - } - } - }, - { - "id": "36f4e4bb-a259-5af1-a4de-250b038e0e99", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.753664, - "y": -2651.982499 - }, - "endPoint": { - "x": 1205.265805, - "y": -2652.069813 - } - } - }, - { - "id": "f4acbab1-da62-5b1b-8923-35600f2635ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.265805, - "y": -2652.069813 - }, - "endPoint": { - "x": 1204.806982, - "y": -2652.084402 - } - } - }, - { - "id": "6be14aa6-c630-5a09-9d7a-e3ea1caecb5f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.806982, - "y": -2652.084402 - }, - "endPoint": { - "x": 1204.428288, - "y": -2652.142594 - } - } - }, - { - "id": "7abbefbe-5faa-55ff-b8a7-11c39b055ff2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.428288, - "y": -2652.142594 - }, - "endPoint": { - "x": 1204.280751, - "y": -2652.274611 - } - } - }, - { - "id": "1926529c-2183-5147-be6f-500f1d092bea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.280751, - "y": -2652.274611 - }, - "endPoint": { - "x": 1204.261462, - "y": -2652.432174 - } - } - }, - { - "id": "1e6d0248-14f1-5bf6-b335-252a48907126", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.261462, - "y": -2652.432174 - }, - "endPoint": { - "x": 1204.322098, - "y": -2652.945379 - } - } - }, - { - "id": "2d3053e1-fcd4-5136-8a5f-a288caabee7b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.322098, - "y": -2652.945379 - }, - "endPoint": { - "x": 1204.348979, - "y": -2653.164932 - } - } - }, - { - "id": "9da52001-fd6a-5ea2-afe4-ac6f6acf2790", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.348979, - "y": -2653.164932 - }, - "endPoint": { - "x": 1204.456606, - "y": -2653.267936 - } - } - }, - { - "id": "561e350a-3d85-562e-ae33-53b501f69c19", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.456606, - "y": -2653.267936 - }, - "endPoint": { - "x": 1204.505956, - "y": -2653.362022 - } - } - }, - { - "id": "832a36fd-477d-5d2f-8c43-d8cb0bb4eee6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.505956, - "y": -2653.362022 - }, - "endPoint": { - "x": 1204.514882, - "y": -2653.509895 - } - } - }, - { - "id": "36596bcf-3875-5085-990c-9dea441048fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.514882, - "y": -2653.509895 - }, - "endPoint": { - "x": 1204.37586, - "y": -2653.715959 - } - } - }, - { - "id": "94d22c3a-6c08-5241-ac75-34005366d3a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.37586, - "y": -2653.715959 - }, - "endPoint": { - "x": 1204.209957, - "y": -2653.993757 - } - } - }, - { - "id": "49f78d92-15f1-523f-92c9-60e194d96e24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.209957, - "y": -2653.993757 - }, - "endPoint": { - "x": 1203.936531, - "y": -2654.07887 - } - } - }, - { - "id": "2e21a15b-7cbe-5a64-b1ad-9207f068ebad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.936531, - "y": -2654.07887 - }, - "endPoint": { - "x": 1203.479144, - "y": -2654.04303 - } - } - }, - { - "id": "664fd37c-a9b9-5fd0-8aeb-287a4ed86998", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.479144, - "y": -2654.04303 - }, - "endPoint": { - "x": 1203.241524, - "y": -2653.819019 - } - } - }, - { - "id": "307dcc26-5fb5-5d9e-b8fe-9dc6ef3b9733", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.241524, - "y": -2653.819019 - }, - "endPoint": { - "x": 1203.04874, - "y": -2653.581574 - } - } - }, - { - "id": "003f381e-6b7a-5ed3-a441-6b8dbc623da6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.04874, - "y": -2653.581574 - }, - "endPoint": { - "x": 1202.981538, - "y": -2653.397862 - } - } - }, - { - "id": "433e9ed9-4531-54e5-a964-d364213ae332", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.981538, - "y": -2653.397862 - }, - "endPoint": { - "x": 1203.075621, - "y": -2652.999166 - } - } - }, - { - "id": "c1c61ed9-43b8-5f55-87f8-7fbf431825d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.075621, - "y": -2652.999166 - }, - "endPoint": { - "x": 1203.138412, - "y": -2652.694502 - } - } - }, - { - "id": "17aaabb9-58b6-52a3-8f24-ad09b910d0d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.138412, - "y": -2652.694502 - }, - "endPoint": { - "x": 1203.205717, - "y": -2652.457058 - } - } - }, - { - "id": "50b52968-a96d-5a62-b40e-c17d8c52e773", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.205717, - "y": -2652.457058 - }, - "endPoint": { - "x": 1203.120457, - "y": -2652.237505 - } - } - }, - { - "id": "a9e0ced4-6d5b-5902-ae9f-f6128794d208", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.120457, - "y": -2652.237505 - }, - "endPoint": { - "x": 1203.0353, - "y": -2652.152393 - } - } - }, - { - "id": "81acfe71-41e6-563b-bddc-c4724fc714b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.0353, - "y": -2652.152393 - }, - "endPoint": { - "x": 1202.98595, - "y": -2652.121068 - } - } - }, - { - "id": "c15a7c8b-c4ab-58e3-8b2b-51be86a6cd9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.98595, - "y": -2652.121068 - }, - "endPoint": { - "x": 1202.716935, - "y": -2652.129987 - } - } - }, - { - "id": "035f8daf-cd87-5d96-9392-2d20aff4d4f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.716935, - "y": -2652.129987 - }, - "endPoint": { - "x": 1202.533077, - "y": -2652.10758 - } - } - }, - { - "id": "f48fe22d-13fb-5ccc-a763-5da81a004a4e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.533077, - "y": -2652.10758 - }, - "endPoint": { - "x": 1202.479315, - "y": -2652.192747 - } - } - }, - { - "id": "02e8a0f0-c079-56c1-9c00-45dd991a73a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.479315, - "y": -2652.192747 - }, - "endPoint": { - "x": 1202.421039, - "y": -2652.210639 - } - } - }, - { - "id": "31fb04ca-9d97-56a9-b80c-c4c6770cef25", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.421039, - "y": -2652.210639 - }, - "endPoint": { - "x": 1202.100724, - "y": -2652.272024 - } - } - }, - { - "id": "93a0b81b-d73b-51a8-9aa5-577b3749c456", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.100724, - "y": -2652.272024 - }, - "endPoint": { - "x": 1201.907941, - "y": -2652.379543 - } - } - }, - { - "id": "32f96f46-872a-5cdd-9190-9c7da3aeffd4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.907941, - "y": -2652.379543 - }, - "endPoint": { - "x": 1201.49539, - "y": -2652.415382 - } - } - }, - { - "id": "24f8e8d8-3aee-59f9-ad86-67f8b44ba576", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.49539, - "y": -2652.415382 - }, - "endPoint": { - "x": 1200.988755, - "y": -2652.410923 - } - } - }, - { - "id": "6cf02205-e5c4-5272-85cd-0511a3e01756", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.988755, - "y": -2652.410923 - }, - "endPoint": { - "x": 1200.863276, - "y": -2652.312323 - } - } - }, - { - "id": "1acc0bd4-e57a-52c1-9cdd-6a287796c3ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.863276, - "y": -2652.312323 - }, - "endPoint": { - "x": 1200.603187, - "y": -2652.245158 - } - } - }, - { - "id": "5eca5f17-2554-5729-990e-024407c8741f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.603187, - "y": -2652.245158 - }, - "endPoint": { - "x": 1199.911464, - "y": -2652.236239 - } - } - }, - { - "id": "155cd62e-109a-5ab1-9b73-dff3e3bb0011", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.911464, - "y": -2652.236239 - }, - "endPoint": { - "x": 1199.799836, - "y": -2652.241579 - } - } - }, - { - "id": "cc0e2fef-220c-50bb-976b-be3c5ac11c25", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.799836, - "y": -2652.241579 - }, - "endPoint": { - "x": 1199.534925, - "y": -2652.014705 - } - } - }, - { - "id": "9dc047e5-62a1-5d28-8cf2-f3fdb6bc6d3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.534925, - "y": -2652.014705 - }, - "endPoint": { - "x": 1199.238619, - "y": -2651.460264 - } - } - }, - { - "id": "0072716d-bbd7-536c-8316-952e52a4ebdc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.238619, - "y": -2651.460264 - }, - "endPoint": { - "x": 1199.093544, - "y": -2650.993964 - } - } - }, - { - "id": "223b3817-5535-54f3-b791-1f044c0972b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.093544, - "y": -2650.993964 - }, - "endPoint": { - "x": 1198.909378, - "y": -2650.195748 - } - } - }, - { - "id": "e98fc6e7-8b73-5607-bcc1-5ebdedf8a5ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.909378, - "y": -2650.195748 - }, - "endPoint": { - "x": 1199.07959, - "y": -2648.815839 - } - } - }, - { - "id": "9a68f75f-4bde-5be3-9df4-023f885c7eb2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.07959, - "y": -2648.815839 - }, - "endPoint": { - "x": 1199.331882, - "y": -2648.110167 - } - } - }, - { - "id": "eac7ca19-b469-5d10-9b4d-22acf829652b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.331882, - "y": -2648.110167 - }, - "endPoint": { - "x": 1199.48342, - "y": -2647.886211 - } - } - }, - { - "id": "bf65b088-c356-5578-897a-8788d3db529d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.48342, - "y": -2647.886211 - }, - "endPoint": { - "x": 1199.50671, - "y": -2647.611716 - } - } - } - ] - }, - { - "id": "22ff1640-132e-5aab-9cd8-c1cd82702b02", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "6f50422a-2a8d-5abc-af9f-140efc8c1055", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.395936, - "y": -2649.691295 - }, - "endPoint": { - "x": 1203.249117, - "y": -2649.544578 - } - } - }, - { - "id": "129c2aee-8d74-5cde-9f6b-dee76ae42494", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.249117, - "y": -2649.544578 - }, - "endPoint": { - "x": 1203.258863, - "y": -2648.859992 - } - } - }, - { - "id": "2500ebe4-582d-500c-93f5-16b874cd9d90", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.258863, - "y": -2648.859992 - }, - "endPoint": { - "x": 1203.209924, - "y": -2647.969947 - } - } - }, - { - "id": "9ff3c941-ee18-573e-be6a-8f49ade55906", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.209924, - "y": -2647.969947 - }, - "endPoint": { - "x": 1203.072954, - "y": -2647.627681 - } - } - }, - { - "id": "c60dd932-cb94-5edb-a959-41edb00bde89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.072954, - "y": -2647.627681 - }, - "endPoint": { - "x": 1202.994568, - "y": -2647.471165 - } - } - }, - { - "id": "cf5459bf-4058-554e-8d14-e22828aeffe3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.994568, - "y": -2647.471165 - }, - "endPoint": { - "x": 1202.887249, - "y": -2647.441106 - } - } - }, - { - "id": "67d05047-0f00-532d-a130-80b95d9762bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.887249, - "y": -2647.441106 - }, - "endPoint": { - "x": 1202.752947, - "y": -2647.417543 - } - } - }, - { - "id": "f0ff1f05-727b-5a22-af3a-eda17d4e14a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.752947, - "y": -2647.417543 - }, - "endPoint": { - "x": 1202.571654, - "y": -2647.481075 - } - } - }, - { - "id": "0a7298de-9bdd-5a0a-887f-c5cca8c3cb8a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.571654, - "y": -2647.481075 - }, - "endPoint": { - "x": 1202.395081, - "y": -2647.575216 - } - } - }, - { - "id": "afbe637c-f490-569e-9785-c25127596be0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.395081, - "y": -2647.575216 - }, - "endPoint": { - "x": 1201.804829, - "y": -2647.597237 - } - } - }, - { - "id": "1dfaa37a-c76a-58fb-aca7-dc8f247eae64", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.804829, - "y": -2647.597237 - }, - "endPoint": { - "x": 1201.122955, - "y": -2647.578409 - } - } - }, - { - "id": "344ae099-a99a-5c50-928d-f9ac0bd9b219", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.122955, - "y": -2647.578409 - }, - "endPoint": { - "x": 1200.866867, - "y": -2647.672495 - } - } - }, - { - "id": "655c9f88-95c4-59b8-a19f-8f2de07f1485", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.866867, - "y": -2647.672495 - }, - "endPoint": { - "x": 1200.685985, - "y": -2647.830607 - } - } - }, - { - "id": "6687f1e8-447b-500b-8c5d-e7af9dc18c85", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.685985, - "y": -2647.830607 - }, - "endPoint": { - "x": 1200.441183, - "y": -2647.951064 - } - } - }, - { - "id": "4ad65524-e172-598b-aab6-0d1e304c7eef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.441183, - "y": -2647.951064 - }, - "endPoint": { - "x": 1200.249015, - "y": -2648.222036 - } - } - }, - { - "id": "2185ca8e-2bcc-57e7-a97c-8657bc638f43", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.249015, - "y": -2648.222036 - }, - "endPoint": { - "x": 1200.203872, - "y": -2648.429091 - } - } - }, - { - "id": "9e3876d0-9c54-5e19-ae30-f7a26fe83196", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.203872, - "y": -2648.429091 - }, - "endPoint": { - "x": 1199.992825, - "y": -2648.688832 - } - } - }, - { - "id": "9bf4868d-7d84-5c25-a236-ff262d448065", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.992825, - "y": -2648.688832 - }, - "endPoint": { - "x": 1199.940089, - "y": -2648.775375 - } - } - }, - { - "id": "8ac530da-279d-58c1-82c4-779917fe13f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.940089, - "y": -2648.775375 - }, - "endPoint": { - "x": 1199.88684, - "y": -2649.12744 - } - } - }, - { - "id": "f3f47b34-1a17-53b3-8af8-3f200d96bf14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.88684, - "y": -2649.12744 - }, - "endPoint": { - "x": 1199.917004, - "y": -2649.477469 - } - } - }, - { - "id": "6e98aed4-6b78-5bb0-b7b7-945f74fc4121", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.917004, - "y": -2649.477469 - }, - "endPoint": { - "x": 1199.973537, - "y": -2649.744752 - } - } - }, - { - "id": "61c0b60e-7926-5f26-b1da-a37009c588d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.973537, - "y": -2649.744752 - }, - "endPoint": { - "x": 1199.954658, - "y": -2649.917894 - } - } - }, - { - "id": "01a8ca65-bd21-58e9-ad17-baf1fb034736", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.954658, - "y": -2649.917894 - }, - "endPoint": { - "x": 1200.094091, - "y": -2650.072208 - } - } - }, - { - "id": "044bccd3-8383-5221-9dfd-a67daecfd473", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.094091, - "y": -2650.072208 - }, - "endPoint": { - "x": 1200.35777, - "y": -2650.29633 - } - } - }, - { - "id": "e0b7c819-b010-5f6c-a82d-9e4d1126be2e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.35777, - "y": -2650.29633 - }, - "endPoint": { - "x": 1200.892722, - "y": -2650.458186 - } - } - }, - { - "id": "15b95473-35cc-5cec-827b-034788ec5af9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.892722, - "y": -2650.458186 - }, - "endPoint": { - "x": 1201.393714, - "y": -2650.522213 - } - } - }, - { - "id": "fd78a81d-87ca-5175-95da-8503ee2f9f95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.393714, - "y": -2650.522213 - }, - "endPoint": { - "x": 1201.838173, - "y": -2650.428072 - } - } - }, - { - "id": "a075514d-0b43-5591-9dba-04552db2029f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.838173, - "y": -2650.428072 - }, - "endPoint": { - "x": 1202.212557, - "y": -2650.390746 - } - } - }, - { - "id": "66669e55-42cc-5e28-8344-bceb426582d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.212557, - "y": -2650.390746 - }, - "endPoint": { - "x": 1202.461155, - "y": -2650.225091 - } - } - }, - { - "id": "1502ee49-4809-5ff8-b4b6-5da09478bf69", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.461155, - "y": -2650.225091 - }, - "endPoint": { - "x": 1202.657017, - "y": -2650.078319 - } - } - }, - { - "id": "2a9daf8b-fede-5c25-90f0-1bbc233e3a8d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.657017, - "y": -2650.078319 - }, - "endPoint": { - "x": 1202.901921, - "y": -2650.104635 - } - } - }, - { - "id": "3b9237fc-65db-56fa-a664-925886988dc1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.901921, - "y": -2650.104635 - }, - "endPoint": { - "x": 1203.218337, - "y": -2650.082063 - } - } - }, - { - "id": "5789eda3-1c5d-546b-b60a-2c5f27fcdc9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.218337, - "y": -2650.082063 - }, - "endPoint": { - "x": 1203.338891, - "y": -2649.886349 - } - } - }, - { - "id": "8a86a569-d2b8-5809-8195-528c0516f2ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.338891, - "y": -2649.886349 - }, - "endPoint": { - "x": 1203.387831, - "y": -2649.769636 - } - } - }, - { - "id": "2f05e183-5bb2-5032-a74f-8bd9b50b96fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.387831, - "y": -2649.769636 - }, - "endPoint": { - "x": 1203.395936, - "y": -2649.691295 - } - } - } - ] - }, - { - "id": "55047991-8241-5ade-9835-853ff780cf28", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "fd0baec3-4157-519a-a146-6c70adf015d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.654247, - "y": -2649.566435 - }, - "endPoint": { - "x": 1202.821278, - "y": -2649.378703 - } - } - }, - { - "id": "49f95ff3-b0d0-52be-ab04-1feb40d13648", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.821278, - "y": -2649.378703 - }, - "endPoint": { - "x": 1202.857803, - "y": -2649.044971 - } - } - }, - { - "id": "060dae1b-222c-52b7-ad20-0b23e9a74f14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.857803, - "y": -2649.044971 - }, - "endPoint": { - "x": 1202.810813, - "y": -2648.695658 - } - } - }, - { - "id": "bc40bd20-6083-53d4-9ec3-57a5cc8abf4e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.810813, - "y": -2648.695658 - }, - "endPoint": { - "x": 1202.638446, - "y": -2648.328949 - } - } - }, - { - "id": "24b90008-ddd9-5f26-b7f3-54a395edcd04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.638446, - "y": -2648.328949 - }, - "endPoint": { - "x": 1202.262728, - "y": -2648.052582 - } - } - }, - { - "id": "74deec4a-936c-5f1e-96d4-231084847af0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.262728, - "y": -2648.052582 - }, - "endPoint": { - "x": 1202.007051, - "y": -2647.927446 - } - } - }, - { - "id": "80974d98-0b46-530e-81c6-43619c1672c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.007051, - "y": -2647.927446 - }, - "endPoint": { - "x": 1201.719979, - "y": -2647.963946 - } - } - }, - { - "id": "11a37a51-7212-5480-af22-ec632abe78f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.719979, - "y": -2647.963946 - }, - "endPoint": { - "x": 1201.469535, - "y": -2647.979581 - } - } - }, - { - "id": "c85dbd97-d19a-580c-9870-2261baff87d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.469535, - "y": -2647.979581 - }, - "endPoint": { - "x": 1201.333898, - "y": -2648.083852 - } - } - }, - { - "id": "2d11dcce-607f-5b4a-a32e-3de6dc9f2839", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.333898, - "y": -2648.083852 - }, - "endPoint": { - "x": 1201.093817, - "y": -2648.250718 - } - } - }, - { - "id": "29b6e975-4f87-5213-bd49-609391d300f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.093817, - "y": -2648.250718 - }, - "endPoint": { - "x": 1200.817312, - "y": -2648.412354 - } - } - }, - { - "id": "61b34eae-d8e9-5216-899f-548dca12d82e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.817312, - "y": -2648.412354 - }, - "endPoint": { - "x": 1200.634583, - "y": -2648.584451 - } - } - }, - { - "id": "9782e4b6-71c7-5ae3-b001-7bbc9713815e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.634583, - "y": -2648.584451 - }, - "endPoint": { - "x": 1200.498947, - "y": -2648.865993 - } - } - }, - { - "id": "44494f43-a47f-57c8-91d6-51401a549512", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.498947, - "y": -2648.865993 - }, - "endPoint": { - "x": 1200.525007, - "y": -2649.147535 - } - } - }, - { - "id": "7928a837-d3e5-51d0-9472-68598047c8fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.525007, - "y": -2649.147535 - }, - "endPoint": { - "x": 1200.618988, - "y": -2649.507362 - } - } - }, - { - "id": "d4a6ecc8-f211-53cf-a98d-3cb360760a57", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.618988, - "y": -2649.507362 - }, - "endPoint": { - "x": 1200.926888, - "y": -2649.747174 - } - } - }, - { - "id": "e8ee8468-4359-57ad-b6ae-61943bad3fbf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.926888, - "y": -2649.747174 - }, - "endPoint": { - "x": 1201.208625, - "y": -2649.945311 - } - } - }, - { - "id": "7c122aff-4305-56ba-982e-a7505576d3f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.208625, - "y": -2649.945311 - }, - "endPoint": { - "x": 1201.600041, - "y": -2649.924445 - } - } - }, - { - "id": "be9c96c8-6ef0-5ab2-990d-94f9ab0d0ef5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.600041, - "y": -2649.924445 - }, - "endPoint": { - "x": 1202.043577, - "y": -2649.929676 - } - } - }, - { - "id": "469e7e85-292d-533d-87d1-4d6a762d1746", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.043577, - "y": -2649.929676 - }, - "endPoint": { - "x": 1202.330546, - "y": -2649.903635 - } - } - }, - { - "id": "77ff0593-6dee-5664-8658-817eb021a083", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.330546, - "y": -2649.903635 - }, - "endPoint": { - "x": 1202.534103, - "y": -2649.80977 - } - } - }, - { - "id": "f89c3146-6a9d-58ed-8e6b-614aea32f004", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.534103, - "y": -2649.80977 - }, - "endPoint": { - "x": 1202.549698, - "y": -2649.674174 - } - } - }, - { - "id": "e534f576-c4c2-5ac6-906c-82568e8f91e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.549698, - "y": -2649.674174 - }, - "endPoint": { - "x": 1202.654247, - "y": -2649.566435 - } - } - } - ] - }, - { - "id": "45d86f57-932d-569b-a74e-5ec9fcaff927", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "dadf2e37-05a2-5505-bc17-6526de479b5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.654247, - "y": -2649.566435 - }, - "endPoint": { - "x": 1202.821278, - "y": -2649.378703 - } - } - }, - { - "id": "a0d76310-d54f-5db5-844c-4bc4a92916d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.821278, - "y": -2649.378703 - }, - "endPoint": { - "x": 1202.857803, - "y": -2649.044971 - } - } - }, - { - "id": "c0949667-5e53-55c6-8dfd-129bbbbd5756", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.857803, - "y": -2649.044971 - }, - "endPoint": { - "x": 1202.810813, - "y": -2648.695658 - } - } - }, - { - "id": "d35f094c-180b-5db7-a3e6-2cc417be50ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.810813, - "y": -2648.695658 - }, - "endPoint": { - "x": 1202.638446, - "y": -2648.328949 - } - } - }, - { - "id": "dc070b0a-e342-59f6-b779-d6e7b14d9d5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.638446, - "y": -2648.328949 - }, - "endPoint": { - "x": 1202.262728, - "y": -2648.052582 - } - } - }, - { - "id": "bde5e123-cb13-5cfe-af28-7771836755f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.262728, - "y": -2648.052582 - }, - "endPoint": { - "x": 1202.007051, - "y": -2647.927446 - } - } - }, - { - "id": "788ebbce-29f3-5da8-8ab7-905492df2e90", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.007051, - "y": -2647.927446 - }, - "endPoint": { - "x": 1201.719979, - "y": -2647.963946 - } - } - }, - { - "id": "ddf1771d-4e97-54e2-beb4-68df74f8d5a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.719979, - "y": -2647.963946 - }, - "endPoint": { - "x": 1201.469535, - "y": -2647.979581 - } - } - }, - { - "id": "5ae13b50-b4d9-5c30-bc1f-e8457d5497b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.469535, - "y": -2647.979581 - }, - "endPoint": { - "x": 1201.333898, - "y": -2648.083852 - } - } - }, - { - "id": "85bd56df-f272-5811-9421-a2c5fbd5492b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.333898, - "y": -2648.083852 - }, - "endPoint": { - "x": 1201.093817, - "y": -2648.250718 - } - } - }, - { - "id": "b3848ee5-a892-5e2f-8495-aede1ff90e35", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.093817, - "y": -2648.250718 - }, - "endPoint": { - "x": 1200.817312, - "y": -2648.412354 - } - } - }, - { - "id": "e6021c54-a587-5f14-b9e6-e5b1e5b49ff9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.817312, - "y": -2648.412354 - }, - "endPoint": { - "x": 1200.634583, - "y": -2648.584451 - } - } - }, - { - "id": "11857547-8f7c-5d10-bfeb-2609858fc37f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.634583, - "y": -2648.584451 - }, - "endPoint": { - "x": 1200.498947, - "y": -2648.865993 - } - } - }, - { - "id": "4570438f-f626-58fb-b798-4b2617a8843e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.498947, - "y": -2648.865993 - }, - "endPoint": { - "x": 1200.525007, - "y": -2649.147535 - } - } - }, - { - "id": "9d53c413-094d-5f23-b3be-40122976ad59", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.525007, - "y": -2649.147535 - }, - "endPoint": { - "x": 1200.618988, - "y": -2649.507362 - } - } - }, - { - "id": "a3c27d07-cea4-53a5-85d3-c5306a755fd7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.618988, - "y": -2649.507362 - }, - "endPoint": { - "x": 1200.926888, - "y": -2649.747174 - } - } - }, - { - "id": "0e8174f7-85bd-51aa-a23b-ecf18a66b4d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.926888, - "y": -2649.747174 - }, - "endPoint": { - "x": 1201.208625, - "y": -2649.945311 - } - } - }, - { - "id": "7d4fe2bb-ea72-5e61-9d63-ec7084280bb9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.208625, - "y": -2649.945311 - }, - "endPoint": { - "x": 1201.600041, - "y": -2649.924445 - } - } - }, - { - "id": "033d1ea8-1bd3-52f2-b747-a25e4ae89d70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.600041, - "y": -2649.924445 - }, - "endPoint": { - "x": 1202.043577, - "y": -2649.929676 - } - } - }, - { - "id": "3a586298-9c6a-5f61-84f7-b51bebfcd694", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.043577, - "y": -2649.929676 - }, - "endPoint": { - "x": 1202.330546, - "y": -2649.903635 - } - } - }, - { - "id": "1cfb47c2-4f9a-5894-a2d2-55a66965997f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.330546, - "y": -2649.903635 - }, - "endPoint": { - "x": 1202.534103, - "y": -2649.80977 - } - } - }, - { - "id": "1d0839f9-aaa6-5dcd-a6af-b254aa08e5c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.534103, - "y": -2649.80977 - }, - "endPoint": { - "x": 1202.549698, - "y": -2649.674174 - } - } - }, - { - "id": "2afbd953-729f-5340-a3e2-5dbf5d1592c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.549698, - "y": -2649.674174 - }, - "endPoint": { - "x": 1202.654247, - "y": -2649.566435 - } - } - } - ] - }, - { - "id": "d464cfe4-8bb8-5a9a-878e-4523ec72b8c3", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "84c2f69b-6a97-5e8c-a8a5-03da561ae2a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.751715, - "y": -2649.579537 - }, - "endPoint": { - "x": 1205.81153, - "y": -2648.891758 - } - } - }, - { - "id": "db4d7795-139a-5678-b8ad-1bc8e1b5d853", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.81153, - "y": -2648.891758 - }, - "endPoint": { - "x": 1205.766694, - "y": -2648.29366 - } - } - }, - { - "id": "7814c891-fe96-59ff-8892-2786f7d02cdb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.766694, - "y": -2648.29366 - }, - "endPoint": { - "x": 1205.676817, - "y": -2648.02456 - } - } - }, - { - "id": "285dcb24-1b40-5d08-b607-a8c70d8ac9e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.676817, - "y": -2648.02456 - }, - "endPoint": { - "x": 1205.497269, - "y": -2647.725511 - } - } - }, - { - "id": "52a8a2c5-0551-5e7d-9cca-6ff98d5fcb4d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.497269, - "y": -2647.725511 - }, - "endPoint": { - "x": 1205.542207, - "y": -2647.48625 - } - } - }, - { - "id": "23f6d77c-2166-5d0f-80dc-89b1b379e778", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.542207, - "y": -2647.48625 - }, - "endPoint": { - "x": 1205.287864, - "y": -2647.276937 - } - } - }, - { - "id": "f5fbe256-b963-5eb0-9aa4-18b564e9bded", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.287864, - "y": -2647.276937 - }, - "endPoint": { - "x": 1204.928664, - "y": -2646.977888 - } - } - }, - { - "id": "a7a3c09f-1aea-5030-9634-233e14d71ec0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.928664, - "y": -2646.977888 - }, - "endPoint": { - "x": 1204.345081, - "y": -2647.097519 - } - } - }, - { - "id": "23d64c5e-3bbd-5b08-b825-585c1c99c1df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.345081, - "y": -2647.097519 - }, - "endPoint": { - "x": 1204.22545, - "y": -2647.516199 - } - } - }, - { - "id": "5d1c522b-b5a7-517b-9341-129b1185c74d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.22545, - "y": -2647.516199 - }, - "endPoint": { - "x": 1204.21047, - "y": -2648.233872 - } - } - }, - { - "id": "88ff7165-fbbc-5718-aadc-736828b1eff9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.21047, - "y": -2648.233872 - }, - "endPoint": { - "x": 1204.175279, - "y": -2648.994817 - } - } - }, - { - "id": "5e6b7f39-389e-5be8-afd6-48e328cf2e72", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.175279, - "y": -2648.994817 - }, - "endPoint": { - "x": 1204.152605, - "y": -2649.75323 - } - } - }, - { - "id": "bd721747-1a1b-5574-aca1-11e03f051295", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.152605, - "y": -2649.75323 - }, - "endPoint": { - "x": 1204.323637, - "y": -2650.147521 - } - } - }, - { - "id": "9470bf94-33b9-575c-adef-de87b49754c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.323637, - "y": -2650.147521 - }, - "endPoint": { - "x": 1204.442037, - "y": -2650.200097 - } - } - }, - { - "id": "73ee1d26-2a2b-525e-baaf-4dfecb34f183", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.442037, - "y": -2650.200097 - }, - "endPoint": { - "x": 1204.678733, - "y": -2650.489291 - } - } - }, - { - "id": "4f661b26-5f75-5241-b4e0-57fbd35eafd9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.678733, - "y": -2650.489291 - }, - "endPoint": { - "x": 1205.139198, - "y": -2650.489291 - } - } - }, - { - "id": "4a4f9a70-4dcb-529e-9c25-28ef9d2d9cfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.139198, - "y": -2650.489291 - }, - "endPoint": { - "x": 1205.481263, - "y": -2650.173836 - } - } - }, - { - "id": "193e2768-3815-5f78-a208-427985cabdf4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.481263, - "y": -2650.173836 - }, - "endPoint": { - "x": 1205.665429, - "y": -2649.77949 - } - } - }, - { - "id": "3f20eedd-f97f-5f64-ae8b-7a9f2cde91d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.665429, - "y": -2649.77949 - }, - "endPoint": { - "x": 1205.751715, - "y": -2649.579537 - } - } - } - ] - }, - { - "id": "253b6f8a-452c-5816-8ece-8535dd394bfd", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "center": { - "x": 1207.582288410642, - "y": -2644.971199457894 - }, - "radius": 10.608872725901202 - } - }, - { - "id": "d07edffa-f59a-5a24-8970-dcd23121a66a", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "50f86585-ab7f-51dd-ac5f-26e9e018e742", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.954872, - "y": -2644.968337 - }, - "endPoint": { - "x": 1218.896179, - "y": -2646.130677 - } - } - }, - { - "id": "fb428e2a-1a8a-5c72-8d9c-0bbd644b1acc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.896179, - "y": -2646.130677 - }, - "endPoint": { - "x": 1218.723909, - "y": -2647.25944 - } - } - }, - { - "id": "d3ec48f1-e412-5751-9f0d-f6ad8062e5cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.723909, - "y": -2647.25944 - }, - "endPoint": { - "x": 1218.443777, - "y": -2648.348914 - } - } - }, - { - "id": "ebc3f5c0-1bd0-5622-88e9-719cdab6600b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.443777, - "y": -2648.348914 - }, - "endPoint": { - "x": 1218.061496, - "y": -2649.393382 - } - } - }, - { - "id": "4579e6ec-7c6a-5255-8c7c-623123f2e111", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.061496, - "y": -2649.393382 - }, - "endPoint": { - "x": 1217.582783, - "y": -2650.387131 - } - } - }, - { - "id": "afee24ea-9220-5282-8345-2061d9306be3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.582783, - "y": -2650.387131 - }, - "endPoint": { - "x": 1217.013349, - "y": -2651.324447 - } - } - }, - { - "id": "f9c49f4a-4d86-517b-8c58-bcaced12cb94", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.013349, - "y": -2651.324447 - }, - "endPoint": { - "x": 1216.358911, - "y": -2652.199615 - } - } - }, - { - "id": "13010e8d-737a-5129-a756-d318e490b3eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.358911, - "y": -2652.199615 - }, - "endPoint": { - "x": 1215.625181, - "y": -2653.006921 - } - } - }, - { - "id": "a784758c-bf3b-5c95-965f-3cf763dcd846", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.625181, - "y": -2653.006921 - }, - "endPoint": { - "x": 1214.817876, - "y": -2653.74065 - } - } - }, - { - "id": "cda9128e-3d77-51ae-8f00-5beb51587b38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.817876, - "y": -2653.74065 - }, - "endPoint": { - "x": 1213.942708, - "y": -2654.395088 - } - } - }, - { - "id": "b2fc7e74-24d6-5bf7-8719-2f02b9c8c2d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.942708, - "y": -2654.395088 - }, - "endPoint": { - "x": 1213.005392, - "y": -2654.964522 - } - } - }, - { - "id": "30c651eb-1908-5c9f-af40-28e4a98223ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.005392, - "y": -2654.964522 - }, - "endPoint": { - "x": 1212.011643, - "y": -2655.443236 - } - } - }, - { - "id": "0e65e7e3-84e6-5e7c-9c34-bc5e501a46e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.011643, - "y": -2655.443236 - }, - "endPoint": { - "x": 1210.967175, - "y": -2655.825516 - } - } - }, - { - "id": "6426e880-ff93-50be-9ace-dc8d3fc798a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.967175, - "y": -2655.825516 - }, - "endPoint": { - "x": 1209.877701, - "y": -2656.105648 - } - } - }, - { - "id": "91837a18-01d3-5bf3-ab08-176c76415750", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.877701, - "y": -2656.105648 - }, - "endPoint": { - "x": 1208.748938, - "y": -2656.277918 - } - } - }, - { - "id": "2c43a67d-5e88-5ae4-8d53-295608c25fc2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.748938, - "y": -2656.277918 - }, - "endPoint": { - "x": 1207.586598, - "y": -2656.336611 - } - } - }, - { - "id": "17c426b3-c4a7-5d90-a960-3017d976d88e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.586598, - "y": -2656.336611 - }, - "endPoint": { - "x": 1206.424258, - "y": -2656.277918 - } - } - }, - { - "id": "cda9a3d4-7343-5e45-8b4e-4cc625f5c535", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.424258, - "y": -2656.277918 - }, - "endPoint": { - "x": 1205.295494, - "y": -2656.105648 - } - } - }, - { - "id": "e2c7575c-be63-59af-b1d8-0c2de1c982a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.295494, - "y": -2656.105648 - }, - "endPoint": { - "x": 1204.206021, - "y": -2655.825516 - } - } - }, - { - "id": "48859cd7-2128-532e-aab9-dff364b03cdf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.206021, - "y": -2655.825516 - }, - "endPoint": { - "x": 1203.161552, - "y": -2655.443236 - } - } - }, - { - "id": "9d8779b9-d128-5c31-86af-217e2bf275c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.161552, - "y": -2655.443236 - }, - "endPoint": { - "x": 1202.167803, - "y": -2654.964522 - } - } - }, - { - "id": "4e657e9d-c09f-5545-84bc-060115d410e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.167803, - "y": -2654.964522 - }, - "endPoint": { - "x": 1201.230487, - "y": -2654.395088 - } - } - }, - { - "id": "4480cbfb-e506-5132-9c40-8e669f63a7fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.230487, - "y": -2654.395088 - }, - "endPoint": { - "x": 1200.355319, - "y": -2653.74065 - } - } - }, - { - "id": "0277277e-b9b8-5d87-9d52-286558aed89f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.355319, - "y": -2653.74065 - }, - "endPoint": { - "x": 1199.548014, - "y": -2653.006921 - } - } - }, - { - "id": "f83ba37a-2596-5b56-a327-39372c7c2fde", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.548014, - "y": -2653.006921 - }, - "endPoint": { - "x": 1198.814284, - "y": -2652.199615 - } - } - }, - { - "id": "f89694c9-d08d-59b2-8658-0d4e89e316a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.814284, - "y": -2652.199615 - }, - "endPoint": { - "x": 1198.159846, - "y": -2651.324447 - } - } - }, - { - "id": "474c77ff-3883-570f-aaf8-8884978770f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.159846, - "y": -2651.324447 - }, - "endPoint": { - "x": 1197.590413, - "y": -2650.387131 - } - } - }, - { - "id": "d245f7e7-3061-5468-8776-8ff902e028cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.590413, - "y": -2650.387131 - }, - "endPoint": { - "x": 1197.111699, - "y": -2649.393382 - } - } - }, - { - "id": "72b2db7f-4780-5584-8898-485cda449529", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.111699, - "y": -2649.393382 - }, - "endPoint": { - "x": 1196.729418, - "y": -2648.348914 - } - } - }, - { - "id": "bb8ac87b-51e2-552c-b5d8-acce47b6091a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.729418, - "y": -2648.348914 - }, - "endPoint": { - "x": 1196.449286, - "y": -2647.25944 - } - } - }, - { - "id": "8fedcab9-a1cd-505e-8ed6-94c85740a8f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.449286, - "y": -2647.25944 - }, - "endPoint": { - "x": 1196.277016, - "y": -2646.130677 - } - } - }, - { - "id": "1d430b0a-1e94-5322-8b11-62b68db07872", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.277016, - "y": -2646.130677 - }, - "endPoint": { - "x": 1196.218323, - "y": -2644.968337 - } - } - }, - { - "id": "4460ac94-66db-59c9-8292-52b48e397790", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.218323, - "y": -2644.968337 - }, - "endPoint": { - "x": 1196.277016, - "y": -2643.805997 - } - } - }, - { - "id": "bffd99de-bd17-5c2d-986e-571a68c74f78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.277016, - "y": -2643.805997 - }, - "endPoint": { - "x": 1196.449286, - "y": -2642.677233 - } - } - }, - { - "id": "d43b916a-add0-5454-a49d-6353bcc18b19", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.449286, - "y": -2642.677233 - }, - "endPoint": { - "x": 1196.729418, - "y": -2641.58776 - } - } - }, - { - "id": "235d81c7-810f-5436-a819-68aa981009be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.729418, - "y": -2641.58776 - }, - "endPoint": { - "x": 1197.111699, - "y": -2640.543291 - } - } - }, - { - "id": "305d73a3-2120-50a9-8d53-2aead8ce0667", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.111699, - "y": -2640.543291 - }, - "endPoint": { - "x": 1197.590413, - "y": -2639.549542 - } - } - }, - { - "id": "2b70fe1f-d9a3-5ab0-855a-f02f58df0137", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.590413, - "y": -2639.549542 - }, - "endPoint": { - "x": 1198.159846, - "y": -2638.612226 - } - } - }, - { - "id": "b79251ec-4442-5b7f-8044-76a4c54f48c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.159846, - "y": -2638.612226 - }, - "endPoint": { - "x": 1198.814284, - "y": -2637.737059 - } - } - }, - { - "id": "6c63006a-55bf-5f25-99d1-adc39bcfde66", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.814284, - "y": -2637.737059 - }, - "endPoint": { - "x": 1199.548014, - "y": -2636.929753 - } - } - }, - { - "id": "3fbd65ce-6038-5762-93cb-5653768d735d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.548014, - "y": -2636.929753 - }, - "endPoint": { - "x": 1200.355319, - "y": -2636.196024 - } - } - }, - { - "id": "2a3e70cc-131e-5833-a560-844c5dd1f688", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.355319, - "y": -2636.196024 - }, - "endPoint": { - "x": 1201.230487, - "y": -2635.541585 - } - } - }, - { - "id": "6fe8d423-64bc-5469-baad-dbcfc3aacb21", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.230487, - "y": -2635.541585 - }, - "endPoint": { - "x": 1202.167803, - "y": -2634.972152 - } - } - }, - { - "id": "e6c3dca8-16c1-5bf3-8a0e-4cfe094b15a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.167803, - "y": -2634.972152 - }, - "endPoint": { - "x": 1203.161552, - "y": -2634.493438 - } - } - }, - { - "id": "fd9daa3f-afe1-5b5d-b522-8dd7103887f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.161552, - "y": -2634.493438 - }, - "endPoint": { - "x": 1204.206021, - "y": -2634.111158 - } - } - }, - { - "id": "c923d85e-c28b-5d72-aa2a-4f23b6b05000", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.206021, - "y": -2634.111158 - }, - "endPoint": { - "x": 1205.295494, - "y": -2633.831025 - } - } - }, - { - "id": "ae052c88-8e64-5244-aacb-dc6239540213", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.295494, - "y": -2633.831025 - }, - "endPoint": { - "x": 1206.424258, - "y": -2633.658756 - } - } - }, - { - "id": "8e644396-8746-5edb-a9ae-6d1ce6ba5f60", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.424258, - "y": -2633.658756 - }, - "endPoint": { - "x": 1207.586598, - "y": -2633.600062 - } - } - }, - { - "id": "dcc0a803-29fb-5822-92f5-fd0030023e95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.586598, - "y": -2633.600062 - }, - "endPoint": { - "x": 1208.748938, - "y": -2633.658756 - } - } - }, - { - "id": "39a5fb91-6851-5008-968b-417f178f7fe6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.748938, - "y": -2633.658756 - }, - "endPoint": { - "x": 1209.877701, - "y": -2633.831025 - } - } - }, - { - "id": "15d8e2ea-9dcb-57a3-b82c-f71d6b411d93", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.877701, - "y": -2633.831025 - }, - "endPoint": { - "x": 1210.967175, - "y": -2634.111158 - } - } - }, - { - "id": "0e84418d-891e-51f9-ac8b-4a0d2ac44f17", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.967175, - "y": -2634.111158 - }, - "endPoint": { - "x": 1212.011643, - "y": -2634.493438 - } - } - }, - { - "id": "6d7bb8db-9a12-5116-af9a-0bba6771d08f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.011643, - "y": -2634.493438 - }, - "endPoint": { - "x": 1213.005392, - "y": -2634.972152 - } - } - }, - { - "id": "8e4d843e-4c32-588e-ad67-57e265d88b29", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.005392, - "y": -2634.972152 - }, - "endPoint": { - "x": 1213.942708, - "y": -2635.541585 - } - } - }, - { - "id": "6c5661fb-07bd-5e62-80f1-d049520c15d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.942708, - "y": -2635.541585 - }, - "endPoint": { - "x": 1214.817876, - "y": -2636.196024 - } - } - }, - { - "id": "10334e0b-d786-5933-b9fb-aad08832d67b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.817876, - "y": -2636.196024 - }, - "endPoint": { - "x": 1215.625181, - "y": -2636.929753 - } - } - }, - { - "id": "e6890775-deb1-5a0e-9664-86b63f7e2c8b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.625181, - "y": -2636.929753 - }, - "endPoint": { - "x": 1216.358911, - "y": -2637.737059 - } - } - }, - { - "id": "38d00846-89a4-5818-9e13-c408238b7544", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.358911, - "y": -2637.737059 - }, - "endPoint": { - "x": 1217.013349, - "y": -2638.612226 - } - } - }, - { - "id": "1a593d28-af64-516e-9a25-09591c0b2e16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.013349, - "y": -2638.612226 - }, - "endPoint": { - "x": 1217.582783, - "y": -2639.549542 - } - } - }, - { - "id": "3e40275a-3f78-5e5d-98a9-e145053213e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.582783, - "y": -2639.549542 - }, - "endPoint": { - "x": 1218.061496, - "y": -2640.543291 - } - } - }, - { - "id": "61df6521-5567-5332-b5d4-0dec9dc06433", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.061496, - "y": -2640.543291 - }, - "endPoint": { - "x": 1218.443777, - "y": -2641.58776 - } - } - }, - { - "id": "2ea084a3-acf3-5cd4-ae91-ab5202f65971", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.443777, - "y": -2641.58776 - }, - "endPoint": { - "x": 1218.723909, - "y": -2642.677233 - } - } - }, - { - "id": "b3190d82-c16a-5fb2-a456-d8b1695b4ba5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.723909, - "y": -2642.677233 - }, - "endPoint": { - "x": 1218.896179, - "y": -2643.805997 - } - } - }, - { - "id": "8b818f28-c9ff-53cd-9e59-0e1d12ed3eee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.896179, - "y": -2643.805997 - }, - "endPoint": { - "x": 1218.954872, - "y": -2644.968337 - } - } - } - ] - }, - { - "id": "ef13a647-6e75-5456-9382-00b741af1471", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "ccfbde73-ab2b-56d1-a320-1f3c32f8318c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.191161, - "y": -2644.971199 - }, - "endPoint": { - "x": 1218.136389, - "y": -2643.886504 - } - } - }, - { - "id": "bf452242-ad8f-5436-b360-ebcc4a0b6925", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.136389, - "y": -2643.886504 - }, - "endPoint": { - "x": 1217.975627, - "y": -2642.833142 - } - } - }, - { - "id": "c58c301f-13b7-5c9c-a023-2b0a09c5d931", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.975627, - "y": -2642.833142 - }, - "endPoint": { - "x": 1217.714207, - "y": -2641.816445 - } - } - }, - { - "id": "a2fdf1c9-1cc6-571e-80d2-d242fae44d22", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.714207, - "y": -2641.816445 - }, - "endPoint": { - "x": 1217.357463, - "y": -2640.841747 - } - } - }, - { - "id": "6aa628d3-12c5-55fb-80ee-e15e29dd8f44", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.357463, - "y": -2640.841747 - }, - "endPoint": { - "x": 1216.379332, - "y": -2639.039678 - } - } - }, - { - "id": "be2b45b6-d999-5bab-bc2f-6d4d4cbfa140", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.379332, - "y": -2639.039678 - }, - "endPoint": { - "x": 1215.083894, - "y": -2637.469594 - } - } - }, - { - "id": "36d740a0-0bc3-50c8-86bf-aeab00a38587", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.083894, - "y": -2637.469594 - }, - "endPoint": { - "x": 1213.51381, - "y": -2636.174156 - } - } - }, - { - "id": "2e9b005c-314d-58d6-820c-83f375d739a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.51381, - "y": -2636.174156 - }, - "endPoint": { - "x": 1211.71174, - "y": -2635.196025 - } - } - }, - { - "id": "5a94bd55-e6b4-54ff-82a8-13584ee84378", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.71174, - "y": -2635.196025 - }, - "endPoint": { - "x": 1210.737043, - "y": -2634.839281 - } - } - }, - { - "id": "76ab25f6-2b2a-5c48-91ec-a8e957efe713", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.737043, - "y": -2634.839281 - }, - "endPoint": { - "x": 1209.720346, - "y": -2634.577861 - } - } - }, - { - "id": "5dc31510-bad0-5113-8e2a-a57b65e3a03f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.720346, - "y": -2634.577861 - }, - "endPoint": { - "x": 1208.666984, - "y": -2634.417099 - } - } - }, - { - "id": "e7dc1c13-7c4f-5dc1-a14b-685cdf0bf089", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.666984, - "y": -2634.417099 - }, - "endPoint": { - "x": 1207.582288, - "y": -2634.362327 - } - } - }, - { - "id": "a19cd3f9-db4c-572e-9bda-62ccd92502a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.582288, - "y": -2634.362327 - }, - "endPoint": { - "x": 1206.497593, - "y": -2634.417099 - } - } - }, - { - "id": "bcc63ed5-650a-54c0-abba-719990f85d65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.497593, - "y": -2634.417099 - }, - "endPoint": { - "x": 1205.444231, - "y": -2634.577861 - } - } - }, - { - "id": "e53b5135-94d2-5709-b638-acea731ff87c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.444231, - "y": -2634.577861 - }, - "endPoint": { - "x": 1204.427534, - "y": -2634.839281 - } - } - }, - { - "id": "f0cead85-2a74-5195-ab5f-b8fecdf6e558", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.427534, - "y": -2634.839281 - }, - "endPoint": { - "x": 1203.452836, - "y": -2635.196025 - } - } - }, - { - "id": "9a0cb0ed-0c90-5418-8a97-657a6006cc14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.452836, - "y": -2635.196025 - }, - "endPoint": { - "x": 1201.650767, - "y": -2636.174156 - } - } - }, - { - "id": "6463b438-ac49-5a20-aa4d-8f1c962188ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.650767, - "y": -2636.174156 - }, - "endPoint": { - "x": 1200.080683, - "y": -2637.469594 - } - } - }, - { - "id": "62df20d0-eaeb-5a78-804f-50d8e8dd27b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.080683, - "y": -2637.469594 - }, - "endPoint": { - "x": 1198.785245, - "y": -2639.039678 - } - } - }, - { - "id": "8097cf8a-1339-548b-9340-59d76f373fc7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.785245, - "y": -2639.039678 - }, - "endPoint": { - "x": 1197.807113, - "y": -2640.841747 - } - } - }, - { - "id": "f014a542-8440-5a78-b296-c7c6851922d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.807113, - "y": -2640.841747 - }, - "endPoint": { - "x": 1197.45037, - "y": -2641.816445 - } - } - }, - { - "id": "1eb672ae-d41d-50f5-9444-9a391dcbc605", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.45037, - "y": -2641.816445 - }, - "endPoint": { - "x": 1197.18895, - "y": -2642.833142 - } - } - }, - { - "id": "fe4649e4-3202-5510-a5bd-8ca45e232dc2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.18895, - "y": -2642.833142 - }, - "endPoint": { - "x": 1197.028188, - "y": -2643.886504 - } - } - }, - { - "id": "c7872e7e-ccb8-546a-a641-aa76b36a12eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.028188, - "y": -2643.886504 - }, - "endPoint": { - "x": 1196.973416, - "y": -2644.971199 - } - } - }, - { - "id": "7c6fdbf8-1782-58a8-a7e0-9a4b9123f7c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.973416, - "y": -2644.971199 - }, - "endPoint": { - "x": 1197.028188, - "y": -2646.055895 - } - } - }, - { - "id": "55a17b26-b05c-5905-a2ce-6123a4d1bc28", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.028188, - "y": -2646.055895 - }, - "endPoint": { - "x": 1197.18895, - "y": -2647.109257 - } - } - }, - { - "id": "e072842a-c214-5f97-b57e-8ec2cb876a56", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.18895, - "y": -2647.109257 - }, - "endPoint": { - "x": 1197.45037, - "y": -2648.125954 - } - } - }, - { - "id": "c6c21937-b772-50ac-98be-fa919dda083f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.45037, - "y": -2648.125954 - }, - "endPoint": { - "x": 1197.807113, - "y": -2649.100651 - } - } - }, - { - "id": "fa532ee6-1cb0-5d88-b555-6f024fdf43e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.807113, - "y": -2649.100651 - }, - "endPoint": { - "x": 1198.785245, - "y": -2650.902721 - } - } - }, - { - "id": "dce98862-0843-5b3f-abef-301de4b4a8cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.785245, - "y": -2650.902721 - }, - "endPoint": { - "x": 1200.080683, - "y": -2652.472805 - } - } - }, - { - "id": "d98ad450-c524-5e89-846b-07b224dfa025", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.080683, - "y": -2652.472805 - }, - "endPoint": { - "x": 1201.650767, - "y": -2653.768243 - } - } - }, - { - "id": "1b9735be-d52c-53fa-922d-d0b8987cd4ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.650767, - "y": -2653.768243 - }, - "endPoint": { - "x": 1203.452836, - "y": -2654.746374 - } - } - }, - { - "id": "48193c36-2027-5a31-931e-e3e66e7641ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.452836, - "y": -2654.746374 - }, - "endPoint": { - "x": 1204.427534, - "y": -2655.103118 - } - } - }, - { - "id": "9a6e1b79-87eb-52a6-b4eb-4bc5ff357ecd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.427534, - "y": -2655.103118 - }, - "endPoint": { - "x": 1205.444231, - "y": -2655.364538 - } - } - }, - { - "id": "eac83332-777e-5b55-9d14-cb68bbeb0795", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.444231, - "y": -2655.364538 - }, - "endPoint": { - "x": 1206.497593, - "y": -2655.5253 - } - } - }, - { - "id": "7e8925a7-9274-51c5-a1e1-bbda5d83bca5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.497593, - "y": -2655.5253 - }, - "endPoint": { - "x": 1207.582288, - "y": -2655.580072 - } - } - }, - { - "id": "54d2ed1a-c96a-5331-b607-7aec6de28dee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.582288, - "y": -2655.580072 - }, - "endPoint": { - "x": 1208.666984, - "y": -2655.5253 - } - } - }, - { - "id": "21300fc1-d05f-547e-89c6-1ad3df9eabe1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.666984, - "y": -2655.5253 - }, - "endPoint": { - "x": 1209.720346, - "y": -2655.364538 - } - } - }, - { - "id": "f2492115-6053-5706-901b-681874b3cb66", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.720346, - "y": -2655.364538 - }, - "endPoint": { - "x": 1210.737043, - "y": -2655.103118 - } - } - }, - { - "id": "f442bd46-1e80-5c44-8b2c-209787e60b2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.737043, - "y": -2655.103118 - }, - "endPoint": { - "x": 1211.71174, - "y": -2654.746374 - } - } - }, - { - "id": "5ccf5a02-8bf1-55da-bf54-c83205f7ed75", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.71174, - "y": -2654.746374 - }, - "endPoint": { - "x": 1213.51381, - "y": -2653.768243 - } - } - }, - { - "id": "73a9cd3e-1799-5b98-b3d6-3180a165ccc5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.51381, - "y": -2653.768243 - }, - "endPoint": { - "x": 1215.083894, - "y": -2652.472805 - } - } - }, - { - "id": "5f123b1f-74a4-5327-abf8-95d1063ace47", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.083894, - "y": -2652.472805 - }, - "endPoint": { - "x": 1216.379332, - "y": -2650.902721 - } - } - }, - { - "id": "3742e5a5-cb96-58c3-a451-53881436e47c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.379332, - "y": -2650.902721 - }, - "endPoint": { - "x": 1217.357463, - "y": -2649.100651 - } - } - }, - { - "id": "e1c45742-c96c-5dfe-a012-d4004232b4d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.357463, - "y": -2649.100651 - }, - "endPoint": { - "x": 1217.714207, - "y": -2648.125954 - } - } - }, - { - "id": "26f1087b-4c92-55e6-98a2-c2332d353f93", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.714207, - "y": -2648.125954 - }, - "endPoint": { - "x": 1217.975627, - "y": -2647.109257 - } - } - }, - { - "id": "29b55fec-c257-5386-a075-463f27e62f07", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.975627, - "y": -2647.109257 - }, - "endPoint": { - "x": 1218.136389, - "y": -2646.055895 - } - } - }, - { - "id": "1027f640-0be1-5520-937b-fa5ff745b730", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.136389, - "y": -2646.055895 - }, - "endPoint": { - "x": 1218.191161, - "y": -2644.971199 - } - } - } - ] - }, - { - "id": "22cd2ccb-782b-599f-b64a-17769e061ccb", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "center": { - "x": 1207.5865975743363, - "y": -2644.9683366917816 - }, - "radius": 11.368274263557154 - } - }, - { - "id": "13407bd2-14fd-563c-9961-8f2abf02ebfc", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914657658533, - "y": -2099.072176031947 - }, - "endPoint": { - "x": 882.1400097712026, - "y": -2099.072176031947 - } - } - }, - { - "id": "cd224e00-ec84-5f6d-9bb4-64e3d498a22b", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.9275684565505, - "y": -2100.059265233813 - }, - "endPoint": { - "x": 883.1270989730106, - "y": -2100.059265233813 - } - } - }, - { - "id": "f65dd528-fa6b-5c31-94e9-fc95e9d59aa6", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "eb174660-dd99-5d95-9a81-4f70630e7f71", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914658, - "y": -2099.072176 - }, - "endPoint": { - "x": 1651.927568, - "y": -2100.059265 - } - } - }, - { - "id": "3dbc27aa-a68a-539a-ae7a-a3dd5144d019", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.927568, - "y": -2100.059265 - }, - "endPoint": { - "x": 883.127099, - "y": -2100.059265 - } - } - }, - { - "id": "7bd2f2a3-7c73-5f8e-a855-11453f016adf", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 883.127099, - "y": -2100.059265 - }, - "endPoint": { - "x": 882.14001, - "y": -2099.072176 - } - } - }, - { - "id": "0a071036-f27a-55e2-9c56-10e71b624614", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 882.14001, - "y": -2099.072176 - }, - "endPoint": { - "x": 1652.914658, - "y": -2099.072176 - } - } - } - ] - }, - { - "id": "c9e2ea2c-ec95-5dfa-b2f1-c47ea8ae8903", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "df3bc2a9-2acd-5a4f-a3f4-e0c80dcbfd8a", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 882.14001, - "y": -2099.072176 - }, - "endPoint": { - "x": 883.127099, - "y": -2100.059265 - } - } - }, - { - "id": "c5947b4e-82cf-5103-b8fd-1061f9bdc09d", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 883.127099, - "y": -2100.059265 - }, - "endPoint": { - "x": 883.127099, - "y": -2652.829218 - } - } - }, - { - "id": "9ffcc84d-95e5-5e0d-8ef7-1f39a119ad58", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 883.127099, - "y": -2652.829218 - }, - "endPoint": { - "x": 882.14001, - "y": -2653.816307 - } - } - }, - { - "id": "c1f0fe8a-cc8e-52bf-99e2-618f548328ed", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 882.14001, - "y": -2653.816307 - }, - "endPoint": { - "x": 882.14001, - "y": -2099.072176 - } - } - } - ] - }, - { - "id": "dd6f9894-f9df-5d31-867f-ebbc9e775202", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 882.1400097712026, - "y": -2099.072176031947 - }, - "endPoint": { - "x": 882.1400097712026, - "y": -2653.816307487378 - } - } - }, - { - "id": "8f68e97b-3dcf-5926-96f3-9fcda5fbc83b", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 883.1270989730106, - "y": -2100.059265233813 - }, - "endPoint": { - "x": 883.1270989730106, - "y": -2652.8292182854534 - } - } - }, - { - "id": "6eb18d69-4371-5be6-926c-8e660c45c273", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "2b48e911-3722-515d-b690-28b71c56d589", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914658, - "y": -2653.816307 - }, - "endPoint": { - "x": 1651.927568, - "y": -2652.829218 - } - } - }, - { - "id": "fd546164-f3a2-58ef-85d3-aa9c48ad07f5", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.927568, - "y": -2652.829218 - }, - "endPoint": { - "x": 1651.927568, - "y": -2100.059265 - } - } - }, - { - "id": "812f1902-7dba-57d0-b0a6-b7f2352217f5", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.927568, - "y": -2100.059265 - }, - "endPoint": { - "x": 1652.914658, - "y": -2099.072176 - } - } - }, - { - "id": "b6f0eb5e-0e07-5627-87f5-98071db4d831", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914658, - "y": -2099.072176 - }, - "endPoint": { - "x": 1652.914658, - "y": -2653.816307 - } - } - } - ] - }, - { - "id": "1a11cbf5-ffc7-5ae1-9b92-74dc4cf1bdef", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914657658533, - "y": -2099.072176031947 - }, - "endPoint": { - "x": 1652.914657658533, - "y": -2653.816307487378 - } - } - }, - { - "id": "9675fffb-e1c7-520b-a00f-0582bf78323e", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.9275684565505, - "y": -2100.059265233813 - }, - "endPoint": { - "x": 1651.9275684565505, - "y": -2652.8292182854534 - } - } - }, - { - "id": "01cdef9e-638e-5b09-9e89-a82a190dfc5d", - "type": "PolyLine", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": null, - "children": [ - { - "id": "3fe8c037-40cb-50d8-ab69-1fbbe3a265a3", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": 840.627321, - "y": -2671.444283 - }, - "endPoint": { - "x": 1681.627412, - "y": -2671.444283 - } - } - }, - { - "id": "e3d35e86-f386-5b21-8869-3e0c6f683cff", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": 1681.627412, - "y": -2671.444283 - }, - "endPoint": { - "x": 1681.627412, - "y": -2079.444259 - } - } - }, - { - "id": "f4d65c60-9382-5b29-aa7e-fe12d591b8f9", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": 1681.627412, - "y": -2079.444259 - }, - "endPoint": { - "x": 840.627321, - "y": -2079.444259 - } - } - }, - { - "id": "f3322ba0-610e-5803-902c-b18ae26450bf", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": 840.627321, - "y": -2079.444259 - }, - "endPoint": { - "x": 840.627321, - "y": -2671.444283 - } - } - } - ] - }, - { - "id": "c1250d11-ea08-59d3-8b6d-99b6e6b13fae", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.9275825549707, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 882.1400294505089, - "y": -2623.216537943474 - } - } - }, - { - "id": "be77adad-c7b4-51c1-8e30-44e2936b0065", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914671749797, - "y": -2653.8163029798893 - }, - "endPoint": { - "x": 882.1400294505089, - "y": -2653.816302979882 - } - } - }, - { - "id": "16e4d156-e41a-5f73-a4b6-95ed30647e72", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.9275825549707, - "y": -2652.829213785121 - }, - "endPoint": { - "x": 882.1400294505089, - "y": -2652.829213785121 - } - } - }, - { - "id": "8f812884-53d3-5432-818e-64b869f3cb52", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "cc3f2d7d-d71b-5886-9de5-abbd0d907a51", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 882.140029, - "y": -2653.816303 - }, - "endPoint": { - "x": 883.127119, - "y": -2652.829214 - } - } - }, - { - "id": "607ef81f-901b-5a41-b101-a4bc4113c1a0", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 883.127119, - "y": -2652.829214 - }, - "endPoint": { - "x": 1651.927583, - "y": -2652.829214 - } - } - }, - { - "id": "c3d6129d-035e-5ad5-9f3d-6194371208d6", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.927583, - "y": -2652.829214 - }, - "endPoint": { - "x": 1652.914672, - "y": -2653.816303 - } - } - }, - { - "id": "55148722-2a20-5aaa-82cc-cbca1d13ede0", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914672, - "y": -2653.816303 - }, - "endPoint": { - "x": 882.140029, - "y": -2653.816303 - } - } - } - ] - }, - { - "id": "4dc12eb8-3e1c-5375-8edc-17253dbdbe37", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "90c5eac7-158f-51bd-bf09-7098831ae437", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 928.665122, - "y": -2628.9515 - }, - "endPoint": { - "x": 957.416928, - "y": -2628.9515 - } - } - } - ] - }, - { - "id": "b1b21292-10df-56ec-8fc0-047d85edab87", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.9275825854925, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 882.1400294810306, - "y": -2623.216537943474 - } - } - }, - { - "id": "b00473bd-915e-5b46-bd92-23fba4a3079a", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.9146717803187, - "y": -2653.8163029798893 - }, - "endPoint": { - "x": 882.1400294810306, - "y": -2653.816302979882 - } - } - }, - { - "id": "47ceda6e-41ed-55df-bde2-580d185175d1", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.9275825854925, - "y": -2652.829213785121 - }, - "endPoint": { - "x": 882.1400294810306, - "y": -2652.829213785121 - } - } - }, - { - "id": "058bc4bf-8290-502c-b294-f1239f676aa8", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "02562ef2-a140-5224-a87e-3fdde5f804cf", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 882.140029, - "y": -2653.816303 - }, - "endPoint": { - "x": 883.127119, - "y": -2652.829214 - } - } - }, - { - "id": "242a9555-4425-520c-beef-dc747e90086b", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 883.127119, - "y": -2652.829214 - }, - "endPoint": { - "x": 1651.927583, - "y": -2652.829214 - } - } - }, - { - "id": "c62e28c5-8163-5dc8-a0e5-84607ba7d9e5", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.927583, - "y": -2652.829214 - }, - "endPoint": { - "x": 1652.914672, - "y": -2653.816303 - } - } - }, - { - "id": "ae2a0747-5b6d-5403-9c23-ac8fbc3ef0d5", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914672, - "y": -2653.816303 - }, - "endPoint": { - "x": 882.140029, - "y": -2653.816303 - } - } - } - ] - }, - { - "id": "ba97af83-bf22-560a-a83f-7bacb5565c6d", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "그루터기 ENG", - "basePoint": { - "x": 929.833826, - "y": -2638.734019 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 7.0615, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d45f92d1-5597-57bd-8b77-c90ed80ad67d", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "경북 성주군 선남면 성주로 4200", - "basePoint": { - "x": 930.115907, - "y": -2644.882726 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.623, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fdb4cd18-ffa5-56b3-bd20-c9e4890fc333", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "TEL. 053-583-7883", - "basePoint": { - "x": 930.734731, - "y": -2650.036712 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.623, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6826f2c7-3c7c-5abe-aadc-370ac911b7f8", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "FAX. 053-583-7886", - "basePoint": { - "x": 966.872979, - "y": -2649.664539 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.623, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4a66484f-274d-5fe9-a406-606973bd3696", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "산림설계,감리,산림조사", - "basePoint": { - "x": 929.690333, - "y": -2628.069603 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.4212, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f34ee7e2-7dc4-5340-837a-48d9d6cd4720", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "b2202d52-bbf5-5a7d-a405-2958bb1e28e4", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 929.652211, - "y": -2628.9515 - }, - "endPoint": { - "x": 965.892824, - "y": -2628.9515 - } - } - } - ] - }, - { - "id": "2a596b8b-d213-5c87-8aa3-3a959e935686", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "\"함께하는숲, 함께하는미래\"", - "basePoint": { - "x": 889.519658, - "y": -2648.096263 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.2137, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f8ca01fd-2756-50c6-a81a-1dba12fd77bb", - "type": "PolyLine", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "4eb74698-2df9-5a90-aa72-577eb5d28c1d", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 896.85265, - "y": -2643.525565 - }, - "endPoint": { - "x": 893.373966, - "y": -2643.525565 - } - } - }, - { - "id": "720355a9-92f1-509b-ae24-2414ba07eb87", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 893.373966, - "y": -2643.525565 - }, - "endPoint": { - "x": 893.058745, - "y": -2643.503059 - } - } - }, - { - "id": "5ebe9c16-5492-543c-bbe9-78229befcb4f", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 893.058745, - "y": -2643.503059 - }, - "endPoint": { - "x": 892.875717, - "y": -2643.328086 - } - } - }, - { - "id": "abe7bd92-be2f-5bcd-a62d-24d9df8576cc", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.875717, - "y": -2643.328086 - }, - "endPoint": { - "x": 892.70952, - "y": -2643.095513 - } - } - }, - { - "id": "8d71f505-3b23-5386-97cb-37bdd4279174", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.70952, - "y": -2643.095513 - }, - "endPoint": { - "x": 892.487924, - "y": -2642.741117 - } - } - }, - { - "id": "4208d231-9159-5056-b5d2-d3ba7c015e26", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.487924, - "y": -2642.741117 - }, - "endPoint": { - "x": 892.360506, - "y": -2642.525156 - } - } - }, - { - "id": "6c1f5ced-facc-5a78-8afc-61ce4e9b211e", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.360506, - "y": -2642.525156 - }, - "endPoint": { - "x": 892.321727, - "y": -2642.264896 - } - } - }, - { - "id": "ac08ed15-420b-57ef-8de3-2689586629a9", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.321727, - "y": -2642.264896 - }, - "endPoint": { - "x": 892.421445, - "y": -2641.904963 - } - } - }, - { - "id": "94876b90-97f7-53a5-999f-ae3110aa197d", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.421445, - "y": -2641.904963 - }, - "endPoint": { - "x": 896.936018, - "y": -2630.431023 - } - } - }, - { - "id": "1ecb5e5b-45d4-53f4-9195-4ae8898b9b89", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 896.936018, - "y": -2630.431023 - }, - "endPoint": { - "x": 897.105668, - "y": -2630.420621 - } - } - }, - { - "id": "2b647ef4-0efd-56bb-91bb-359d4f228ab7", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 897.105668, - "y": -2630.420621 - }, - "endPoint": { - "x": 900.193851, - "y": -2635.568066 - } - } - }, - { - "id": "6b5ad6ac-128c-59ec-a396-25168dddec86", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 900.193851, - "y": -2635.568066 - }, - "endPoint": { - "x": 899.825557, - "y": -2636.16676 - } - } - }, - { - "id": "65e7e570-b736-5ce5-a6b8-3a28633b9a83", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.825557, - "y": -2636.16676 - }, - "endPoint": { - "x": 899.692776, - "y": -2636.399024 - } - } - }, - { - "id": "6c035e79-83e7-509f-922c-a53c139fc7c6", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.692776, - "y": -2636.399024 - }, - "endPoint": { - "x": 896.85265, - "y": -2643.525565 - } - } - } - ] - }, - { - "id": "638a0128-82a8-5a44-802a-44255bd65772", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.6927756112236, - "y": -2636.3990241533375 - }, - "endPoint": { - "x": 896.8526496458089, - "y": -2643.5255647722424 - } - } - }, - { - "id": "08487ad4-0906-5a8f-8e26-42ab2c7648ca", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "e4d99bdc-4024-5ce9-b226-97f6dac2e253", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 903.723919, - "y": -2643.502954 - }, - "endPoint": { - "x": 899.249675, - "y": -2643.502954 - } - } - }, - { - "id": "0f1eb1ef-e7b4-5551-802c-f4663b15f2e8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.249675, - "y": -2643.502954 - }, - "endPoint": { - "x": 898.96719, - "y": -2643.478087 - } - } - }, - { - "id": "d4a07930-35e7-56b3-81b0-634ae795ec75", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 898.96719, - "y": -2643.478087 - }, - "endPoint": { - "x": 898.791235, - "y": -2643.292439 - } - } - }, - { - "id": "f378f86a-0a57-53fe-89cf-d506248b4992", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 898.791235, - "y": -2643.292439 - }, - "endPoint": { - "x": 894.973505, - "y": -2636.910333 - } - } - }, - { - "id": "6816699a-2fbb-5e1f-aea5-e7cd61960d23", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 894.973505, - "y": -2636.910333 - }, - "endPoint": { - "x": 894.902095, - "y": -2636.65494 - } - } - }, - { - "id": "147c1fc3-0128-5cff-9dca-e9d1b0695616", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 894.902095, - "y": -2636.65494 - }, - "endPoint": { - "x": 894.929488, - "y": -2636.435893 - } - } - }, - { - "id": "27ed6cf6-f9f3-59b0-86ae-17b1cf1321c3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 894.929488, - "y": -2636.435893 - }, - "endPoint": { - "x": 899.255231, - "y": -2636.435893 - } - } - }, - { - "id": "4d75afdf-351b-5a09-a0e3-8afa80898f37", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.255231, - "y": -2636.435893 - }, - "endPoint": { - "x": 899.524727, - "y": -2636.435893 - } - } - }, - { - "id": "019c9f2f-57c4-5a91-ab6a-b73408159e51", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.524727, - "y": -2636.435893 - }, - "endPoint": { - "x": 899.596735, - "y": -2636.485324 - } - } - }, - { - "id": "f8c23298-8161-51f2-9695-dfb7a2f46abb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.596735, - "y": -2636.485324 - }, - "endPoint": { - "x": 903.723919, - "y": -2643.502954 - } - } - } - ] - }, - { - "id": "a363e11f-859b-54c1-8fee-8f5bfe433427", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.5967354310433, - "y": -2636.4853238923897 - }, - "endPoint": { - "x": 903.723919124106, - "y": -2643.502954135458 - } - } - }, - { - "id": "061c7d75-a3a5-54eb-9384-ec11798c5f4c", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 901.792087719632, - "y": -2630.4206211247565 - }, - "endPoint": { - "x": 897.1056683540282, - "y": -2630.4206211247565 - } - } - }, - { - "id": "697e8e1a-42ed-5016-8ac4-3352e3275f99", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 908.7091759270243, - "y": -2633.4367765584793 - }, - "endPoint": { - "x": 905.1909588905728, - "y": -2633.4367765584793 - } - } - }, - { - "id": "1cf2bd14-184a-52b1-904b-4ed29b7c2602", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 902.033871883541, - "y": -2630.782703799505 - }, - "endPoint": { - "x": 901.792087719632, - "y": -2630.4206211247565 - } - } - }, - { - "id": "4d3f7158-b220-558a-8004-c8bf88b3f0d1", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 897.1056683540282, - "y": -2630.4206211247565 - }, - "endPoint": { - "x": 900.1938508517251, - "y": -2635.568065932477 - } - } - }, - { - "id": "09f1e693-7a4f-5c6c-a1af-3d1e5b6e75c9", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.5247273840359, - "y": -2636.4358934011707 - }, - "endPoint": { - "x": 899.5967354310433, - "y": -2636.4853238923897 - } - } - }, - { - "id": "b050301b-2a73-5154-8e0d-75f8edab2e23", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.2552308071827, - "y": -2636.4358934011707 - }, - "endPoint": { - "x": 899.5247273840359, - "y": -2636.4358934011707 - } - } - }, - { - "id": "54bfcb81-1505-52f9-b2ff-9417b6716177", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 894.929487652229, - "y": -2636.4358934011707 - }, - "endPoint": { - "x": 899.2552308071827, - "y": -2636.4358934011707 - } - } - }, - { - "id": "43d4ce7b-0d97-58c8-8b02-13fe92f75c96", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 894.902094639132, - "y": -2636.6549398010775 - }, - "endPoint": { - "x": 894.929487652229, - "y": -2636.4358934011707 - } - } - }, - { - "id": "fca3b63b-d2ea-5b47-8e14-655c187ca9c3", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 894.9735048755938, - "y": -2636.9103327697267 - }, - "endPoint": { - "x": 894.902094639132, - "y": -2636.6549398010775 - } - } - }, - { - "id": "02dd92d4-89e6-55f2-8203-f4d02be59455", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 898.7912345043169, - "y": -2643.292438556169 - }, - "endPoint": { - "x": 894.9735048755938, - "y": -2636.9103327697267 - } - } - }, - { - "id": "e0e2658b-9c8e-5374-b682-e48b6d77dc07", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 898.9671904061051, - "y": -2643.478087319134 - }, - "endPoint": { - "x": 898.7912345043169, - "y": -2643.292438556169 - } - } - }, - { - "id": "25ad6c34-9459-53c5-b9d1-2530329b015e", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.2496753005416, - "y": -2643.502954135458 - }, - "endPoint": { - "x": 898.9671904061051, - "y": -2643.478087319134 - } - } - }, - { - "id": "422b0189-64c9-5755-9009-01c4951c4b53", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 903.723919124106, - "y": -2643.502954135458 - }, - "endPoint": { - "x": 899.2496753005416, - "y": -2643.502954135458 - } - } - }, - { - "id": "837acc88-1706-531a-bfac-11357fa0263c", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.8255572473117, - "y": -2636.166759516751 - }, - "endPoint": { - "x": 899.6927756112236, - "y": -2636.3990241533375 - } - } - }, - { - "id": "a2b4350b-84cb-50c5-bad9-08e4ec944308", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 900.1938508517251, - "y": -2635.568065932477 - }, - "endPoint": { - "x": 899.8255572473117, - "y": -2636.166759516751 - } - } - }, - { - "id": "b409aa20-078e-5429-8e87-57cedd4e161c", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 900.1938508517251, - "y": -2635.568065932477 - }, - "endPoint": { - "x": 900.1938508517251, - "y": -2635.568065932477 - } - } - }, - { - "id": "98d4a406-5194-50cd-911f-eec4f266a3f8", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 896.9360178352999, - "y": -2630.4310225011122 - }, - "endPoint": { - "x": 897.1056683540282, - "y": -2630.4206211247565 - } - } - }, - { - "id": "453320f8-b84e-5540-9ff2-d53060e74699", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.4214449459287, - "y": -2641.9049625311272 - }, - "endPoint": { - "x": 896.9360178352999, - "y": -2630.4310225011122 - } - } - }, - { - "id": "78b1c860-4782-5a14-b47f-653a6f709abb", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.3217268122899, - "y": -2642.2648963032734 - }, - "endPoint": { - "x": 892.4214449459287, - "y": -2641.9049625311272 - } - } - }, - { - "id": "242b7505-0f60-547f-9eb5-4691ce46d4fe", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.3605061003072, - "y": -2642.525156230424 - }, - "endPoint": { - "x": 892.3217268122899, - "y": -2642.2648963032734 - } - } - }, - { - "id": "fea034ae-11c7-5316-8bd4-1c1ba3aaa139", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.4879238676094, - "y": -2642.741116518633 - }, - "endPoint": { - "x": 892.3605061003072, - "y": -2642.525156230424 - } - } - }, - { - "id": "e229436a-af1f-5d1d-88e6-17e2f0bcbf7e", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.7095201902503, - "y": -2643.0955128826317 - }, - "endPoint": { - "x": 892.4879238676094, - "y": -2642.741116518633 - } - } - }, - { - "id": "d5f8fa88-97bf-5b8a-b809-56351d109ca6", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.8757174944476, - "y": -2643.3280855198664 - }, - "endPoint": { - "x": 892.7095201902503, - "y": -2643.0955128826317 - } - } - }, - { - "id": "e96cc2f1-1b97-5afc-99f8-e202a98da721", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 893.0587453307071, - "y": -2643.5030590450624 - }, - "endPoint": { - "x": 892.8757174944476, - "y": -2643.3280855198664 - } - } - }, - { - "id": "67d8c5af-1522-551d-b80f-cc0c7d01d066", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 893.3739657033238, - "y": -2643.5255647722424 - }, - "endPoint": { - "x": 893.0587453307071, - "y": -2643.5030590450624 - } - } - }, - { - "id": "5162c308-ab24-5f63-b491-6ecda91231be", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 896.8526496458089, - "y": -2643.5255647722424 - }, - "endPoint": { - "x": 893.3739657033238, - "y": -2643.5255647722424 - } - } - }, - { - "id": "11673f46-18e8-5a97-8917-a0e93d368e9d", - "type": "PolyLine", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "6b44a8a8-9fe6-5661-916d-808fb7527bb7", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 914.734394, - "y": -2643.300667 - }, - "endPoint": { - "x": 914.692548, - "y": -2643.415248 - } - } - }, - { - "id": "676515a7-6962-5e1a-8b8b-444a15acc06d", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 914.692548, - "y": -2643.415248 - }, - "endPoint": { - "x": 914.463178, - "y": -2643.546649 - } - } - }, - { - "id": "b756968e-f4e9-50de-a2c6-5be1a409449d", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 914.463178, - "y": -2643.546649 - }, - "endPoint": { - "x": 911.006966, - "y": -2643.546649 - } - } - }, - { - "id": "311e99c6-eebc-50d2-8092-e2e22dafa5ae", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 911.006966, - "y": -2643.546649 - }, - "endPoint": { - "x": 910.742827, - "y": -2643.336984 - } - } - }, - { - "id": "b515fcd8-724b-53c2-8c11-d4a36021f53f", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 910.742827, - "y": -2643.336984 - }, - "endPoint": { - "x": 905.021771, - "y": -2633.845466 - } - } - }, - { - "id": "49238a77-7c44-50c4-b7eb-54aa41f1ceb1", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 905.021771, - "y": -2633.845466 - }, - "endPoint": { - "x": 904.993573, - "y": -2633.591797 - } - } - }, - { - "id": "66f99ad8-1d76-5505-863e-b26f20cc9170", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 904.993573, - "y": -2633.591797 - }, - "endPoint": { - "x": 905.190959, - "y": -2633.436777 - } - } - }, - { - "id": "a7f67737-c1f7-55f9-a65e-0ac8812b4c57", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 905.190959, - "y": -2633.436777 - }, - "endPoint": { - "x": 908.709176, - "y": -2633.436777 - } - } - }, - { - "id": "2ff808ac-7f7a-55e0-8f36-7f0b19144580", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 908.709176, - "y": -2633.436777 - }, - "endPoint": { - "x": 908.868253, - "y": -2633.605259 - } - } - }, - { - "id": "6164aef6-2bff-5a82-9dc3-237cdea2f69a", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 908.868253, - "y": -2633.605259 - }, - "endPoint": { - "x": 914.734394, - "y": -2643.300667 - } - } - } - ] - }, - { - "id": "2d6036d2-0002-51b3-bbbe-e354022ade89", - "type": "PolyLine", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "97d68a55-22aa-593d-ad6a-6cff21df0bd7", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 914.734394, - "y": -2643.300667 - }, - "endPoint": { - "x": 914.692548, - "y": -2643.415248 - } - } - }, - { - "id": "45bafb0d-50e4-5a16-9664-4fcd62a004a8", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 914.692548, - "y": -2643.415248 - }, - "endPoint": { - "x": 914.463178, - "y": -2643.546649 - } - } - }, - { - "id": "f83dec86-b618-55de-b302-2c7f44da7d29", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 914.463178, - "y": -2643.546649 - }, - "endPoint": { - "x": 911.006966, - "y": -2643.546649 - } - } - }, - { - "id": "3dc089e7-c035-551f-b4af-12857437fa33", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 911.006966, - "y": -2643.546649 - }, - "endPoint": { - "x": 910.742827, - "y": -2643.336984 - } - } - }, - { - "id": "f629b2e9-cd46-516d-a553-a0c5fc24ae67", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 910.742827, - "y": -2643.336984 - }, - "endPoint": { - "x": 905.021771, - "y": -2633.845466 - } - } - }, - { - "id": "3921f9c3-22f4-5818-bb96-8181771e6aa1", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 905.021771, - "y": -2633.845466 - }, - "endPoint": { - "x": 904.993573, - "y": -2633.591797 - } - } - }, - { - "id": "2d7334c5-d8b1-56d0-a7b3-9aa16df36618", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 904.993573, - "y": -2633.591797 - }, - "endPoint": { - "x": 905.190959, - "y": -2633.436777 - } - } - }, - { - "id": "6629a537-4749-51d2-8c93-6962b0882ffe", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 905.190959, - "y": -2633.436777 - }, - "endPoint": { - "x": 908.709176, - "y": -2633.436777 - } - } - }, - { - "id": "24a64bf9-5ef5-5b03-a35d-7ac2a62ddbf3", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 908.709176, - "y": -2633.436777 - }, - "endPoint": { - "x": 908.868253, - "y": -2633.605259 - } - } - }, - { - "id": "2dd39294-8999-599f-b20d-96e72ad85709", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 908.868253, - "y": -2633.605259 - }, - "endPoint": { - "x": 914.734394, - "y": -2643.300667 - } - } - } - ] - }, - { - "id": "56eb1249-652f-5226-bece-ed6583f1dd2b", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "ee975f88-3489-5aaf-b2ec-d056e286a0b4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 909.690725, - "y": -2643.520679 - }, - "endPoint": { - "x": 905.055811, - "y": -2643.520679 - } - } - }, - { - "id": "bb79046b-e045-5109-ab14-21b42af6f0dd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 905.055811, - "y": -2643.520679 - }, - "endPoint": { - "x": 904.91117, - "y": -2643.449355 - } - } - }, - { - "id": "e9aba4d8-d727-5ec3-ab9f-fb0a92464843", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 904.91117, - "y": -2643.449355 - }, - "endPoint": { - "x": 900.193851, - "y": -2635.568066 - } - } - }, - { - "id": "356b963e-017b-5ae9-b91c-b4ce584e38e2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 900.193851, - "y": -2635.568066 - }, - "endPoint": { - "x": 897.105668, - "y": -2630.420621 - } - } - }, - { - "id": "710a07aa-010c-55a1-8dce-edacdb6bae0d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 897.105668, - "y": -2630.420621 - }, - "endPoint": { - "x": 901.792088, - "y": -2630.420621 - } - } - }, - { - "id": "76a83bee-c19f-5659-8c5c-c9cf49efece6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 901.792088, - "y": -2630.420621 - }, - "endPoint": { - "x": 902.033872, - "y": -2630.782704 - } - } - }, - { - "id": "f464e4a3-3d7d-5e6d-ae76-f237fe52d1aa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 902.033872, - "y": -2630.782704 - }, - "endPoint": { - "x": 909.697594, - "y": -2643.429689 - } - } - }, - { - "id": "a086cf0b-9037-57ca-9749-3f8d8f3c1a22", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 909.697594, - "y": -2643.429689 - }, - "endPoint": { - "x": 909.690725, - "y": -2643.520679 - } - } - } - ] - }, - { - "id": "312997de-80f5-5b36-9aa3-f420b471dae2", - "type": "PolyLine", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "18baf215-dcbc-5547-8433-90934ac445bd", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 909.690725, - "y": -2643.520679 - }, - "endPoint": { - "x": 905.055811, - "y": -2643.520679 - } - } - }, - { - "id": "34904a70-0bba-5e11-bbe9-a7c5d4ee924e", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 905.055811, - "y": -2643.520679 - }, - "endPoint": { - "x": 904.91117, - "y": -2643.449355 - } - } - }, - { - "id": "d31ae6dd-ea52-5933-a564-4bed896f5ff5", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 904.91117, - "y": -2643.449355 - }, - "endPoint": { - "x": 900.193851, - "y": -2635.568066 - } - } - }, - { - "id": "1c7154b1-f43b-5d8c-9903-fe62ed850d65", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 900.193851, - "y": -2635.568066 - }, - "endPoint": { - "x": 897.105668, - "y": -2630.420621 - } - } - }, - { - "id": "58c35c8c-240d-5284-9167-c95f4863aa54", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 897.105668, - "y": -2630.420621 - }, - "endPoint": { - "x": 901.792088, - "y": -2630.420621 - } - } - }, - { - "id": "40e56c66-f749-5c33-bbd1-e7d2a2dda3c2", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 901.792088, - "y": -2630.420621 - }, - "endPoint": { - "x": 902.033872, - "y": -2630.782704 - } - } - }, - { - "id": "3dddc3a0-69d3-52f0-b950-9fe2ff0df67c", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 902.033872, - "y": -2630.782704 - }, - "endPoint": { - "x": 909.697594, - "y": -2643.429689 - } - } - }, - { - "id": "c0fdf88e-9903-5eae-8e05-396051949240", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 909.697594, - "y": -2643.429689 - }, - "endPoint": { - "x": 909.690725, - "y": -2643.520679 - } - } - } - ] - }, - { - "id": "433831e1-cb86-5721-afe5-062611c7594b", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.9275825549707, - "y": -2634.237136751625 - }, - "endPoint": { - "x": 1004.1529054928483, - "y": -2634.237136751625 - } - } - }, - { - "id": "2bacdf4a-571f-5f3a-a116-a61c4ed483f2", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1141.737926659944, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1141.737926659944, - "y": -2652.829213785121 - } - } - }, - { - "id": "91e71c59-655f-5c48-8f86-d61a1051337b", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1539.775545036453, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1539.775545036453, - "y": -2652.829213785121 - } - } - }, - { - "id": "5427992e-3219-5bb8-8117-210c8ffc0720", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1427.5317364990428, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1427.5317364990428, - "y": -2652.829213785121 - } - } - }, - { - "id": "9998864f-6df8-5761-9647-6d6e0aebedec", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1592.7022308716791, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1592.7022308716791, - "y": -2652.829213785121 - } - } - }, - { - "id": "21723132-d114-57a3-a484-9de3dda4b475", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "책 임 기 술 자", - "basePoint": { - "x": 1176.694709, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4eb986a1-b890-5690-9cd2-825f9be95afc", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1216.9392352824634, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1216.9392352824634, - "y": -2652.829213785121 - } - } - }, - { - "id": "d1667219-d21e-5dce-b428-2bee016d7b8b", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1273.1016841113772, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1273.1016841113772, - "y": -2652.829213785121 - } - } - }, - { - "id": "6249ded5-db4a-55a4-8f61-db3eff869e33", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "승 인", - "basePoint": { - "x": 1244.913348, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a8317629-6e43-59b2-9f03-6f6ad7baf365", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "공 사 명", - "basePoint": { - "x": 1347.655704, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7aebe47c-7b0d-5b9a-b8a3-83ea5fc842d9", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1478.5772341217425, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1478.5772341217425, - "y": -2652.829213785121 - } - } - }, - { - "id": "f101fb9a-11e1-53d7-b0ce-123b2e0366b6", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "도 면 명", - "basePoint": { - "x": 1452.644176, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "78907a71-22d1-537d-8922-6adfeffd6f7a", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "노 선 명", - "basePoint": { - "x": 1624.408152, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "71aacdee-1335-5062-b168-0d5420a0e8e2", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "설 계 일 자", - "basePoint": { - "x": 1566.87251, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e091231e-be21-51c6-82cb-be3a8a319860", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1539.775545036453, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1539.775545036453, - "y": -2652.829213785121 - } - } - }, - { - "id": "491ac40d-e25b-594f-aa0f-796d7972de21", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1004.1529054928483, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1004.1529054928483, - "y": -2652.829213785121 - } - } - }, - { - "id": "d3d1f8da-aa6a-5962-a06f-8d37e5a51865", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "발 주 처", - "basePoint": { - "x": 1081.002416, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a9f90ee0-ec12-52e3-ab5c-662cef012c91", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "축 척", - "basePoint": { - "x": 1510.4114, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a81d8e5c-9b1e-57c0-b38f-0c886e9c3549", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "남부지방산림청", - "basePoint": { - "x": 1072.945416, - "y": -2643.533175 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 5.4, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2cd0570b-ff70-5779-860c-fecbcab086d9", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2024년 간선임도사업(기번3)(3공구)", - "basePoint": { - "x": 1350.58835, - "y": -2640.523455 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 4.3, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "51fb31b1-73b4-57b4-a1c3-35fdff6393d6", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "타이틀", - "shapeData": { - "label": "안 덕 상", - "basePoint": { - "x": 1175.760417, - "y": -2648.773413 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 3.9, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "acf9235e-4513-5def-a322-446fda7531d9", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "타이틀", - "shapeData": { - "label": "산림공학기술자 기술고급", - "basePoint": { - "x": 1175.5536, - "y": -2640.872744 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 3.9, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e399dd99-412b-561d-b903-36281aeca906", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "- 울진 울진 대흥 산65 외2 -", - "basePoint": { - "x": 1350.58835, - "y": -2646.523455 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 4.3, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "15d850fd-1886-54e1-878a-930e0eaae3c3", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "종 단 면 도(2)", - "basePoint": { - "x": 1271.04425, - "y": -2122.541462 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 12.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "50c03570-828a-53c6-8356-d34d1f5ed700", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "A1", - "basePoint": { - "x": 1480.523844, - "y": -2645.065384 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.6666, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8c3e2b11-6c26-5b4b-b56a-17f525d3de88", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "V = 1 : 200", - "basePoint": { - "x": 1486.425557, - "y": -2647.193802 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "76264b5a-7bc7-5eed-8acf-cba556306348", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "H = 1 : 1,000", - "basePoint": { - "x": 1486.060901, - "y": -2642.595759 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1aa08124-f58b-55c3-8221-76c18ab9be42", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "A3", - "basePoint": { - "x": 1510.322408, - "y": -2645.065384 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.6666, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "61fca752-a479-564e-a327-57573e62343a", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "V = 1 : 400", - "basePoint": { - "x": 1516.224121, - "y": -2647.193802 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "51f6e95d-40a4-5627-8621-8ac6dca4d65e", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "H = 1 : 2,000", - "basePoint": { - "x": 1515.859465, - "y": -2642.595759 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ea7dbf48-afdb-5675-b3a6-efe13fb9ff80", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "타이틀", - "shapeData": { - "label": "종 단 면 도(2)", - "basePoint": { - "x": 1452.123626, - "y": -2645.980227 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 4.4, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e17c6fe4-8bb4-5831-a93c-25ecc7dd0d58", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2464.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2464.164981814357 - } - } - }, - { - "id": "843ddab0-1539-50ff-8167-050dc208e873", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2464.164981814357 - }, - "endPoint": { - "x": 955.1988107882435, - "y": -2599.164981814357 - } - } - }, - { - "id": "14aad9d8-3514-53d7-934f-7a5486b37e0b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2599.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2599.164981814357 - } - } - }, - { - "id": "734f19b4-c314-5563-b24d-465fd81f3735", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988305640401, - "y": -2599.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2464.164981814357 - } - } - }, - { - "id": "6aedef19-9c3a-5007-aff4-c551cef3eb38", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2584.164981814357 - } - } - }, - { - "id": "86d2ae32-b1f5-52cd-93f9-d8f7d6aa4501", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2569.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2569.164981814357 - } - } - }, - { - "id": "dc2a37f5-ff3f-5dbf-b677-b9491a6031e2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2554.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2554.164981814357 - } - } - }, - { - "id": "6c3c7a19-8aba-5eb4-b9e4-92991421c7bc", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2539.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2539.164981814357 - } - } - }, - { - "id": "38ffc09d-3215-58eb-871f-140b97bc1f6f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2524.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2524.164981814357 - } - } - }, - { - "id": "c4ebba6b-ddbb-5adf-a9bb-5caf172ebef5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2509.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2509.164981814357 - } - } - }, - { - "id": "a26da400-b308-5ed1-bf06-03ea00fd283c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2494.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2494.164981814357 - } - } - }, - { - "id": "3821dadb-eaf1-520d-9879-cfba790b080d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2479.164981814357 - } - } - }, - { - "id": "3218437d-6b20-584f-83f9-4426b0dabab2", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "곡 선", - "basePoint": { - "x": 965.198821, - "y": -2591.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "00fe6d5e-3bb9-58fe-bb3e-0304501450b5", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "측 점", - "basePoint": { - "x": 965.198821, - "y": -2576.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2600e02c-7f2c-55e2-8754-57e4d103d013", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "거 리", - "basePoint": { - "x": 965.198821, - "y": -2561.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "26c5d75e-25d7-5cff-a275-3b4d286e8a6d", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "누가거리", - "basePoint": { - "x": 965.198821, - "y": -2546.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8c9966ae-5c1e-5402-8bb9-2684f1823924", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "지반고", - "basePoint": { - "x": 965.198821, - "y": -2531.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "84be3e49-b792-59c6-bdb8-23d4b8a11925", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "계획고", - "basePoint": { - "x": 965.198821, - "y": -2516.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "18ec52ac-73fc-5560-81fb-9977c8446690", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "성토고", - "basePoint": { - "x": 965.198821, - "y": -2501.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3a2a3942-446c-5de1-a21a-e1b98be7931d", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "절토고", - "basePoint": { - "x": 965.198821, - "y": -2486.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "286f82b1-0818-56ca-bf37-64c7cf8fd08f", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "구 배", - "basePoint": { - "x": 965.198821, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4c6e9863-c7e8-50d2-badd-54d3a917e246", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 950.1988107882435, - "y": -2606.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2606.164981814357 - } - } - }, - { - "id": "b878cda4-c4bc-5f44-9dbd-c88a28df13a2", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H= 1 : 1000", - "basePoint": { - "x": 963.698811, - "y": -2605.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 2.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bbd47efa-286d-5138-b9a3-a758e4ef15cc", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 950.1988107882435, - "y": -2606.164981814357 - }, - "endPoint": { - "x": 950.1988107882435, - "y": -2581.164981814357 - } - } - }, - { - "id": "55a9f618-a531-5342-a1e6-46202fe46e16", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "V= 1 : 200", - "basePoint": { - "x": 949.698811, - "y": -2592.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 2.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "53718857-4456-58bf-92d7-fae7c2b5279c", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "6c5c615c-4709-5a6f-ae74-58726046df2f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2599.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2464.164982 - } - } - }, - { - "id": "45fcd82e-ced6-55c7-920a-7fa40f5d5319", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2464.164982 - }, - "endPoint": { - "x": 1530.198811, - "y": -2464.164982 - } - } - }, - { - "id": "ca826f27-7e03-5b18-b8cf-c4d3e073974a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1530.198811, - "y": -2464.164982 - }, - "endPoint": { - "x": 1530.198811, - "y": -2599.164982 - } - } - }, - { - "id": "9065d31e-7d53-5d9b-a67d-cff6d579f43f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1530.198811, - "y": -2599.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2599.164982 - } - } - } - ] - }, - { - "id": "b1ebe536-bb65-5611-b1cb-097d0ca22005", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2584.164981814357 - } - } - }, - { - "id": "e21bb1a3-0bea-5350-86c7-3fa4fd347108", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2569.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2569.164981814357 - } - } - }, - { - "id": "17f353d1-2c86-55a0-888a-09cc255c565d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2554.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2554.164981814357 - } - } - }, - { - "id": "8a51e628-4e64-5c3e-8afa-071937948e62", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2539.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2539.164981814357 - } - } - }, - { - "id": "e772cf93-3239-5618-9087-673555f2d537", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2524.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2524.164981814357 - } - } - }, - { - "id": "748f4bf0-965b-5c14-97e3-ae21eee847ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2509.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2509.164981814357 - } - } - }, - { - "id": "df2e3964-9b79-534d-bc4f-9cfb27f2fae9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2494.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2494.164981814357 - } - } - }, - { - "id": "b00e2f68-ea7a-56db-b7c5-db02f24e5789", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "92abd1eb-f0a0-59f4-ac36-4364bcbac14c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2364.864981814357 - } - } - }, - { - "id": "4ef87ddd-6ac5-51b7-8dfa-0aa8af1902fb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2583.664981814357 - } - } - }, - { - "id": "cb919162-ce2e-5fb7-b36e-67e8bc1db033", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.150", - "basePoint": { - "x": 985.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "17e7556f-d960-522f-bde7-9a05dda2be26", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2568.664981814357 - } - } - }, - { - "id": "987ba4dc-5b64-559c-882f-fab906db4619", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 985.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "29f77263-3a75-59e0-8792-b0be9661f935", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2553.664981814357 - } - } - }, - { - "id": "3fb2399d-d6a4-5c2e-935a-b93a77437d71", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3000.00", - "basePoint": { - "x": 985.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1e79ee83-ca01-55fa-a093-194ea1456d07", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2538.664981814357 - } - } - }, - { - "id": "61d2123c-1b70-5909-8209-7d01d060c4a8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "397.86", - "basePoint": { - "x": 985.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "37db3554-98c8-5989-ba18-71157c3d73bd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2523.664981814357 - } - } - }, - { - "id": "a3b225d3-7aee-5273-81ac-84c7db72817c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.90", - "basePoint": { - "x": 985.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "68aabde5-ed63-5439-bf90-d4420c381063", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2508.664981814357 - } - } - }, - { - "id": "2243233d-b4c5-518d-a1ba-54412d7a2416", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2493.664981814357 - } - } - }, - { - "id": "61ccf1dc-c125-53c0-ab8b-09f33f6a3eff", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.96", - "basePoint": { - "x": 985.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "daa96f91-42d1-538e-9494-efcc9df8f555", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2479.164981814357 - } - } - }, - { - "id": "1aea4f22-5d15-5ca3-8789-b9083f78943f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2359.864981814357 - } - } - }, - { - "id": "9a87a600-3c3c-521a-b512-ef91a88f272a", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2364.864981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2359.864981814357 - } - } - }, - { - "id": "03d5e3aa-e467-5b05-8975-ad8870994651", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "d893564f-4384-53b5-acad-3ccad6cd0c70", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.151", - "basePoint": { - "x": 1005.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9f16fe1c-5dc7-5cce-9379-ec42e1d13d09", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "8c6b99ee-c2b7-51eb-986b-f4945bf89705", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1005.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "45a423cb-144f-5763-be06-917e6aec2a94", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "3bf378c0-4c79-5e34-a68e-341b3f3a968e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3020.00", - "basePoint": { - "x": 1005.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1235bf64-c454-5fd4-b55b-34378687aff6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "21de26d2-8219-5cdf-a946-c9bce3688122", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "398.86", - "basePoint": { - "x": 1005.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bc110d24-af93-5e60-ac9b-823e1a2774e7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "ab95109b-44b6-55b1-a041-1179e245cfdd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "397.74", - "basePoint": { - "x": 1005.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d155e064-3526-5262-a384-b28d686e9c02", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "361022a8-43c4-53b9-8f9f-386e67b40c51", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "0fb005b6-733f-5f9c-b5cc-35242eafa5e1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.12", - "basePoint": { - "x": 1005.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "af868135-6307-5182-8884-797d51970da3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "a3eac377-5f13-5f07-a793-5acb583bd412", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2355.864981814357 - } - } - }, - { - "id": "04dfb728-ccf3-5193-8e63-82de6555fc4c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2359.864981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2355.864981814357 - } - } - }, - { - "id": "41dec5f0-3ca0-599d-8e66-8e81399fa265", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "b0ebccac-62a6-59a3-b217-c3160a0bbd76", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.152", - "basePoint": { - "x": 1025.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2dec04f6-932f-5a6a-b835-2b7f566cb847", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "6071bf81-aa59-5d4a-aa97-66f75e788a0b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1025.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7810fd0d-158a-5727-a4d8-5f77a095737b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "5dedd2ad-70a3-54b3-9177-86984866b49b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3040.00", - "basePoint": { - "x": 1025.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1843a574-d217-5e6a-8638-98f278962c04", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "e1d3330d-1900-59b3-8a3d-4b7e79c71ad0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.66", - "basePoint": { - "x": 1025.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e2920040-026b-513f-a283-d9c971715a83", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "25be66b3-d1b0-5dfa-ba21-25328b0639fa", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "398.58", - "basePoint": { - "x": 1025.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5a3e800e-7764-5897-b89a-47a80b6377d1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "aaeaf363-c3a8-573e-9421-ce93b78f6311", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "ab8dc1ef-457f-5080-8cf5-0765ffb052d1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.08", - "basePoint": { - "x": 1025.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7ad8ff9f-89d0-5d27-bf56-f2af57bfb712", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "bfb62d3c-4797-5556-a971-218c36f39e7c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2346.964981814357 - } - } - }, - { - "id": "d7b53490-c10d-58bd-9226-2f771da711bd", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2355.864981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2346.964981814357 - } - } - }, - { - "id": "034e6324-d48e-5080-bfab-529ed8e83e68", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "61944286-de1a-54bf-a0f7-cad841946863", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.153", - "basePoint": { - "x": 1045.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "07e47dc5-4c4e-5a61-b189-3ddb2fabc14f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "a6df16b3-64a1-5a7f-bf3d-05ef64d3ff5b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1045.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9a21e156-a3de-5ceb-8946-f5e7e960a933", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "cbb5e19c-0d46-5187-9739-c9914d2ae4ae", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3060.00", - "basePoint": { - "x": 1045.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6b92744c-22e4-52ef-93f7-26f91eaa84e6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "ec4b38b6-5709-5a76-95bf-c2c5b03e11cf", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.44", - "basePoint": { - "x": 1045.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "14749ffa-3ee2-51f7-9714-bb6ca64ef93e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "513bf4b0-459c-557c-b23d-b49fd81ed1b7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.42", - "basePoint": { - "x": 1045.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "738c5d2c-0b70-5b87-9e40-3fe8d6e8d8d9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "ed93d4fc-9d1e-52fa-bff2-2c84bac2534f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "3e36b811-5034-581d-882f-4de051ed0344", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.02", - "basePoint": { - "x": 1045.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bc91ad15-e923-544b-b6a3-1d0c7e011d1e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "cff25d92-d386-54de-a29e-d805a087a690", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2346.964981814357 - } - } - }, - { - "id": "d720fdc2-5111-56eb-8f71-952c5abda346", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2346.964981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2346.964981814357 - } - } - }, - { - "id": "2d41ba8d-6b76-54ea-88d5-c62726bd88b6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "ce95040c-91d1-5a0b-97cc-bdf58cbb0a15", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.154", - "basePoint": { - "x": 1065.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "193192d1-7acb-5a42-861a-acc6ac3f1ad5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "07d8d227-7184-5902-9187-453af7a8480e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1065.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f68b0e31-f60d-5319-a1a5-5af165aa216c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "e918a93f-082d-583f-ae89-9e89fcd4b3cc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3080.00", - "basePoint": { - "x": 1065.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "26708dec-d8d6-514c-8271-52215ce8dd9f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "f4d953aa-6cf1-5e40-a87b-6187913bc1c8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.44", - "basePoint": { - "x": 1065.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d2620f27-5032-5a75-a491-743a239d610a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "169b97c7-18b4-5497-826e-72b193dee6ea", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "400.25", - "basePoint": { - "x": 1065.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "31310302-3e3c-5b1a-8dfa-3486eebce50b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "cc485463-33d4-554b-9591-db21549c562a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "517567bd-7263-52f8-b277-9d6f91e992ac", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.19", - "basePoint": { - "x": 1065.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "28bcd7b1-3f54-5608-a4fc-8b0aec2f0953", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "9b887c78-addc-5c1e-8352-64d29f4e506f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2356.164981814357 - } - } - }, - { - "id": "ea3667ac-b1b1-5873-8da8-73a52aeb0512", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2346.964981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2356.164981814357 - } - } - }, - { - "id": "c7c98dc8-93ad-5def-a8bb-f3eb7d0208fd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "0e416133-8e62-5778-aa9c-025479ab5a6a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+6", - "basePoint": { - "x": 1071.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "12aad81c-46c7-52a3-bad6-3e44a62fd069", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "106df4e1-3695-5a18-bfe4-7987c81c7c70", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "6.00", - "basePoint": { - "x": 1071.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a2152772-52b4-58a5-9f82-c79862bee243", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "8a6c6658-b910-5740-8d55-1cf4c00e0f81", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3086.00", - "basePoint": { - "x": 1071.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ec6181f3-d767-5f79-9fe0-27b60de2a5a7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "c61ad684-fafb-52e8-89e9-5063628789b5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.60", - "basePoint": { - "x": 1071.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "da41a3b3-cffb-5819-a09d-514f6c858063", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "ba977d9f-f451-5be4-94a5-503fd4da93e7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "400.49", - "basePoint": { - "x": 1071.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e6795fc7-ec2f-5133-a7c4-6511fb40b4e2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "70c34b79-c0d7-5c1a-a0be-14f6544e429a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.89", - "basePoint": { - "x": 1071.198811, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "aa43a5bb-a7ec-5cfb-9958-889f76b88995", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "16b1d3f8-4172-551c-96c2-3ef780c6aeb4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "189882b8-bf48-5d88-a1f0-ccbf7017840a", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2339.164981814357 - } - } - }, - { - "id": "0cf187a7-d5d1-5962-bd15-e87487a32c88", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2356.164981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2339.164981814357 - } - } - }, - { - "id": "ecd66f9c-477c-54ea-9663-3747155f2db2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "f75aaa77-17c8-5913-b793-5732eaa719b3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.155", - "basePoint": { - "x": 1085.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "521aa8d7-8677-51d0-9102-e1e75d9a6850", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "0a76edb8-b5fe-5628-81fa-9471e56d5113", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "14.00", - "basePoint": { - "x": 1085.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cc8131e3-6e22-58f1-8967-6a0d5b5adb16", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "c91f7346-1628-5d78-9b8f-ac5f2eb566a5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3100.00", - "basePoint": { - "x": 1085.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7af4eb7f-bf55-5e35-a03c-4b1e9c775b3c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "22fb2d63-b6bf-50fb-81ec-161f150e51ff", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "403.00", - "basePoint": { - "x": 1085.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "83f6d68b-1ef7-5dd8-9825-fa6aff1c3f81", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "4bb090a7-7dd0-5126-8de6-cabf6158b8bd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.07", - "basePoint": { - "x": 1085.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "be5ff1ab-7ac6-55cb-b8e1-da3f37a7d83b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "234179bd-28ff-527a-980a-507bdd8bd472", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "5fd40049-c41c-530a-aedd-f567992f3c53", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.93", - "basePoint": { - "x": 1085.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0ef1dac1-2ef9-5c99-8cd0-e0937ad8eea9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "28e16c5b-bba7-5853-ae21-23b139d8cddc", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2357.064981814357 - } - } - }, - { - "id": "f0a20c06-30a3-5218-b817-f3ae1d4f8355", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2339.164981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2357.064981814357 - } - } - }, - { - "id": "7b65e395-9fee-5542-9c0e-e6c6e6db2bf4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "dac3cf1d-0dac-51c1-8464-f6af14cf05c0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+12", - "basePoint": { - "x": 1097.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f0a395ec-50e0-5ba5-b918-282890226e05", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "f526619b-fc02-55b0-853e-f126868898f0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "12.00", - "basePoint": { - "x": 1097.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "82b6fbe4-3788-52fc-9d5f-210ab7a5c530", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "8f2cb28c-3e6f-5ed3-aba9-bd9b0e77205a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3112.00", - "basePoint": { - "x": 1097.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "928f6740-1325-54ff-8c65-60fb6eaaa675", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "de3d0db9-8996-5dc2-8934-00b95323739e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.42", - "basePoint": { - "x": 1097.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "224bd8c2-8235-52c0-ab5d-ae4d99c00d37", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "248bfc18-e042-5c90-8c4c-31c56bd96c12", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.57", - "basePoint": { - "x": 1097.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5e792e09-3761-5f88-ba46-6253059dc97f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "8c14dc39-7ba7-5e3f-9441-9abed415e846", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.15", - "basePoint": { - "x": 1097.198811, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "49692a7a-7395-56ad-b4de-9ff95dd9c0f3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "a04a083f-7252-5975-8085-4ba12dfaf362", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "63ff8c1a-3716-5ab2-83fb-57b51bdc9bbb", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2334.564981814357 - } - } - }, - { - "id": "10242fa0-fd34-5c92-84da-ca3f66810c22", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2357.064981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2334.564981814357 - } - } - }, - { - "id": "f0c100d6-a896-5cfa-b0f3-60f4c42be5f4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "365837f7-5233-54b2-8987-88ff85bcebbd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.156", - "basePoint": { - "x": 1105.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3fc19932-396d-5bd6-adad-eb2277a2695f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "6c3d4f7c-bde2-52fa-9b7d-2776d7bba287", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "8.00", - "basePoint": { - "x": 1105.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ed68c04e-5dca-5bd5-b772-77a58643143a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "5cb0a27e-984c-5e7b-b90e-375b86e824df", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3120.00", - "basePoint": { - "x": 1105.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "61111aae-2059-5683-a745-aed210f6bb74", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "d8abb56d-f872-5fdf-a29f-8742fec3a1ee", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "403.92", - "basePoint": { - "x": 1105.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "68ed8129-c0aa-59eb-8865-3a48ede27b1e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "a368a78d-31b7-5b00-a947-650758f84a26", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.90", - "basePoint": { - "x": 1105.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "64c3b17d-98f6-5cb0-8457-a84906d89316", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "668770d5-6517-55b7-b28a-4a761ba5de3d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "d99cf1c2-3b53-5896-9d47-4832a794b149", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.02", - "basePoint": { - "x": 1105.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2319c0fe-2552-5dfe-9f27-d84244f33826", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "ea34df26-dd21-55b9-8a74-da7f582c073c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2332.614981814357 - } - } - }, - { - "id": "8d52aad6-6274-51b0-bac2-31af8c933424", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2334.564981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2332.614981814357 - } - } - }, - { - "id": "fa096a4c-a412-548e-bc0c-273f5341e361", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "902ed998-7f9a-5b89-a07e-380d77f334a4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+10", - "basePoint": { - "x": 1115.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "578ba1d9-c948-585d-bb6a-cc7ef6c1f6a3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "718a935c-8b93-50cb-9169-9fcbcfc4a2fc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 1115.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5b1c8705-b0c1-5c68-80c6-86c1dfca30f2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "8911e3bf-4cfc-5506-b7e3-e007b6abeebc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3130.00", - "basePoint": { - "x": 1115.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b1ca0947-aaa5-5733-886b-9d673273d1b4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "80c070dd-e4e6-5fd8-a2fd-99f3cfe280ba", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "404.31", - "basePoint": { - "x": 1115.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b85cb883-f0b9-5a64-a20d-48dfea421c92", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "0d4c5d74-19d5-5992-bfa5-ce0b2def7b14", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "402.30", - "basePoint": { - "x": 1115.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a21ec830-a0b4-5827-964b-3e39b312cdb3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "e8ac7c8a-6add-598f-b435-d5c99de4b83d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "158853ee-fae3-5110-a9ec-f3021748cfdd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.01", - "basePoint": { - "x": 1115.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "214937ff-2625-537a-b72a-84cdceb52b65", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "157341e3-8ce7-57df-bb9f-85896d7963bf", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2330.664981814357 - } - } - }, - { - "id": "b2b0b755-6c27-5046-ba3c-3bd3389f7281", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2332.614981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2330.664981814357 - } - } - }, - { - "id": "a4b1a78d-124a-5a0a-974b-fb4a892a5bb8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "5a45012b-1d2d-57f8-8df0-79a6a850b8b8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.157", - "basePoint": { - "x": 1125.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "09481b37-1962-5329-8dde-9438a6e3fa1f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "51d73b6c-cfcd-52c0-a57a-3b8bb3c767c0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 1125.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8c4e2e30-f419-54d3-b945-133613559896", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "85e95058-0599-5da0-ab4b-e630fe160561", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3140.00", - "basePoint": { - "x": 1125.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "59372bb8-133c-52d4-aec9-07f2a648da00", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "5753598c-34b5-5f5d-bf54-566d0b8e1829", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "404.70", - "basePoint": { - "x": 1125.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1d8878d7-c4fa-5f96-8897-0bae58366eab", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "372869f8-68ea-567b-b13b-ddda569ca5dd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "402.70", - "basePoint": { - "x": 1125.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "37067a44-8927-5268-98f0-b9cc94f3781d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "c7af1f7c-d1ba-57f0-aae8-c062adc163a3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "d7f378bd-f858-5520-9dd9-50a1d4298c6a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.00", - "basePoint": { - "x": 1125.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e2fddb4b-29fe-5ed4-b252-ed278678bd07", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "6076cff7-762a-5a3c-a5b8-32e55d3cb454", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2326.614981814357 - } - } - }, - { - "id": "30812747-7a90-5bfd-9845-16475457416d", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2330.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2326.614981814357 - } - } - }, - { - "id": "df37e9be-389a-5824-8b3e-be010fb13da0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "6b9b62b6-8eec-5f91-83f1-4bc0e798ddd2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.158", - "basePoint": { - "x": 1145.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d6495ff8-70f5-58c3-a2b7-cefb63adce2a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "cced6e1f-a661-5da9-8f0a-9b047f60f7c4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1145.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b49c2433-912e-5bc8-afb9-b03b85da5e27", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "ee0f06cd-c82e-5c0d-a2a0-27c63a3d5b42", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3160.00", - "basePoint": { - "x": 1145.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9f68da57-1a23-59e7-972c-e923a4add39f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "585fbef6-3ec6-5108-b82e-d60157d92ead", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "405.51", - "basePoint": { - "x": 1145.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8e99c3aa-9da5-5115-a767-aa45f20b7a1a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "68df080f-1fe3-51bb-aae0-ff674427b92a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "403.51", - "basePoint": { - "x": 1145.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d02ac43e-d48f-56e8-b96f-0bc5b3eda84d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "4e8f76a2-d4a0-59b0-8564-c435fb7da1c5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "d4455a2d-05b5-5758-92f3-79a8b68e2438", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.00", - "basePoint": { - "x": 1145.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "81123936-8313-5d43-8829-4e6c811d9176", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "536aace2-0bbf-5c83-b570-05696faf088e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2326.614981814357 - } - } - }, - { - "id": "f003ae23-3e6f-576f-8488-6a71f96f840c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2326.614981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2326.614981814357 - } - } - }, - { - "id": "2b35e6a5-eec3-564f-8332-d4543c781d17", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "92dfdb5a-c990-5395-aec9-c8fa1bbe6c11", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.159", - "basePoint": { - "x": 1165.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "13c276ad-8dd6-5e44-8a0d-2441cfc775ab", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "0cd062c9-5744-5c6b-bd4e-3edb41aa9883", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1165.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "18c6fe45-29f7-5748-af9f-89b739dfe5c3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "19408a0d-7b81-5d00-b539-74eddb59dc42", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3180.00", - "basePoint": { - "x": 1165.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2987a4fb-11e3-54f3-a4b6-0338e03e172e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "b2f10ba8-61d0-5226-94c5-1e8b320b4910", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "405.51", - "basePoint": { - "x": 1165.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "041ddfe2-ae3a-544e-92c8-5111b9e43d00", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "b33b83c8-e2fb-5f27-a082-8db588d56880", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "403.71", - "basePoint": { - "x": 1165.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a8e23581-c4fd-54bc-8478-4e99f214ce54", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "f6fa9e25-80e8-5629-a65d-56c74e7e7f01", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "0ead1a0d-4c2d-531f-b8b6-52417da8f1b6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.80", - "basePoint": { - "x": 1165.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "68d7167e-3a0a-5db2-8db4-ec2f72aab3b7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "d1d3bf8d-f7df-5947-94a3-2d66b6f7449e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2334.614981814357 - } - } - }, - { - "id": "1c1bdd39-34ca-5764-991a-fac705cf623f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2326.614981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2334.614981814357 - } - } - }, - { - "id": "db59cd8d-abf2-5495-bf36-3c0c83bdbc52", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "17a312f0-eb95-5af3-ab29-f2001745bed4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.160", - "basePoint": { - "x": 1185.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "431c54b5-453b-5ba9-9bdc-f82ab9e92640", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "8abf081c-1d33-5398-b9d1-b89b6edc53a9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1185.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "38c94461-3468-50de-b6ab-045a8c1a9fe1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "27cac3a9-87cc-5a0a-86d3-ddbb61d7ce27", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3200.00", - "basePoint": { - "x": 1185.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cf4d1fb5-e103-54c2-a697-7c339fe51101", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "d9d24228-a3fb-53b8-aee3-05d4966c90ed", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "403.91", - "basePoint": { - "x": 1185.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "476f213e-8b08-55be-94de-a1125fc68de9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "265f42d0-35d8-5a51-b38c-df88529b5d6d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "402.73", - "basePoint": { - "x": 1185.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3341266a-d1e4-5226-9591-f61d24ca8ac3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "d2bfe864-fc78-5396-88cb-4c88dc66721e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "cd668933-fdb3-5f19-a982-5e8e91cb8881", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.18", - "basePoint": { - "x": 1185.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1a5c50c5-406c-5b0b-9e1c-1961a3f5998a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "2f139ff1-d1cd-5342-bb79-1005926fd8fa", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2342.564981814357 - } - } - }, - { - "id": "821d6860-7612-5fc7-b847-59e8d47e0056", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2334.614981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2342.564981814357 - } - } - }, - { - "id": "ca9ce147-1d28-52ab-bae6-0b27cde95a7b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "1fb170d8-18e1-59ee-a633-b41644edc284", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.161", - "basePoint": { - "x": 1205.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d1e1bb33-cd3a-51a3-9450-ef8bfca195c7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "2dd0ccc8-8a1c-57e4-a757-3124c060a0ed", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1205.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1385558b-b1ec-5d08-952e-bf043664790d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "f0e28a9d-29e9-510b-a8c8-8c12fc84db59", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3220.00", - "basePoint": { - "x": 1205.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "79bd5a9a-43fc-5881-b04a-7bfb7719033d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "217e724f-324a-53b8-8795-8c16ad68eef7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "402.32", - "basePoint": { - "x": 1205.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "638ad4d1-eda1-532c-ab94-a5da119c2cf9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "09f8e40c-73ee-5db5-803c-93afbe166357", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.16", - "basePoint": { - "x": 1205.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a4a5bd64-8178-5151-a3c5-9e231e2dc1c0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "5147ea00-1ad3-5d20-b9d3-9e28abea925d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "dda48b09-3591-5d32-9761-f50b74b22f42", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.16", - "basePoint": { - "x": 1205.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1df7ca39-1051-5617-bbc3-a3261977119d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "5df1a896-44f4-5858-bede-43d4d55b44aa", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2335.464981814357 - } - } - }, - { - "id": "ec20b1ed-118e-5749-b433-87acd450c70c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2342.564981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2335.464981814357 - } - } - }, - { - "id": "8d6ce02c-579a-512d-a14a-4a3b045e2f4b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "c5dff51d-5b6d-58a0-9f22-5a9dd41fd530", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+12", - "basePoint": { - "x": 1217.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cece610f-1016-5939-962f-117caced3547", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "0b305db4-7988-52a7-8bcf-385ce7dea901", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "12.00", - "basePoint": { - "x": 1217.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bb696f03-2ea1-551f-b2ac-4ebd7d5886c8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "72196fba-194d-5fa6-9f2c-b7748a8f8833", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3232.00", - "basePoint": { - "x": 1217.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "85735fad-9837-526c-8fdf-3076f75834b2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "413e90c9-d50a-5f3d-9c04-f10babe255e7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "403.74", - "basePoint": { - "x": 1217.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "16f1bdc0-b4ae-5149-af6e-a3b60cf996ea", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "cba20bf4-1d86-5634-8abd-ca28ae81e9d4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "400.21", - "basePoint": { - "x": 1217.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f6fbef60-1210-51d3-8899-98853ca0968e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "e5c328f0-2b50-542d-9849-e75ca723235b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "7077b16a-01b3-547e-9c0d-840adc161576", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.53", - "basePoint": { - "x": 1217.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6407e01c-ab50-5fd2-9b04-64aba66d4e85", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "5306f466-0950-5889-85c3-dae0592b81f7", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2350.614981814357 - } - } - }, - { - "id": "176ba87f-78c8-5e3d-98da-7540d1334bb9", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2335.464981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2350.614981814357 - } - } - }, - { - "id": "3c03f8be-d489-59dc-9842-466cc62e3c93", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "a32dab1b-b3b5-58d2-9ced-dbee59982fa1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.162", - "basePoint": { - "x": 1225.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b0c58f7d-6943-5f99-b9d9-7317200b228b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "4a5ffbe0-6203-5dc2-81db-8c7b337cd541", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "8.00", - "basePoint": { - "x": 1225.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "29b01053-6426-596c-a962-f1952c8bd55f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "81bdb166-5bf8-5f24-b108-6283468bcb43", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3240.00", - "basePoint": { - "x": 1225.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fb01d168-956e-54f4-85c8-7d0e7f742ecb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "a4780e53-bf06-5903-bcd9-7fc2cdf1a893", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "400.71", - "basePoint": { - "x": 1225.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7a6d8b11-6666-5382-8e12-779f7a3e7882", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "68229ea5-3c4e-53fc-a7a4-99ae2a932ae1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.58", - "basePoint": { - "x": 1225.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bd10d03a-c44c-5810-860d-f0617b0511fa", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "bfa2c758-bbec-513e-ae7d-2a5ed6764fc3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "8f9fb938-f070-5b8f-ba06-afd7772d6ff8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.13", - "basePoint": { - "x": 1225.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bb7a16b5-d6c3-5b15-821d-a43414ab464a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "882bc288-c7d9-5429-a709-10d5fe16ba82", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2353.714981814357 - } - } - }, - { - "id": "89b882f0-4b7c-58f6-adba-53803d5acab0", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2350.614981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2353.714981814357 - } - } - }, - { - "id": "88a0f17c-5a90-5e65-b09f-aef6d944359a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "eebc6b7f-9bcf-5112-8e3a-f7fa47f616cf", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+10", - "basePoint": { - "x": 1235.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c0dea08d-97bb-5398-a844-d2751e98fde2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "47490e29-7403-5be6-bff7-3e66807c9956", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 1235.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4021b5c9-a99a-5774-a791-a2d5706b4fa7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "a07f0791-da7e-510a-8d3b-0a73d0a6a983", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3250.00", - "basePoint": { - "x": 1235.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "13c46725-aec9-5c2b-b8d5-112d861360a9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "89c4a838-a390-56ca-8212-845e7fe31a4e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "400.09", - "basePoint": { - "x": 1235.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f4317b0e-252b-5111-8bb8-752ee477f910", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "4037da22-b6e6-5dea-816c-06a08005a59a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "398.79", - "basePoint": { - "x": 1235.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5b2c87cc-d67a-5b8c-b6b7-e4afc590f329", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "b8c28740-aa19-5535-8b1c-bb809ce534e3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "cd49aca0-066f-5b55-970c-a061274cc377", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.30", - "basePoint": { - "x": 1235.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "45b203c5-fb5c-59d3-8789-4ad8c595be31", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "2b0f56de-0f89-5e8b-9e2c-4dab89632a0c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2369.764981814357 - } - } - }, - { - "id": "7b7fda48-8495-51d3-8a33-fe6d323036de", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2353.714981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2369.764981814357 - } - } - }, - { - "id": "9ff8d7b1-4afd-56cb-93cb-36b34c6850de", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "33a14f1b-988e-5cbc-b6bb-a160994b0411", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.163", - "basePoint": { - "x": 1245.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "56acc7f4-f52f-566e-a168-ebd2e1845d95", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "d0132ba5-0937-599e-844d-d53a6300cfa9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 1245.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8ccee9d2-2a60-5539-862a-63cab8cb3f8b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "8e8ce3d5-9a09-5cf4-bb21-42a53f233a6f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3260.00", - "basePoint": { - "x": 1245.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "dc8a8166-b852-5863-8cd3-3a57d45b3890", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "6e69de8c-f649-5fc7-92ca-c5ba92073f15", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.88", - "basePoint": { - "x": 1245.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2afa5931-f4df-5c8b-afae-8d922b884471", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "2b950935-8c11-5d1a-9cb9-049e79a4a01b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "398.00", - "basePoint": { - "x": 1245.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "99daa651-73c1-51f9-bcb7-0e0f32d59244", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "f3e6140b-8afa-54e4-9ed3-670e053e829e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.12", - "basePoint": { - "x": 1245.198811, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "79570d3c-ec3a-5977-856a-c785ef9a7607", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "11bd8d11-e9ed-5a1a-9f10-b438ef2ecff0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "a1cfb5e7-f27a-5f43-b862-6088e3131b8f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2364.714981814357 - } - } - }, - { - "id": "d42c9111-7566-5275-9edb-ace5afd72cba", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2369.764981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2364.714981814357 - } - } - }, - { - "id": "0afbd820-78cc-5f58-8c64-fa064d57ce52", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "642519ae-fad6-55be-94d7-546076f01672", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.164", - "basePoint": { - "x": 1265.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d96e54ea-caee-5621-bac4-bee07190db75", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "eef96100-7fef-51d4-aca8-8b1fd6784909", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1265.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2729b6df-75ba-57b7-b035-7f011e353141", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "5df03b1b-36dc-5ef3-b9b8-5e520ab2a0ff", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3280.00", - "basePoint": { - "x": 1265.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "551e6076-3ea3-5dcd-bea1-710c00260895", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "577f23e6-1c8f-5ba0-999b-89a7a8db87e0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "397.89", - "basePoint": { - "x": 1265.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "292dc221-05e2-5732-ab40-ff9c6977c12f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "5b61efb4-5551-5bd5-806e-3ca340521507", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.62", - "basePoint": { - "x": 1265.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5cf179db-d710-5dd7-a9ba-1bbf091796a8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "764bfb97-f69a-5fc6-94b2-72ec55f9ad60", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "e396b0b1-6411-5568-8a06-0c34f04e4d71", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.27", - "basePoint": { - "x": 1265.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4e4fd935-a20d-59e3-858d-4a78dea8ea83", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "7e4c11bd-672c-5849-9c5d-b1d341548aca", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2360.664981814357 - } - } - }, - { - "id": "78266664-230f-5567-8911-ffd4586ba250", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2364.714981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2360.664981814357 - } - } - }, - { - "id": "1f6bfad4-1da8-5aaa-a808-ad24048fadbb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "80de10df-b6b0-5a1e-9043-bbe07348cd9f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.165", - "basePoint": { - "x": 1285.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b965cb82-e71b-5dbf-8439-ec157c77ac3a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "d557abeb-927d-59a4-a66f-798102ccce36", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1285.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a3a87ad0-a1a2-5c55-9e31-f5eaea60bafa", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "af9a0b0c-e260-5d34-99b1-8f0aec15273a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3300.00", - "basePoint": { - "x": 1285.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6522a954-6856-55d0-bada-669af0e2ba3e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "482d0659-a516-5421-95f0-3b98d511f0e9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "398.70", - "basePoint": { - "x": 1285.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4e18de80-5b1e-5162-9c53-a54fc193444a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "92f1aa1d-9238-552e-886d-348f3a1985e3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "395.24", - "basePoint": { - "x": 1285.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "aa1d9447-4464-5c58-acd8-c90c1b6b7cba", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "3790e0c4-df30-5a1b-84e6-5d5082161a2d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "82fdb4f0-983d-50aa-b9f7-f8d30957ae5a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.46", - "basePoint": { - "x": 1285.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fac2a3f7-f309-5b91-8989-09c68a7bf21a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "5c28f4dc-2ec1-5fa2-a847-7436f4a570dc", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2369.664981814357 - } - } - }, - { - "id": "60086fd6-d5b9-59fd-86a0-e0e45c6287f9", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2360.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2369.664981814357 - } - } - }, - { - "id": "5550d7b3-c8e0-515f-9e09-1005bb34d7ef", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "238cda53-416e-5e11-bd49-2a78f46ec018", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+10", - "basePoint": { - "x": 1295.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b90a30fc-52fb-535b-beb4-fb426c9b35be", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "46676a5b-d343-5059-bf34-13580bf88e47", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 1295.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9b2119f9-541d-5ea8-af8b-1d2b2f2c1162", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "235ce471-89b1-5493-94be-8452ee7928a6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3310.00", - "basePoint": { - "x": 1295.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c9a79146-9f13-5b52-bfeb-5bb246c76e33", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "e91e3bf1-11ba-548e-b378-a0c31c3377fc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.90", - "basePoint": { - "x": 1295.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d65ea47c-6f77-5e2d-b337-963edfab6e65", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "bb542678-54c0-5715-a9ee-b5feb396bf0e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.54", - "basePoint": { - "x": 1295.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "360c18d6-cc23-5fc7-bcc6-3d588a448fd3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "aa0efb6c-15cd-538b-b85f-93924c54df49", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "efdd8c01-9c4e-53ea-861f-73dc8617ea36", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.36", - "basePoint": { - "x": 1295.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "93e1d2f0-5e05-549e-bd16-3ae46a9945a3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "54ffda43-3277-59f1-a727-3758c5a3e874", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2388.714981814357 - } - } - }, - { - "id": "553b5047-9369-5fc2-950b-a913fcc6db4e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2369.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2388.714981814357 - } - } - }, - { - "id": "0c030c1d-4dbe-5c00-93f0-d86f5f0841c0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "b760bed0-2181-53c8-bf69-7652bef5e54a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.166", - "basePoint": { - "x": 1305.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c25f0cb6-ce50-56b0-b5f8-f36ecee82727", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "8cf90efe-187d-5f5c-90e8-537b26651f0f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 1305.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "23c743a6-29ca-5480-bd0f-732bf0ade632", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "d0f208af-e34f-5a91-b833-9f4a8d792e3b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3320.00", - "basePoint": { - "x": 1305.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "89f8c6d0-df2b-5c86-a8d8-aa7828bec883", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "f135332c-45f6-5cd1-a268-03672d00b4ce", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.09", - "basePoint": { - "x": 1305.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "08173e32-ec87-59c8-95c2-68f1fc2836e2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "1575c15e-a7c5-5199-9c91-01277627b001", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.85", - "basePoint": { - "x": 1305.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5a04c2fc-9129-5af5-8ce3-93f93e8ab93c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "6b2c5f83-316d-52cb-9d9e-4d06c5c2884e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.76", - "basePoint": { - "x": 1305.198811, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d22ae47b-dff2-5c07-8c99-e31184d63037", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "65e0f59a-bbb2-5355-ba03-01cf762b5c14", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "dc2b858e-1c28-5f1d-aeea-edcc4d5a85bf", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2389.814981814357 - } - } - }, - { - "id": "0758f2e8-61f2-5e7e-b462-fecec5e4e76b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2388.714981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2389.814981814357 - } - } - }, - { - "id": "def358a0-2702-5739-a0da-f12f2f12bfb3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "ca5121e0-fa9c-595f-b7ed-d05ee597e058", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.167", - "basePoint": { - "x": 1325.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3ce479da-2e57-513b-aa0d-7f9b42c52e20", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "adc6e72a-9f85-5e57-ba8f-66dfc38ea609", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1325.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6d493062-9ba3-59ca-b2b4-aff3ddc36b85", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "6727f4cb-c9b8-57e8-adab-c0eb1358d2fa", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3340.00", - "basePoint": { - "x": 1325.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ca6d6f5e-e69c-594d-8420-207618a87d79", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "6b5b932a-6a72-5382-b6cb-9ee4125adf59", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.87", - "basePoint": { - "x": 1325.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0fec0eeb-c97f-5089-8a3b-0726e394e8cd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "60a53aca-a739-5120-a3e2-14e9c3ef2a97", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.47", - "basePoint": { - "x": 1325.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bcd6ce56-bef9-5b5d-ade0-781cc98f68af", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "507c5aff-9754-59f5-84e6-9398f3175686", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "1a97d895-2c79-5024-acf9-c11dd46793ce", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.40", - "basePoint": { - "x": 1325.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f1498fbf-e613-5e15-81b6-12753a7260d0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "276d6a09-26dc-5a59-ad0f-8a9321842216", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2386.314981814357 - } - } - }, - { - "id": "ddba5a54-489b-56e4-8c0f-7f8808867ff6", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2389.814981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2386.314981814357 - } - } - }, - { - "id": "85bd5647-80cb-5579-b367-b217588bd721", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "9812d50f-825d-5fe0-811d-c3485855682c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.168", - "basePoint": { - "x": 1345.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4339e9ab-808c-5f01-9198-0fc5be273460", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "1a9d669c-2eef-530f-a1fa-2b4e1cddad1d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1345.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d7006189-adca-52f4-81b7-401fdeccfb3e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "9b0eb1cb-b493-5b13-a21a-e38006b61626", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3360.00", - "basePoint": { - "x": 1345.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a0fceba3-fe97-5c28-b0b8-d1cfc050998d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "d05fb50b-8072-5dd4-96b7-a0cf11a511a3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.57", - "basePoint": { - "x": 1345.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "16244723-cde3-5a64-9a38-998af8f946c5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "ca785711-c7b1-5e41-8186-f229d5a6907b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.85", - "basePoint": { - "x": 1345.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4f69cee7-1860-502f-ab62-200299a2656b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "60f8a3a9-e4c1-582e-a0d9-a62cb4662b84", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "a40b263e-3d05-58f4-af7c-6b4016652f43", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.72", - "basePoint": { - "x": 1345.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "327070e9-dd0b-50b0-84ee-a04d40640fb2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "7ec931a9-1d4f-505b-86c7-09232c0b3f04", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2368.264981814357 - } - } - }, - { - "id": "a8d95d49-30d5-55d9-8f65-f6de2209ea79", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2386.314981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2368.264981814357 - } - } - }, - { - "id": "c8240ad7-b90c-5db6-850d-c7c2278c716e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "cd75a0c0-79a4-51dd-b861-14dede835834", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.169", - "basePoint": { - "x": 1365.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d777e2da-8ee1-5931-ade5-47a41ffc995b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "ac2a08e3-f7a6-5578-827e-8dcb9e3d7701", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1365.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b1cabe4a-78b3-5ff5-83f0-0cf81df52071", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "6e81884a-64dc-5834-ad76-6e7986e08731", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3380.00", - "basePoint": { - "x": 1365.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c918b352-5b17-5360-9b85-47d15763dddd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "c89372f0-e611-5990-9cf8-221230c1acd6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "397.18", - "basePoint": { - "x": 1365.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "72da96a7-9325-59ec-bd52-af0ba17c6388", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "9aa04c22-f1e1-5442-92cc-6acd700b079b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.24", - "basePoint": { - "x": 1365.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0544e857-fb80-52da-bf6e-718c6c7bf721", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "03bb1d9a-8d4f-5ab0-8e55-7ae2ec3667b0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "7474310d-3f95-5466-8047-21e2d1add0a2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "5.94", - "basePoint": { - "x": 1365.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7f04a8c7-de35-562a-9967-68b848cd95eb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "694ad013-f4dc-5ad6-aed4-eaabf6653580", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2403.614981814357 - } - } - }, - { - "id": "1d9c3d96-0390-5ab0-b597-7ca7b78c90b5", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2368.264981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2403.614981814357 - } - } - }, - { - "id": "4ad6665a-3a35-59e1-a188-a81c0d542847", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "f38bc07a-5e05-5067-9992-959aa98aef07", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.170", - "basePoint": { - "x": 1385.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0f63ac73-fe44-5acd-85d1-f491bb45e4d7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "10549732-e988-52a0-a0d3-405bf4241fb0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1385.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "80e07f70-f4d5-5c34-b876-15d76d708313", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "7a19a8ae-b020-5cc8-a2c4-45fa51174a29", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3400.00", - "basePoint": { - "x": 1385.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "759c17ee-673a-5bd2-b71b-1d71711b0f99", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "85d4f338-2c54-5409-b74d-48194ed982e7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.11", - "basePoint": { - "x": 1385.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "03ba6f90-82d4-520b-9451-c8f2a5e78731", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "a3239d32-94a1-5916-b3bf-f80aa9414662", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.70", - "basePoint": { - "x": 1385.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bdf6c2d8-bd30-5ecd-bdd0-1e93c03f7caf", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "6099cb9d-436d-5a12-bd87-8efa6b07db7f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.59", - "basePoint": { - "x": 1385.198811, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "57518ca6-ff32-5014-88a5-8223082404c7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "5709a755-26ce-5ecc-946f-620b0e038d79", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "c8191af1-f7a5-51c5-9aff-53d29d7411b1", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2419.364981814357 - } - } - }, - { - "id": "d04fd039-1214-5733-95f1-fdc214e486cb", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2403.614981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2419.364981814357 - } - } - }, - { - "id": "7597cd9c-3a72-5e29-bfdd-b17c9851d160", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "4a4b69f6-cc92-56fe-a39f-6973bfd0b84d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+12", - "basePoint": { - "x": 1397.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "29e7f13d-c1a7-57e6-87f7-7c7991336bde", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "bc1592f7-1235-57e8-8336-ab7705f17fbb", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "12.00", - "basePoint": { - "x": 1397.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "898eca7c-d458-540e-b64f-7e2ec912e771", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "f318e4b0-1886-5f64-afba-b8b23b3b971d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3412.00", - "basePoint": { - "x": 1397.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e98bad7a-67a1-52af-80f5-ae87b0d9bf83", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "9a37bdeb-65c4-5dd1-82b1-b9fb2dfbb71d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "386.96", - "basePoint": { - "x": 1397.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "19145e84-8c9d-5609-a171-76845226fc07", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "042b8112-7eea-5c1a-a2b6-694d0d95e4ca", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.76", - "basePoint": { - "x": 1397.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "16439b42-2831-5c93-89b2-ddfa0a63d70a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "1e246004-d3c3-53e0-a4ed-b4e08f04ad83", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.80", - "basePoint": { - "x": 1397.198811, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b8580ea3-7512-5b9a-afd9-8f3da7acd72a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "04b917c0-9c57-5929-8fe9-dfc3d0980502", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "92fd47c0-9683-57fa-adf5-d6977e0c914b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2397.264981814357 - } - } - }, - { - "id": "11a72a2e-0536-5a7a-9c32-1b430967dc5a", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2419.364981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2397.264981814357 - } - } - }, - { - "id": "fae1377e-519a-5ea2-9667-eff329879ada", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "8b4df9c3-6c52-5809-bf38-5f5f0ed8a1fc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.171", - "basePoint": { - "x": 1405.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a0d8dbb0-9461-5f70-90ee-cfa3143f9214", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "4ed0ed2f-13f2-5244-a51e-cadb84140e74", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "8.00", - "basePoint": { - "x": 1405.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a956e88c-739b-5462-bbff-4de42e0e9a64", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "eefc07ab-0736-5296-8fa8-7bab28938203", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3420.00", - "basePoint": { - "x": 1405.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "33f3a58a-790e-5253-a012-afea7a632930", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "962d4119-f278-5820-91b2-0dde71e58bfc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.38", - "basePoint": { - "x": 1405.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f34b8fe6-5367-5225-8145-f429983291fc", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "c2947a56-6147-5180-a326-ed4e322cf5f3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.00", - "basePoint": { - "x": 1405.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "37a3d1da-f6dc-5d76-8cc8-034610a6a371", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "4284d025-111e-5c07-9e0c-cce83aebff55", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "a371fe21-2c3f-5198-b0ad-7db7428ea93d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.38", - "basePoint": { - "x": 1405.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b51644d9-2141-55e8-9c4c-8c16244e0460", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "8726fc54-378f-5e8f-94b6-7a85b11e8ac7", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2381.614981814357 - } - } - }, - { - "id": "df987aed-61c8-5223-88cf-dabb659f538e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2397.264981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2381.614981814357 - } - } - }, - { - "id": "3765c983-5ebf-5e07-8409-81375c1d834c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "528baa5f-201e-5e98-b077-ef7c732db480", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.172", - "basePoint": { - "x": 1425.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9c3299a6-62f3-5d81-b4e3-81705867ee28", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "084ad137-ac4c-5bfb-b4b0-737117058d43", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1425.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1db4a579-439f-5c12-ad04-f4916de01479", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "04155deb-a721-52de-8f3a-ab76f0727a2d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3440.00", - "basePoint": { - "x": 1425.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1bcebc4f-83a6-58dc-bdc1-9cfdabdf2e99", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "68f565dd-2d75-5168-ba6b-87e7f376eecc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.51", - "basePoint": { - "x": 1425.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f054fada-b20b-563e-8d41-062b8eb00816", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "37cf93cc-fe04-5c1a-a9d2-7a633036897b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.25", - "basePoint": { - "x": 1425.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bf38dbe9-be90-591f-b93b-99f9ac183b63", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "d85d60fd-16b8-5edf-aee7-3f623d2e0909", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "55932906-0ebb-5070-8614-cfbeadca86c0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.26", - "basePoint": { - "x": 1425.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "de795b80-dc5c-53ed-910d-7601c78dccc1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "8963768e-72f3-5d8f-8635-477c73dd64d3", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2369.314981814357 - } - } - }, - { - "id": "6de4b56e-2d06-5da3-a4e5-33899697c970", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2381.614981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2369.314981814357 - } - } - }, - { - "id": "b9bb272d-b386-5a36-be88-40c772d31bbb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "215a3246-b8ac-5993-bd4d-9f619b510ef7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.173", - "basePoint": { - "x": 1445.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1b9dfe88-8fdd-5591-8b5a-fffe9b4d73c0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "3b3ad0f8-f6d1-5971-b890-b5ac32b10ccd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1445.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7ba32212-2769-583b-8db7-316cd7a433e4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "4003fb89-7e9b-5a3e-9877-9232fd600d66", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3460.00", - "basePoint": { - "x": 1445.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ba5ca2dd-6c4c-5959-91f6-dc90e09c7549", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "f7bb744f-0649-5d36-8c6f-f54fdf9e4a88", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.97", - "basePoint": { - "x": 1445.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "38657cb4-500d-542c-8387-fc7bfaf1d571", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "940d7463-5b8c-597e-ad48-47f377a7c1da", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.67", - "basePoint": { - "x": 1445.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "aa6a963f-d241-590a-89c6-2fb4d0897c19", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "22303b0d-383d-5582-936b-51a3bb36f309", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "0695e796-21b8-57f3-b054-855aea3072e3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.30", - "basePoint": { - "x": 1445.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c70116e7-5936-5514-a33b-9b9fc355495c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "8dfcbd21-a97d-5292-80c7-b2489b7133ae", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2372.964981814357 - } - } - }, - { - "id": "fbda4d6d-b524-522a-a7e0-8d15d12a0edd", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2369.314981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2372.964981814357 - } - } - }, - { - "id": "744cf040-3afa-5ad1-bfbf-e28ada52c487", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "e8740f01-d6e9-5afc-8936-bf9f87a31a46", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.174", - "basePoint": { - "x": 1465.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e3ed4e46-8dfe-5f60-8863-d41ac0091fcb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "e2f20a8a-edaf-58f7-87de-f95693d61c60", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1465.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "505db590-a5a8-5fc6-b7a4-80180d702fa1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "b72d523e-1c79-55fd-9750-ba4bf9074959", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3480.00", - "basePoint": { - "x": 1465.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4ff48f70-30da-5567-8248-9a3fc696fa1d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "b5e29db8-8cea-59af-a720-6f6a28afc969", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.24", - "basePoint": { - "x": 1465.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "062425b3-6735-57e7-b9ee-1de8b08353ea", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "44638eb8-7cea-57fa-91f8-9ce83077ff6f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.43", - "basePoint": { - "x": 1465.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4d1a9a40-c995-54ab-beb4-0cd3e5fe6a92", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "4e0a3b46-7ee3-5b29-a998-7cb2802323a7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "cc79c1b8-1b46-5e33-9564-7c5124600af4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.81", - "basePoint": { - "x": 1465.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "28dc528c-6c3d-5991-ab4a-05951ca7824b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "9e7bc18e-291c-58ae-a470-8963567fad96", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2375.214981814357 - } - } - }, - { - "id": "856814dd-bf98-5c06-839d-7d8bd6521812", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2372.964981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2375.214981814357 - } - } - }, - { - "id": "03238fc3-019d-5822-9116-8f3418783c52", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "96142c9b-8b5d-5f1b-8cbb-6ccd34775d53", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.175", - "basePoint": { - "x": 1485.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9b633732-8780-5e90-81b0-9b8d507f15d6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "7aaaea39-f083-5cac-8f84-1acb22be6bf2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1485.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2e010e46-e0af-564b-924c-62a827abe67f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "91363916-8ddb-557f-b0fa-0ed0faed732c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3500.00", - "basePoint": { - "x": 1485.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f42e3f34-7655-5c20-b958-d1007a6d686b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "105f8780-7dfd-585c-861c-f1f27b6a64a7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "395.79", - "basePoint": { - "x": 1485.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b308edbd-4037-5f52-a564-4238b7e5532c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "a9c8afcd-b513-50ad-8b99-6306d7df2a27", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.84", - "basePoint": { - "x": 1485.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2da15a41-b51c-56e2-b6dd-28ababeefd34", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "09d0c368-cced-57ce-b291-a0a753390032", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "aedcdd09-a718-522c-8300-5e924dbe8120", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.95", - "basePoint": { - "x": 1485.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b6adf237-1121-538e-9d2e-69835b6f6159", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "6b009464-94a9-50c5-a658-5110a7ab25b1", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2383.764981814357 - } - } - }, - { - "id": "0092f780-8ecf-546a-a7a6-e24da28b9efa", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2375.214981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2383.764981814357 - } - } - }, - { - "id": "5206d090-5931-5f1e-bb1c-f0f82c429f4b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "85273201-f7ba-5516-9b45-5d41487e02de", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.176", - "basePoint": { - "x": 1505.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d05fc75e-f242-5d0b-8367-b81d5f35569d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "2235e1a4-7528-5a1c-9048-fdfc8c29c8b7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1505.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "08703b0a-e71f-5555-8371-6a23a1a8de03", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "fdbf1bb3-6540-5799-9f51-d032aaa811d5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3520.00", - "basePoint": { - "x": 1505.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8156e217-6239-5816-a09c-8d16c0fb0ec4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "7e2a3268-28f5-5ed2-9e80-f20fde82c4a4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.08", - "basePoint": { - "x": 1505.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "00b52711-038a-54e9-8a36-d2a317d3d4d9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "c344f565-46d8-51e7-a695-0c70ea0e3b29", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.59", - "basePoint": { - "x": 1505.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3c6e6925-73a1-58d9-9d3c-fcd8c65403a1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "149a9dda-86cf-5730-842f-33a5ab881661", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "4ad39d5c-a4b3-5e9b-8ad0-2630331dfbe7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.49", - "basePoint": { - "x": 1505.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "221e31c5-1515-552d-a1ec-cf5ede8958cc", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "44dbf5c4-ff18-5717-8249-9a2a4ac89078", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2392.314981814357 - } - } - }, - { - "id": "2d44d8bd-5a54-5f89-8bbd-4e92b40c7ca5", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2383.764981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2392.314981814357 - } - } - }, - { - "id": "d2f19f98-493e-5d13-8ccd-26df198a0451", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "9dbf6179-49b8-51d9-91a1-c3963ec641b7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+10", - "basePoint": { - "x": 1515.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8bdf993e-6d36-5eb8-be0d-b29efe6e723c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "5bee1190-8afd-547a-9d70-acbfb2a92153", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 1515.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "156247f0-734b-5dc9-a55e-816727737e2b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "0c498e50-9e20-5913-b180-aa4256311477", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3530.00", - "basePoint": { - "x": 1515.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b940db62-9ea2-58ac-b698-10d17c2033ec", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "a326d154-6538-5958-8a19-001df2682d49", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.37", - "basePoint": { - "x": 1515.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f77e560a-8a7d-5171-bd90-b27d7aa994a7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "cbd5cb56-a304-5c86-aaf9-5e725e7cd786", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.96", - "basePoint": { - "x": 1515.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "254d1fcb-6273-5327-aa29-16a12570861c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "1d7f075b-8831-571a-b0e6-eaeff5553fa1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "b4e143cb-eaad-5276-869b-fcfe7dfd28ba", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.41", - "basePoint": { - "x": 1515.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "95512259-eba0-5577-97a0-3fce39f60a44", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "86005737-9dc0-5d84-829d-bfcfc6ea67af", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2454.164981814357 - } - } - }, - { - "id": "de26d340-989a-56fe-a5a5-618f03be9bbe", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "-0.60", - "basePoint": { - "x": 1165.198811, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1d3ca671-d69f-58b0-b737-4ee59bca5795", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.08", - "basePoint": { - "x": 1385.198811, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b72d82a3-db33-5fe8-9ae4-f1436ceaf727", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.51", - "basePoint": { - "x": 1397.198811, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "07f41db4-81cc-5583-8d51-13a532ea4684", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.18", - "basePoint": { - "x": 1405.198811, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c33b29bd-aa8b-5c7b-bad4-6630433ffbea", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "-0.67", - "basePoint": { - "x": 1465.198811, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8fdab44b-75f5-5b6a-abca-31c39626febf", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "0828d092-42dc-5b43-b2d0-e8eecd87fb52", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2428.364981814357 - } - } - }, - { - "id": "8788b74a-73cc-53e1-bd7c-f402d8fbb0f6", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1149.498810788244, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "f62c51c9-f06c-59ca-a4b0-d3fe82057a93", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1149.498810788244, - "y": -2441.964981814357 - } - } - }, - { - "id": "d3667d15-b31c-5e2f-bcc5-f0555b112310", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2428.364981814357 - } - } - }, - { - "id": "18eb332a-0a91-5301-86b5-a32e93b1cf8b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1180.898810788243, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "88b3d22c-3789-5a8a-87dd-360fd11c2c25", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1180.898810788243, - "y": -2441.964981814357 - } - } - }, - { - "id": "5930fa61-1de6-5fcb-8990-15f7b55bc863", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "L=40.00", - "basePoint": { - "x": 1165.198811, - "y": -2443.364982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d18e869a-2932-5098-82dd-991fedb383a5", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "K=3.36", - "basePoint": { - "x": 1165.198811, - "y": -2446.864982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ff1ea959-a774-516e-9a0b-02f4e65e46fe", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "BVC= No158 (EL=403.51)", - "basePoint": { - "x": 1147.448811, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8f7c608e-383a-5e7b-87da-2739eff82577", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "EVC= No160 (EL=402.73)", - "basePoint": { - "x": 1182.948811, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "99f79925-72f5-5b20-be21-2d7c23544d83", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1377.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1417.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "47521630-0f5d-54d0-9145-50042e23a098", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1377.198810788243, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 1377.198810788243, - "y": -2428.364981814357 - } - } - }, - { - "id": "3c249642-85ee-586d-933a-880a3d1b88c1", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1381.498810788244, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 1377.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "5fb080fe-7c40-5f96-889b-0b607c42069d", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1377.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1381.498810788244, - "y": -2441.964981814357 - } - } - }, - { - "id": "8ca33363-f0ad-526c-bd07-7f54b3b90115", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1417.198810788243, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 1417.198810788243, - "y": -2428.364981814357 - } - } - }, - { - "id": "ca81196e-5a63-5538-952d-b546efa031c4", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1412.898810788243, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 1417.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "f1a73114-707c-5816-ac4f-2550cf8216d8", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1417.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1412.898810788243, - "y": -2441.964981814357 - } - } - }, - { - "id": "75b811b1-ef9a-510f-a9dd-c2c59a2b2a44", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "L=40.00", - "basePoint": { - "x": 1397.198811, - "y": -2443.364982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2e0fd579-f384-5cfa-9866-1207933a363d", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "K=3.92", - "basePoint": { - "x": 1397.198811, - "y": -2446.864982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a83f765c-56e3-5b98-86e9-9b60863c01b8", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "BVC= No169+12 (EL=390.87)", - "basePoint": { - "x": 1379.448811, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2b2395be-bbd0-5743-9977-e33a53d0e31c", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "EVC= No171+12 (EL=391.75)", - "basePoint": { - "x": 1414.948811, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0e36118d-fba8-524e-8dab-291b6af14f6e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "549f2772-49be-5d88-b467-70087dbf6225", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2428.364981814357 - } - } - }, - { - "id": "cf759999-0a8c-51b8-bc2c-e325e40e6be3", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1449.498810788244, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "d742bb7d-9eec-5bbf-a2ab-42289f861677", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1449.498810788244, - "y": -2441.964981814357 - } - } - }, - { - "id": "8a1a3d6e-058a-5778-aeac-733bba8cafb1", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2428.364981814357 - } - } - }, - { - "id": "36ff2de9-5dff-5b93-8232-d922ba28daa8", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1480.898810788244, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "20fb21aa-275c-5a6f-9d60-30b85afff016", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1480.898810788244, - "y": -2441.964981814357 - } - } - }, - { - "id": "475fe86d-8c69-5f77-a9d3-69667350fc10", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "L=40.00", - "basePoint": { - "x": 1465.198811, - "y": -2443.364982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "55d29f2e-b5e7-5136-aad2-4e706770caa6", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "K=2.98", - "basePoint": { - "x": 1465.198811, - "y": -2446.864982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "74d2f806-dd93-5aa7-88c9-5b5a9d310b82", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "BVC= No173 (EL=393.67)", - "basePoint": { - "x": 1447.448811, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6105d6c1-3d03-5278-958b-e32c98bd1a67", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "EVC= No175 (EL=393.84)", - "basePoint": { - "x": 1482.948811, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a0693087-ab3a-5812-a4c5-ff9374c99bed", - "type": "Arc", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 985.1988107882435, - "y": -2471.664981814357 - }, - "radius": 7.5, - "startAngle": 4.71238898038469, - "endAngle": 1.5707963267948966, - "counterClockwise": true - } - }, - { - "id": "b47fcda0-d632-5da1-9cd6-43dbf8aecd30", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.90", - "basePoint": { - "x": 985.698811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8eb0de24-b618-5fef-8ab6-158f65e39f98", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2464.164981814357 - } - } - }, - { - "id": "70f79a06-f187-5691-b91a-46261b19e6f4", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1045.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "a312032d-021c-564e-9be6-9678ddd516f9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.42", - "basePoint": { - "x": 1045.198811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7a13d84d-2b4b-565c-afd0-fb8cec3e897f", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1105.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "85fed93a-6ce7-5275-b972-6b71f0c4d8db", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.90", - "basePoint": { - "x": 1105.198811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "defaaeb7-6a01-5beb-b2fd-0d62ce4f6c3f", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1165.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "14d014d2-1689-594e-ac0d-8e5416faba7d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "404.31", - "basePoint": { - "x": 1165.198811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c7a1b253-effc-5379-a3b3-bcf901303222", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1245.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "5a86f093-6118-5875-b7c3-c83717a62915", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "398.00", - "basePoint": { - "x": 1245.198811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "57b463f7-5a21-5c3e-b4f3-94225910f9ad", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1325.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "d43767ef-752e-5e39-abc4-e188db87ed25", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.47", - "basePoint": { - "x": 1325.198811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "487b0586-10d7-5bd1-8715-9ec9ca18a041", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1397.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "4495e8ee-2a0b-5c89-8f90-4602bf3f6a5d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.25", - "basePoint": { - "x": 1397.198811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2c6baae4-116e-57d4-b4cd-bba7cbd61a59", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1465.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "674f1ca0-0908-597c-ae39-6adb262bb9b7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "395.10", - "basePoint": { - "x": 1465.198811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b3480f99-53c7-547f-b852-fe0fdc9da2ec", - "type": "Arc", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1515.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5, - "startAngle": 1.5707963267948966, - "endAngle": 4.71238898038469, - "counterClockwise": true - } - }, - { - "id": "96b42b79-e2e3-5571-8e3a-1006c79bd255", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.96", - "basePoint": { - "x": 1514.898811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ebd50a1c-b0d5-5939-a2fc-afeda0319ab9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2464.164981814357 - } - } - }, - { - "id": "728a2f69-c566-53ba-ba9e-5f691d3fd3d1", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 988.0083607882434, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 1042.389260788244, - "y": -2464.711101814357 - } - } - }, - { - "id": "064273ad-125e-534f-9ab2-ae0054e3f93a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=60.00m", - "basePoint": { - "x": 1015.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7339c1c8-1737-5a31-835b-a21b9dd9197e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=2.52m", - "basePoint": { - "x": 1015.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a5c6e2d1-3245-5c69-be7e-bd9bf57f7364", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=4.20%", - "basePoint": { - "x": 1015.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5ef5bc02-c3c0-56a3-b937-e3ba7ef7572e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1048.008360788243, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 1102.389260788244, - "y": -2464.711101814357 - } - } - }, - { - "id": "21e7b252-e539-5a63-b07b-f1f6f540bbeb", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=60.00m", - "basePoint": { - "x": 1075.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5d648e82-15a3-5f15-98d8-2c7149803f25", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=2.48m", - "basePoint": { - "x": 1075.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4056a847-0538-5ccb-b0ae-251b0326f735", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=4.13%", - "basePoint": { - "x": 1075.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e33b2b88-4320-5351-a49a-72c54a9c843c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1108.008360788243, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 1162.389260788244, - "y": -2464.711101814357 - } - } - }, - { - "id": "e8224df5-d9ea-5f89-b77a-65e2d0fb95be", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=60.00m", - "basePoint": { - "x": 1135.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7f498ab7-9829-56b4-9dea-f23db276093d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=2.41m", - "basePoint": { - "x": 1135.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "538a6947-6af5-5acd-891b-c7d372bdce1f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=4.02%", - "basePoint": { - "x": 1135.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f710bc42-340d-54c4-9a0c-027aac9808eb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1168.008360788243, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 1242.389260788244, - "y": -2478.618861814357 - } - } - }, - { - "id": "fb1b3561-d6b4-5ef5-9cff-1c2f9de37ade", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=80.00m", - "basePoint": { - "x": 1205.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5172b4ac-8e08-5065-b8f8-973b24150383", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-6.31m", - "basePoint": { - "x": 1205.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0932f923-f52e-53f1-93a8-e75b07069cac", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-7.89%", - "basePoint": { - "x": 1205.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "efcb8422-0552-54c2-8678-33a5963b1684", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1248.008360788243, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 1322.389260788244, - "y": -2478.618861814357 - } - } - }, - { - "id": "6493c5cc-742b-5f1c-b90a-c33aa2e0bc40", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=80.00m", - "basePoint": { - "x": 1285.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ecf816a5-bacd-58ba-8ac8-0aa68ed1d98c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-5.53m", - "basePoint": { - "x": 1285.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "143e64cb-d78a-57c7-8380-fc9a4b17aa32", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-6.91%", - "basePoint": { - "x": 1285.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5f9246bc-177a-545b-9c51-cd178fd7379f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1328.008360788243, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 1394.389260788244, - "y": -2478.618861814357 - } - } - }, - { - "id": "294976d2-9290-5ddc-815a-92744b15e38b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=72.00m", - "basePoint": { - "x": 1361.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0376afe9-5b0e-5989-a79f-3874442d119c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-2.22m", - "basePoint": { - "x": 1361.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7eda92ed-8fd7-5c4c-89bc-b9933007618a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-3.08%", - "basePoint": { - "x": 1361.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6ff9e881-c65c-5cd1-9c89-901db3d9f73d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1400.008360788243, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 1462.389260788244, - "y": -2464.711101814357 - } - } - }, - { - "id": "dfa5153c-d8bd-5249-bf7f-3c15426965ef", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=68.00m", - "basePoint": { - "x": 1431.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "63f2aff7-9de3-50af-956d-a858e4f7b457", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=4.85m", - "basePoint": { - "x": 1431.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cec459cc-e0df-5b07-b825-627855cdde82", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=7.13%", - "basePoint": { - "x": 1431.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a49eb1b2-8297-50ce-a5fa-58eec7ff59c2", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1468.008360788243, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 1512.389260788244, - "y": -2478.618861814357 - } - } - }, - { - "id": "bc51a672-b913-55ef-b37c-5c03817bb3c7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=50.00m", - "basePoint": { - "x": 1490.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c27e41b8-dfb9-529f-90ca-2f1d4c1f541f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-3.14m", - "basePoint": { - "x": 1490.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a871fc2a-f79c-5a16-a4d6-1cf18d686187", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-6.28%", - "basePoint": { - "x": 1490.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "44d2554f-d809-5028-a4ea-4a34a86dc7eb", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "78848607-3684-5030-9505-17b1c17f10df", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2454.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2324.164982 - } - } - }, - { - "id": "8348c6dc-125d-5438-af76-45bb7ebd221e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2324.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2324.164982 - } - } - }, - { - "id": "281a8d58-bec0-5b39-9d15-b1b6f7161da3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2324.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2454.164982 - } - } - }, - { - "id": "167823ea-f0c8-513b-8c15-d09ae508a8ff", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2454.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2454.164982 - } - } - } - ] - }, - { - "id": "46643859-c33f-5c3a-bc81-6cfa65d42f88", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 971.1988107882435, - "y": -2454.164981814357 - } - } - }, - { - "id": "6a386aef-f5fe-5da6-89e4-b97b5efed58e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "380.00", - "basePoint": { - "x": 955.198821, - "y": -2453.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d18df07c-bd98-59cb-9c99-7d61e6a7b2df", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2404.164981814357 - }, - "endPoint": { - "x": 971.1988107882435, - "y": -2404.164981814357 - } - } - }, - { - "id": "cb30f6b6-767e-5cff-a753-7557574bb4b6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.00", - "basePoint": { - "x": 955.198821, - "y": -2403.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "54745b96-ca82-5ad9-a26e-f45b6fdb55eb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2354.164981814357 - }, - "endPoint": { - "x": 971.1988107882435, - "y": -2354.164981814357 - } - } - }, - { - "id": "923eac7d-6833-5d25-a1a0-26ac9208d100", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "400.00", - "basePoint": { - "x": 955.198821, - "y": -2353.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9a0c83ec-9572-5069-9552-4f246bc9c0b1", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2324.164981814357 - }, - "endPoint": { - "x": 971.1988107882435, - "y": -2324.164981814357 - } - } - }, - { - "id": "a8a84292-2b04-50e8-8b01-286e0ebfcb7a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "406.00", - "basePoint": { - "x": 955.198821, - "y": -2323.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d76ef443-240e-5adb-b22d-7647ff986b79", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2444.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2444.164981814357 - } - } - }, - { - "id": "7bd9e851-760c-505d-bb84-d8c58a1c8217", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2434.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2434.164981814357 - } - } - }, - { - "id": "f204442e-54d1-50bc-908b-46ea931ff140", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "4a45ab7f-2051-55f6-bc49-7c378e58697d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2444.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2434.164982 - } - } - }, - { - "id": "279f0b63-79c0-5d3d-acb4-f89f8bb626bf", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2434.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2434.164982 - } - } - }, - { - "id": "90ad8fe9-8f4f-5cc9-9f2c-baac1f407702", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2434.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2444.164982 - } - } - }, - { - "id": "2145ca5d-44c7-5c6b-bbc2-fdf844dd4edc", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2444.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2444.164982 - } - } - } - ] - }, - { - "id": "5e2bcab9-836e-54ce-9bea-6df7673c93e0", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "35adc73d-f193-5879-bf89-04728875a0bc", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2444.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2434.164982 - } - } - }, - { - "id": "9c36fc46-12f7-5e64-b640-32724256bcab", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2434.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2434.164982 - } - } - }, - { - "id": "1f1f121a-eeb9-5088-8fd7-ffc270c3f91e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2434.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2444.164982 - } - } - }, - { - "id": "af48b019-2829-51ad-9ca2-ef147ce2ff0d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2444.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2444.164982 - } - } - } - ] - }, - { - "id": "cd1de481-5ce4-5b9a-ad6a-6cff09fbe7d9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2424.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2424.164981814357 - } - } - }, - { - "id": "1ebe8545-94ff-5ffe-89d0-28d3eb8604b3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2414.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2414.164981814357 - } - } - }, - { - "id": "e43d3687-742e-5ecf-8d4c-3a450f6ebb2d", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "c6dd754a-f89f-5b2f-9b1c-9a773673f36d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2424.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2414.164982 - } - } - }, - { - "id": "1c10dfb4-b5cc-58f6-a50d-647d38b8eabb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2414.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2414.164982 - } - } - }, - { - "id": "c6f38da3-02af-5e2f-ad04-ef8cc3464aae", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2414.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2424.164982 - } - } - }, - { - "id": "bc5fad84-af68-52d9-a011-0d04194c69c3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2424.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2424.164982 - } - } - } - ] - }, - { - "id": "45f369bd-02fb-5e1b-b469-a2e9f5b9a5aa", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "b1502aeb-9a0d-570c-9015-f45248fbc82d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2424.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2414.164982 - } - } - }, - { - "id": "2e661558-f9ec-595c-9556-15eccf5b5302", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2414.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2414.164982 - } - } - }, - { - "id": "78bc7b24-5e22-5a32-b386-22683019255a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2414.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2424.164982 - } - } - }, - { - "id": "215d05c9-5514-59a3-9cdc-49d0d09abec8", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2424.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2424.164982 - } - } - } - ] - }, - { - "id": "ad6357f4-45cd-5e07-92e2-7aed738bf50b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2404.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2404.164981814357 - } - } - }, - { - "id": "8b022e8e-97ca-5892-911b-6ddb6e5bffed", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2394.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2394.164981814357 - } - } - }, - { - "id": "cf3a4de8-ea17-5dcc-a8ac-c778f780a2a1", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "634c73f1-6021-5249-80f5-e757314b258a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2404.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2394.164982 - } - } - }, - { - "id": "aa7a32c0-d26a-5f03-b278-fbd1f5500234", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2394.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2394.164982 - } - } - }, - { - "id": "3d35bc36-9391-5fcd-a550-fac4f3fcea59", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2394.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2404.164982 - } - } - }, - { - "id": "3f7dce15-9c2d-5dd1-9788-b7d1f093c4b0", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2404.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2404.164982 - } - } - } - ] - }, - { - "id": "44cd7aa2-fc02-5a69-b91f-1dc2ca6d1d67", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "e6b5a405-ec87-516d-985f-de27b7e5d33b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2404.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2394.164982 - } - } - }, - { - "id": "4800a22f-da22-5bba-8a7d-36d77e7600b5", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2394.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2394.164982 - } - } - }, - { - "id": "dd64a9d8-95f4-5b37-839e-37d00b7c688e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2394.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2404.164982 - } - } - }, - { - "id": "6aea999b-bc34-5beb-aea6-6974beb10f35", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2404.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2404.164982 - } - } - } - ] - }, - { - "id": "2ff04403-7629-5468-b2b5-6a0f11556475", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2384.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2384.164981814357 - } - } - }, - { - "id": "492755b2-43f0-5bf5-ab80-338801f4035a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2374.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2374.164981814357 - } - } - }, - { - "id": "6cb7bf0b-820b-5427-bba6-a4878989ec02", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "b5109a98-24af-5502-8337-1a68814e269a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2384.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2374.164982 - } - } - }, - { - "id": "cf6e9daa-3182-59d4-b4fa-4eabeec79a2c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2374.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2374.164982 - } - } - }, - { - "id": "c3efeea9-4327-5c51-b8d5-09c1a1908e05", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2374.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2384.164982 - } - } - }, - { - "id": "e3422b62-2a24-51b3-b9e2-908265f77453", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2384.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2384.164982 - } - } - } - ] - }, - { - "id": "7058498d-1a40-5a22-9f03-f22b082940ea", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "e5c3df8b-08c7-569e-8a2d-5abcdcb8db07", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2384.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2374.164982 - } - } - }, - { - "id": "7e6c84a0-2641-5042-95f0-f0a534a38765", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2374.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2374.164982 - } - } - }, - { - "id": "6a364e2d-66eb-53c5-922d-f93aafae098b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2374.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2384.164982 - } - } - }, - { - "id": "5e253866-4dfd-5178-b5ca-ca92139fac55", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2384.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2384.164982 - } - } - } - ] - }, - { - "id": "200aa880-586b-5529-9c09-10da38261ab5", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2364.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2364.164981814357 - } - } - }, - { - "id": "c7d63b6f-8686-5a01-98ab-1c2d90ac6996", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2354.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2354.164981814357 - } - } - }, - { - "id": "9d9be846-13e5-502a-a852-53fa21eb3d92", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "e6bf9bd2-703d-5ae2-86f4-a802e22dc14b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2364.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2354.164982 - } - } - }, - { - "id": "095c4bf5-b329-52b9-ad2e-fb0de36cc0f2", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2354.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2354.164982 - } - } - }, - { - "id": "543d4c0e-b530-5ae1-936f-dd64f9a89fd3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2354.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2364.164982 - } - } - }, - { - "id": "8c9bce96-99d0-5af7-8a10-931926a8af34", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2364.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2364.164982 - } - } - } - ] - }, - { - "id": "6fc1b064-3c4d-5615-b0cb-1f119300425a", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "2e55b575-c8ee-5c84-a487-239bcbc1733e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2364.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2354.164982 - } - } - }, - { - "id": "99f75b85-40cf-5b05-8905-b82c098d27a9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2354.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2354.164982 - } - } - }, - { - "id": "e1f3f3a9-a01a-5766-9bb0-1570cd49dc09", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2354.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2364.164982 - } - } - }, - { - "id": "af9e2fe7-c393-55f7-8def-c9e7f633e840", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2364.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2364.164982 - } - } - } - ] - }, - { - "id": "efebd188-803e-51e6-9b43-05c5c8098979", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2344.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2344.164981814357 - } - } - }, - { - "id": "247736fe-d014-55a4-9460-4681d8570c31", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2334.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2334.164981814357 - } - } - }, - { - "id": "7ea7d1c2-9f7d-5d9f-b25e-cb9bffc18550", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "f0d2adb7-674f-5087-bc37-38bde224f92f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2344.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2334.164982 - } - } - }, - { - "id": "bfdc9d2d-26a3-54ea-bc43-fee80fb5092a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2334.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2334.164982 - } - } - }, - { - "id": "f12be1ed-757c-58b5-a218-21f54e681455", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2334.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2344.164982 - } - } - }, - { - "id": "f0509d78-bece-5fea-9605-74f761e116ac", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2344.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2344.164982 - } - } - } - ] - }, - { - "id": "9adc441b-9ca4-58d9-b325-1cbf5ca31ecd", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "1f5b0d4d-3a08-52cd-9a64-0c21710e242c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2344.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2334.164982 - } - } - }, - { - "id": "60ad5474-971f-585c-b497-0d295101d514", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2334.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2334.164982 - } - } - }, - { - "id": "ce158cd6-394d-586f-a9be-2ae23576c5e5", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2334.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2344.164982 - } - } - }, - { - "id": "598344c2-ec63-5851-85dc-3dbef6395682", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2344.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2344.164982 - } - } - } - ] - }, - { - "id": "9a1e00c3-cb3d-5098-8af0-bafe612ca63b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2324.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2324.164981814357 - } - } - }, - { - "id": "1ca7ed87-ba8f-586c-b8a9-8ec18bc9bab8", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "587c717d-3126-59a0-9e9b-bb4fc20f4c33", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.198811, - "y": -2596.664982 - }, - "endPoint": { - "x": 993.598811, - "y": -2596.664982 - } - } - }, - { - "id": "2e97efcb-8230-5a6b-bd81-bd936166d5d6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 993.598811, - "y": -2596.664982 - }, - "endPoint": { - "x": 993.598811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "16f6046c-360d-52b0-8a8e-893107c80ba2", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 8.40", - "basePoint": { - "x": 993.598811, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7f954df7-1353-5d16-83a9-fd76e2e5fe46", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 12.9", - "basePoint": { - "x": 993.598811, - "y": -2597.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1ba5d168-2b91-5858-a434-1177f6ea2604", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 993.5988107882436, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1003.438810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "215113c7-f5bb-537e-8313-3e716ac88ee0", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "d37f7b02-aef7-59b6-b43a-431519fbcdb4", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1003.438811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1003.438811, - "y": -2586.664982 - } - } - }, - { - "id": "ec40f6a8-e6de-5f1d-8acf-92a9e87a6c27", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1003.438811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1007.628811, - "y": -2586.664982 - } - } - }, - { - "id": "ce015835-bbf8-5e45-9283-763e137d3094", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1007.628811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1007.628811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "bc2c00d5-cd66-5485-8f95-a3234c134834", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 4.19", - "basePoint": { - "x": 1005.533811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "93e72146-a287-51fe-9217-04e6a4c1509e", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 30.0", - "basePoint": { - "x": 1005.533811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "21a91189-c3d1-5659-8a1a-b98b34f73ec4", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1007.628810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1067.578810788244, - "y": -2591.664981814357 - } - } - }, - { - "id": "7ae3abee-ce21-5dbf-826c-44286b81e3d5", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "864317d7-8da5-5156-832d-ab08f17b3ce3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1067.578811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1067.578811, - "y": -2586.664982 - } - } - }, - { - "id": "70fffb7f-03dc-5ece-8246-6809846e6c1c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1067.578811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1074.698811, - "y": -2586.664982 - } - } - }, - { - "id": "6e66879b-6e1f-53f3-aa34-f9cef38d424a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1074.698811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1074.698811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "4180ebf0-3cf2-5a1d-adc1-1c4d57ae0b6a", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 7.12", - "basePoint": { - "x": 1071.138811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3f773b5a-7cf2-5f2b-b1ce-5a5aba9ba524", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 25.0", - "basePoint": { - "x": 1071.138811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "30b1c843-5dd9-5528-be44-4fe06c8532e3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1074.698810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1083.478810788244, - "y": -2591.664981814357 - } - } - }, - { - "id": "a9e63a56-7359-5816-9d43-eea9c40358bd", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "1db532d9-67b7-55dd-85a5-8227ef54a870", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1083.478811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1083.478811, - "y": -2586.664982 - } - } - }, - { - "id": "09cd69a9-c9ba-5656-a796-7d33ae47a538", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1083.478811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1110.808811, - "y": -2586.664982 - } - } - }, - { - "id": "3e404bd8-3ebc-5de7-a5d8-6db5b55f662c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1110.808811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1110.808811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "43706359-1d66-56f1-8716-c595084d8f16", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 27.33", - "basePoint": { - "x": 1097.143811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d97c0856-a463-5911-9087-6a46cbe12395", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 12.7", - "basePoint": { - "x": 1097.143811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ab16042a-d584-5dc7-8e18-fb98776093b3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1110.808810788244, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1111.088810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "bb4c6ab9-65fe-58a4-bb18-c0bacdc747e9", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "1bc9d871-346f-5f68-ba89-e63aae4247b7", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1111.088811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1111.088811, - "y": -2596.664982 - } - } - }, - { - "id": "a5d2c1f3-5117-501f-95b5-c5485a18e016", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1111.088811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1118.938811, - "y": -2596.664982 - } - } - }, - { - "id": "a3fbad22-cf8d-515c-a0af-a87b207dd78f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1118.938811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1118.938811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "9a4a586d-e37a-5830-a8e1-06c2b33c9fa3", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 7.85", - "basePoint": { - "x": 1115.013811, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6f46bb49-db90-5928-8045-4e24de3641a7", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 18.0", - "basePoint": { - "x": 1115.013811, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7f317490-0808-5952-83d1-389336cacc44", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1118.938810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1145.278810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "a2634d93-cb55-58fe-babc-c3d4c299bbc6", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "9ef4a8dc-3720-52f0-9d86-d0b46ae4e596", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.278811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1145.278811, - "y": -2596.664982 - } - } - }, - { - "id": "87f16d3d-9218-5c26-ba39-b4c9744770bb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.278811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1172.338811, - "y": -2596.664982 - } - } - }, - { - "id": "ccd54e75-f387-5455-92a1-18c3a9479c3f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1172.338811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1172.338811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "86088f84-9473-5add-80b0-d9ccc06ce9b9", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 27.06", - "basePoint": { - "x": 1158.808811, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "24f2c277-f75d-5e9c-bb22-ea8daf38b3fb", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 15.8", - "basePoint": { - "x": 1158.808811, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d00cc3a7-36f7-5e3f-aa5f-803aa431cf3f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1172.338810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1175.708810788244, - "y": -2591.664981814357 - } - } - }, - { - "id": "d57d7e71-64cf-5409-8cac-f3b3fe2345fd", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "b3f6b4ac-ea49-58cd-9b4d-ac3f21e864cf", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1175.708811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1175.708811, - "y": -2586.664982 - } - } - }, - { - "id": "c8b0c47b-e2e9-5d38-be70-9b6a17a388ce", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1175.708811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1195.088811, - "y": -2586.664982 - } - } - }, - { - "id": "354cdbc1-b709-5139-b302-08954def297c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1195.088811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1195.088811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "24db1902-f5dd-5602-be12-5b46fadd6a26", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 19.38", - "basePoint": { - "x": 1185.398811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2b443f5e-8f1b-59a6-8f43-9a1eb5c6e4b2", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 30.0", - "basePoint": { - "x": 1185.398811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2b037f58-ee04-53ab-8f12-4f2e39578e9a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1195.088810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1232.068810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "a308dcd7-f790-5205-883a-ceeef6cc85b7", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "a1427d4c-6eac-51b5-9fcd-f9e0adf897ee", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1232.068811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1232.068811, - "y": -2586.664982 - } - } - }, - { - "id": "24ecdeef-ddf2-513e-8cd8-06fbff1daa46", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1232.068811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1252.768811, - "y": -2586.664982 - } - } - }, - { - "id": "f9f7ccce-e590-50f2-a355-da7389aa368c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1252.768811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1252.768811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "71598207-9ab1-59ab-9c40-747bff2d5a80", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 20.70", - "basePoint": { - "x": 1242.418811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d26891f0-f3dd-57de-bdf0-9478fc417274", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 25.2", - "basePoint": { - "x": 1242.418811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "943ca12f-ff99-5105-a721-0b8c5be547eb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1252.768810788244, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1253.608810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "306b432c-cdeb-541d-b712-45873908ec2f", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "25c7be48-7345-5264-abce-3d30e9eb066a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1253.608811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1253.608811, - "y": -2596.664982 - } - } - }, - { - "id": "5974f5d1-2e61-5ce9-9781-17e4d9cee1b6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1253.608811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1275.608811, - "y": -2596.664982 - } - } - }, - { - "id": "fbc1369a-1614-52b7-a718-17e672c8353c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1275.608811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1275.608811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "e78c9e14-62fb-533e-9d00-1992010895e4", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 22.00", - "basePoint": { - "x": 1264.608811, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0f4290fa-96fd-5157-9666-38d668b7325a", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 30.0", - "basePoint": { - "x": 1264.608811, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "eb15a387-841a-570f-bd30-050ff2d26c18", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1275.608810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1290.588810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "9664b68f-60f0-5818-8d09-652f4fd5478c", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "9da70f0f-06bb-5055-b35a-a053a8f9cb0e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1290.588811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1290.588811, - "y": -2596.664982 - } - } - }, - { - "id": "7e50f426-8b3d-5b57-b0d6-2ddad9c7a3a7", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1290.588811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1327.288811, - "y": -2596.664982 - } - } - }, - { - "id": "be7efdaf-b1a9-55d0-84f3-2996f3bdaaf6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1327.288811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1327.288811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "3c9c9987-6378-5c86-bf21-9cae3fd9644f", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 36.70", - "basePoint": { - "x": 1308.938811, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "da71ede5-e062-57ba-8c15-54c2c741349c", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 15.8", - "basePoint": { - "x": 1308.938811, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b60e14c0-a3df-5566-89c8-6c2148946cfc", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1327.288810788244, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1332.028810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "d2103ca4-8382-596a-b6e0-d6437f809229", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "a96d1a0f-c3e6-54cb-86e8-7d13f2b77389", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1332.028811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1332.028811, - "y": -2586.664982 - } - } - }, - { - "id": "ebb03a39-2c7c-51c0-bdde-875096faeab3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1332.028811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1356.018811, - "y": -2586.664982 - } - } - }, - { - "id": "40ca130a-30ab-5f60-a8dd-89c1da8889eb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1356.018811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1356.018811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "eab48d2d-be2a-56b2-b26a-3609286ef999", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 23.99", - "basePoint": { - "x": 1344.023811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4e4507c7-c5ef-59cb-90ae-c2333faee38e", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 25.0", - "basePoint": { - "x": 1344.023811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8bd40e26-5eb9-51eb-8ba5-f394f71c4463", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1356.018810788244, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1380.108810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "cbf8d9e3-c44f-56ae-923b-871abca491af", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "7f7dae5e-a6c5-5ed5-9a7a-5d1de4184795", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1380.108811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1380.108811, - "y": -2586.664982 - } - } - }, - { - "id": "d82f53b3-a2d6-5006-85f3-617fbe33f1fb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1380.108811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1410.508811, - "y": -2586.664982 - } - } - }, - { - "id": "50e85038-3ce4-5836-b426-027ef3d4799b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1410.508811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1410.508811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "2ff22398-897e-595b-bde7-eae776e8bae5", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 30.40", - "basePoint": { - "x": 1395.308811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5e8041f3-be76-5a73-9a64-08333b501109", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 13.3", - "basePoint": { - "x": 1395.308811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e4b59e26-a33d-5bf8-91ca-30eacd47009e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1410.508810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1417.038810788244, - "y": -2591.664981814357 - } - } - }, - { - "id": "0bd21bce-8438-5b01-ae02-ad33731fde0b", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "73851a3d-2239-547d-b5de-f8420de5b345", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1417.038811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1417.038811, - "y": -2596.664982 - } - } - }, - { - "id": "3577558a-ee9b-500d-8b22-092a0d4e19f9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1417.038811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1432.738811, - "y": -2596.664982 - } - } - }, - { - "id": "dd4eb271-9669-5e4a-9e84-fe76682446de", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1432.738811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1432.738811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "9571a46e-4d0f-51e2-a904-f70cfcd5a218", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 15.70", - "basePoint": { - "x": 1424.888811, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "598af6a3-8bba-50ae-9a3a-eca9da827ff0", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 25.0", - "basePoint": { - "x": 1424.888811, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "09bdddac-1091-5eb1-91b8-ee45c1f0f67e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1432.738810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1443.118810788244, - "y": -2591.664981814357 - } - } - }, - { - "id": "ceac7010-9588-50ac-8be0-710e2954a0a8", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "547ce111-0fea-5be0-b896-b99b6d9364a2", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1443.118811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1443.118811, - "y": -2586.664982 - } - } - }, - { - "id": "378977ec-4054-524d-93fb-76057d9f7821", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1443.118811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1473.208811, - "y": -2586.664982 - } - } - }, - { - "id": "533198bb-8544-5fd4-8bc4-375b88aa31dc", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1473.208811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1473.208811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "cb33606b-d954-5bda-b9b0-fd8cca5256a0", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 30.09", - "basePoint": { - "x": 1458.163811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d64262bc-36df-5f48-ba3d-442a2d873a89", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 41.1", - "basePoint": { - "x": 1458.163811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "67853c2f-5055-5f4e-b206-745c91030923", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1473.208810788244, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "34fd67e7-8c91-50f2-9278-d98956269daa", - "type": "PolyLine", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "6ceffbd9-c64c-55a0-a5c6-7e4f4525d225", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.198719, - "y": -2364.664982 - }, - "endPoint": { - "x": 679.198719, - "y": -2367.102482 - } - } - }, - { - "id": "a5dc8581-8d4e-5f0d-9bb4-860c06b34bb8", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.198719, - "y": -2367.102482 - }, - "endPoint": { - "x": 669.198719, - "y": -2369.539982 - } - } - }, - { - "id": "2db36666-49b1-57d4-baa9-40e6ed522d1b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.198719, - "y": -2369.539982 - }, - "endPoint": { - "x": 649.198719, - "y": -2374.414982 - } - } - }, - { - "id": "b4256e59-c11b-5f69-83ab-4f74226822d0", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.198719, - "y": -2374.414982 - }, - "endPoint": { - "x": 629.198719, - "y": -2379.289982 - } - } - }, - { - "id": "d4267f36-39b9-54d6-bb30-9237aa79fbbb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.198719, - "y": -2379.289982 - }, - "endPoint": { - "x": 609.198719, - "y": -2384.164982 - } - } - }, - { - "id": "1b657917-44f0-5dca-93fd-bb4178a0b075", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.198719, - "y": -2384.164982 - }, - "endPoint": { - "x": 589.198719, - "y": -2389.331652 - } - } - }, - { - "id": "64d951a8-f749-56a3-af5b-99bd503b7321", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.198719, - "y": -2389.331652 - }, - "endPoint": { - "x": 579.198719, - "y": -2391.914982 - } - } - }, - { - "id": "dbf4ce0c-6de9-51b0-9d63-d0f29fe2c763", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.198719, - "y": -2391.914982 - }, - "endPoint": { - "x": 569.198719, - "y": -2394.498312 - } - } - }, - { - "id": "51bd4eb7-a38f-5b19-94de-0cc37315d5ae", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.198719, - "y": -2394.498312 - }, - "endPoint": { - "x": 559.198719, - "y": -2397.081652 - } - } - }, - { - "id": "bf6509f2-d346-5aa1-ac87-8003cadc0c67", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.198719, - "y": -2397.081652 - }, - "endPoint": { - "x": 549.198719, - "y": -2399.664982 - } - } - }, - { - "id": "94ddc8b9-2e3c-5568-9ced-b31071836cd7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.198719, - "y": -2399.664982 - }, - "endPoint": { - "x": 529.198719, - "y": -2404.363782 - } - } - }, - { - "id": "8e54aa2b-2667-5ba1-94a7-fcbdaebc44f3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.198719, - "y": -2404.363782 - }, - "endPoint": { - "x": 509.198719, - "y": -2409.062572 - } - } - }, - { - "id": "8ece2f0d-61d4-59bd-a2bc-b5171e3a4c1e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.198719, - "y": -2409.062572 - }, - "endPoint": { - "x": 489.198719, - "y": -2413.761372 - } - } - }, - { - "id": "030fab72-c98c-525a-b295-0a7ef1e256a1", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.198719, - "y": -2413.761372 - }, - "endPoint": { - "x": 486.198719, - "y": -2414.067942 - } - } - }, - { - "id": "f1c0c33e-c270-5bd6-9f2c-1738051c4a56", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 486.198719, - "y": -2414.067942 - }, - "endPoint": { - "x": 485.198719, - "y": -2414.313602 - } - } - }, - { - "id": "cfd42a88-21f6-5597-8250-493c248d8c47", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 485.198719, - "y": -2414.313602 - }, - "endPoint": { - "x": 484.198719, - "y": -2414.540902 - } - } - }, - { - "id": "9b3aacee-08ce-5b14-9a46-4a809b7e0404", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 484.198719, - "y": -2414.540902 - }, - "endPoint": { - "x": 483.198719, - "y": -2414.749812 - } - } - }, - { - "id": "b535b541-4ed9-5f24-b369-3e35348d6fa1", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 483.198719, - "y": -2414.749812 - }, - "endPoint": { - "x": 482.198719, - "y": -2414.940362 - } - } - }, - { - "id": "7fde0eed-879d-54f9-b018-7b039f183325", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 482.198719, - "y": -2414.940362 - }, - "endPoint": { - "x": 481.198719, - "y": -2415.112532 - } - } - }, - { - "id": "4d0e2b7e-480e-569d-8904-cbdd496f7f43", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 481.198719, - "y": -2415.112532 - }, - "endPoint": { - "x": 480.198719, - "y": -2415.266332 - } - } - }, - { - "id": "775a55bd-0055-5a1d-b81f-7f8e5799720f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 480.198719, - "y": -2415.266332 - }, - "endPoint": { - "x": 479.198719, - "y": -2415.401752 - } - } - }, - { - "id": "7ba272d9-8080-5758-b5ca-56c24a46f457", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 479.198719, - "y": -2415.401752 - }, - "endPoint": { - "x": 478.198719, - "y": -2415.518802 - } - } - }, - { - "id": "137b6ab5-e435-5fec-85cc-ec0f2692ddb4", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 478.198719, - "y": -2415.518802 - }, - "endPoint": { - "x": 477.198719, - "y": -2415.617482 - } - } - }, - { - "id": "b01d32fd-33fb-5f1a-8180-e44734b354af", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 477.198719, - "y": -2415.617482 - }, - "endPoint": { - "x": 476.198719, - "y": -2415.697782 - } - } - }, - { - "id": "37ab8b2c-c93c-5596-abdd-6cfe3ddaa52a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 476.198719, - "y": -2415.697782 - }, - "endPoint": { - "x": 475.198719, - "y": -2415.759722 - } - } - }, - { - "id": "3710664e-171c-5f03-a87c-c872ef49fee4", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 475.198719, - "y": -2415.759722 - }, - "endPoint": { - "x": 474.198719, - "y": -2415.803272 - } - } - }, - { - "id": "40c86a7d-e1c8-500d-be3a-95735fb7c1d7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 474.198719, - "y": -2415.803272 - }, - "endPoint": { - "x": 473.198719, - "y": -2415.828462 - } - } - }, - { - "id": "c707c811-74d1-549c-939a-7c29d6c36ba8", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 473.198719, - "y": -2415.828462 - }, - "endPoint": { - "x": 472.198719, - "y": -2415.835272 - } - } - }, - { - "id": "8f6b7279-1c92-5f6a-bb6a-7dddc03e05d6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 472.198719, - "y": -2415.835272 - }, - "endPoint": { - "x": 471.198719, - "y": -2415.823702 - } - } - }, - { - "id": "c07ac1a1-202a-50e8-b7a4-e1dcca86f14b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 471.198719, - "y": -2415.823702 - }, - "endPoint": { - "x": 470.198719, - "y": -2415.793762 - } - } - }, - { - "id": "b15ad590-3d7f-5b7e-ae8d-59db04695ec6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 470.198719, - "y": -2415.793762 - }, - "endPoint": { - "x": 469.198719, - "y": -2415.745452 - } - } - }, - { - "id": "df7e8252-936f-503c-9d8b-4bc978d6aa6c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.198719, - "y": -2415.745452 - }, - "endPoint": { - "x": 468.198719, - "y": -2415.678772 - } - } - }, - { - "id": "0e29397f-bb08-551a-a482-6f02e213267f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 468.198719, - "y": -2415.678772 - }, - "endPoint": { - "x": 467.198719, - "y": -2415.593712 - } - } - }, - { - "id": "dac8601a-e7ad-5888-a02c-cff1dfad80af", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 467.198719, - "y": -2415.593712 - }, - "endPoint": { - "x": 466.198719, - "y": -2415.490282 - } - } - }, - { - "id": "6dde8c18-ea73-5c8e-bf5e-f0284ff9ad22", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.198719, - "y": -2415.490282 - }, - "endPoint": { - "x": 465.198719, - "y": -2415.348562 - } - } - }, - { - "id": "099a5547-40da-5c95-8901-0eac58a40024", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 465.198719, - "y": -2415.348562 - }, - "endPoint": { - "x": 464.198719, - "y": -2415.188472 - } - } - }, - { - "id": "b4396db7-f6f9-536e-8a10-28651bed0e69", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 464.198719, - "y": -2415.188472 - }, - "endPoint": { - "x": 463.198719, - "y": -2415.010012 - } - } - }, - { - "id": "d0b919f8-d12b-5d22-a495-0c8b3f799be9", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 463.198719, - "y": -2415.010012 - }, - "endPoint": { - "x": 462.198719, - "y": -2414.813172 - } - } - }, - { - "id": "ab075feb-b304-506c-8a87-49c190bf6712", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 462.198719, - "y": -2414.813172 - }, - "endPoint": { - "x": 461.198719, - "y": -2414.597962 - } - } - }, - { - "id": "91b0813c-d047-5239-a789-a12854f2be61", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 461.198719, - "y": -2414.597962 - }, - "endPoint": { - "x": 460.198719, - "y": -2414.364382 - } - } - }, - { - "id": "e3b6ace8-300b-5243-8a25-7e3ee3878834", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 460.198719, - "y": -2414.364382 - }, - "endPoint": { - "x": 459.198719, - "y": -2414.112422 - } - } - }, - { - "id": "4b6ff1ea-192e-537b-bd60-c431c281fea6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 459.198719, - "y": -2414.112422 - }, - "endPoint": { - "x": 458.198719, - "y": -2413.842092 - } - } - }, - { - "id": "9c57e0f6-3642-5547-94d9-0b89bfca3719", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 458.198719, - "y": -2413.842092 - }, - "endPoint": { - "x": 457.198719, - "y": -2413.553382 - } - } - }, - { - "id": "69ad4e17-ec97-58ef-ad19-2947f2ce8512", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 457.198719, - "y": -2413.553382 - }, - "endPoint": { - "x": 456.198719, - "y": -2413.246312 - } - } - }, - { - "id": "87a333f1-7b11-5fce-a9f5-b22cc370abbb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 456.198719, - "y": -2413.246312 - }, - "endPoint": { - "x": 455.198719, - "y": -2412.920852 - } - } - }, - { - "id": "f4b50315-53ab-5c09-a1e4-760583ef4f45", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 455.198719, - "y": -2412.920852 - }, - "endPoint": { - "x": 454.198719, - "y": -2412.577032 - } - } - }, - { - "id": "47bea8d3-8b8d-5dc7-a416-26a97ee3a638", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 454.198719, - "y": -2412.577032 - }, - "endPoint": { - "x": 453.198719, - "y": -2412.214832 - } - } - }, - { - "id": "eb568de9-d185-5920-ab61-d90ff0ecb3ac", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 453.198719, - "y": -2412.214832 - }, - "endPoint": { - "x": 452.198719, - "y": -2411.834262 - } - } - }, - { - "id": "5579f027-9387-5ebc-91f7-2385d8a43b22", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 452.198719, - "y": -2411.834262 - }, - "endPoint": { - "x": 451.198719, - "y": -2411.435312 - } - } - }, - { - "id": "af5e2ac5-78fd-54d3-9713-602dbd82c5f4", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 451.198719, - "y": -2411.435312 - }, - "endPoint": { - "x": 450.198719, - "y": -2411.017992 - } - } - }, - { - "id": "26a19ecd-5653-546f-8025-3aeb19fac3e0", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 450.198719, - "y": -2411.017992 - }, - "endPoint": { - "x": 449.198719, - "y": -2410.582302 - } - } - }, - { - "id": "300ac502-7b65-5397-94fd-b7413b089453", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.198719, - "y": -2410.582302 - }, - "endPoint": { - "x": 448.198719, - "y": -2410.128232 - } - } - }, - { - "id": "83543f6b-7d68-5720-8a88-d1704fab2aeb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 448.198719, - "y": -2410.128232 - }, - "endPoint": { - "x": 447.198719, - "y": -2409.655792 - } - } - }, - { - "id": "75af47b3-105a-5d90-917f-5838e9396547", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 447.198719, - "y": -2409.655792 - }, - "endPoint": { - "x": 446.198719, - "y": -2409.164982 - } - } - }, - { - "id": "1f42a245-ac12-5d80-bdf4-31c61a534f6a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 446.198719, - "y": -2409.164982 - }, - "endPoint": { - "x": 429.198719, - "y": -2400.664982 - } - } - }, - { - "id": "c5940ceb-17ce-58ca-b018-a29f2287e518", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.198719, - "y": -2400.664982 - }, - "endPoint": { - "x": 422.198719, - "y": -2397.164982 - } - } - }, - { - "id": "2d712913-5884-55b4-91a2-884667d87eca", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.198719, - "y": -2397.164982 - }, - "endPoint": { - "x": 409.198719, - "y": -2390.664982 - } - } - }, - { - "id": "1ae977d0-daac-542c-9a7a-78462c019074", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.198719, - "y": -2390.664982 - }, - "endPoint": { - "x": 403.198719, - "y": -2387.664982 - } - } - }, - { - "id": "e41008b1-50c1-5a7c-bec1-b106a3c82055", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.198719, - "y": -2387.664982 - }, - "endPoint": { - "x": 389.198719, - "y": -2380.516042 - } - } - }, - { - "id": "2a033398-9210-5569-8502-db6d0cf42ff3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.198719, - "y": -2380.516042 - }, - "endPoint": { - "x": 369.198719, - "y": -2370.303282 - } - } - }, - { - "id": "225ba4ca-fa9d-5131-95d0-83ecc346ccd8", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.198719, - "y": -2370.303282 - }, - "endPoint": { - "x": 349.198719, - "y": -2360.090512 - } - } - }, - { - "id": "2b9363b6-0660-55bd-9a40-4c5a6ae44e6f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.198719, - "y": -2360.090512 - }, - "endPoint": { - "x": 329.198719, - "y": -2349.877752 - } - } - }, - { - "id": "f95ff6cb-55e2-5425-8ce2-3b65d044a3d4", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.198719, - "y": -2349.877752 - }, - "endPoint": { - "x": 309.198719, - "y": -2339.664982 - } - } - }, - { - "id": "0bc78a7f-26e6-50c8-ad87-da3d1ea201fd", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.198719, - "y": -2339.664982 - }, - "endPoint": { - "x": 289.198719, - "y": -2330.831652 - } - } - }, - { - "id": "aada370f-5fb0-5d3b-b177-d6e6f0d5e61a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.198719, - "y": -2330.831652 - }, - "endPoint": { - "x": 269.198719, - "y": -2321.998312 - } - } - }, - { - "id": "33e3b206-154b-515d-8094-1465f7b0b02a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.198719, - "y": -2321.998312 - }, - "endPoint": { - "x": 268.198719, - "y": -2321.566062 - } - } - }, - { - "id": "418a1bf1-75d8-54e5-bf20-6f5c4eb9cd14", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 268.198719, - "y": -2321.566062 - }, - "endPoint": { - "x": 267.198719, - "y": -2321.152622 - } - } - }, - { - "id": "61bebcc9-2ecf-5307-9f4e-ebf72c06b3ca", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 267.198719, - "y": -2321.152622 - }, - "endPoint": { - "x": 266.198719, - "y": -2320.758002 - } - } - }, - { - "id": "d4cdd843-256b-5a3e-8d5f-bacec978306b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 266.198719, - "y": -2320.758002 - }, - "endPoint": { - "x": 265.198719, - "y": -2320.382202 - } - } - }, - { - "id": "e2977520-1f3b-5931-8b8f-905848345309", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 265.198719, - "y": -2320.382202 - }, - "endPoint": { - "x": 264.198719, - "y": -2320.025222 - } - } - }, - { - "id": "5492e039-8172-5392-a6aa-51f025708fe7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 264.198719, - "y": -2320.025222 - }, - "endPoint": { - "x": 263.198719, - "y": -2319.687062 - } - } - }, - { - "id": "43f34642-2e80-5e85-924e-8a6f8c25c7b7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 263.198719, - "y": -2319.687062 - }, - "endPoint": { - "x": 262.198719, - "y": -2319.367722 - } - } - }, - { - "id": "19ffaa24-4793-5d95-b3ae-f28f62f44299", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 262.198719, - "y": -2319.367722 - }, - "endPoint": { - "x": 261.198719, - "y": -2319.067202 - } - } - }, - { - "id": "b514800d-85f3-513e-a120-256d9d894271", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 261.198719, - "y": -2319.067202 - }, - "endPoint": { - "x": 260.198719, - "y": -2318.785502 - } - } - }, - { - "id": "0ef82bf9-42c1-5245-9adc-52cfcc40ada3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 260.198719, - "y": -2318.785502 - }, - "endPoint": { - "x": 259.198719, - "y": -2318.522622 - } - } - }, - { - "id": "f93099f6-b603-5d3b-9bbc-84bb4d054dad", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 259.198719, - "y": -2318.522622 - }, - "endPoint": { - "x": 258.198719, - "y": -2318.278562 - } - } - }, - { - "id": "30628d8f-4ca8-5891-a85e-f77721c49e7a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 258.198719, - "y": -2318.278562 - }, - "endPoint": { - "x": 257.198719, - "y": -2318.053312 - } - } - }, - { - "id": "4888575c-1452-5419-a3d8-c65f26a21f7f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 257.198719, - "y": -2318.053312 - }, - "endPoint": { - "x": 256.198719, - "y": -2317.846892 - } - } - }, - { - "id": "b5f43073-d6e1-51ed-9c05-5e0f5499d126", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 256.198719, - "y": -2317.846892 - }, - "endPoint": { - "x": 255.198719, - "y": -2317.659292 - } - } - }, - { - "id": "4f070006-c470-56ce-9e96-afd72ab18389", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 255.198719, - "y": -2317.659292 - }, - "endPoint": { - "x": 254.198719, - "y": -2317.490502 - } - } - }, - { - "id": "f4346684-381b-50dd-887c-4fc69ac9fda9", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 254.198719, - "y": -2317.490502 - }, - "endPoint": { - "x": 253.198719, - "y": -2317.340542 - } - } - }, - { - "id": "c5f8af2c-2d9e-5792-b1af-2370101b51d5", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 253.198719, - "y": -2317.340542 - }, - "endPoint": { - "x": 252.198719, - "y": -2317.209392 - } - } - }, - { - "id": "bb608ec6-7b1d-5591-aef4-630cd67221f2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 252.198719, - "y": -2317.209392 - }, - "endPoint": { - "x": 251.198719, - "y": -2317.097062 - } - } - }, - { - "id": "3e5df851-886f-5c29-aa5f-2b480b2b0cc7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 251.198719, - "y": -2317.097062 - }, - "endPoint": { - "x": 250.198719, - "y": -2317.003562 - } - } - }, - { - "id": "ce7507d5-97d8-5537-9d4b-373ad2e0149b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 250.198719, - "y": -2317.003562 - }, - "endPoint": { - "x": 249.198719, - "y": -2316.928872 - } - } - }, - { - "id": "bd593db9-bdcd-5dd8-b9d0-ef80cf835397", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.198719, - "y": -2316.928872 - }, - "endPoint": { - "x": 248.198719, - "y": -2316.873002 - } - } - }, - { - "id": "7ed3fb4c-b3ec-5d07-9959-d9e5abdbc8fc", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 248.198719, - "y": -2316.873002 - }, - "endPoint": { - "x": 247.198719, - "y": -2316.835952 - } - } - }, - { - "id": "4a4b5201-0974-5e6c-9cbe-fe12fdfe490a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 247.198719, - "y": -2316.835952 - }, - "endPoint": { - "x": 246.198719, - "y": -2316.817722 - } - } - }, - { - "id": "0632f8f6-4d42-514c-94f8-7208b965e7da", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 246.198719, - "y": -2316.817722 - }, - "endPoint": { - "x": 245.198719, - "y": -2316.818312 - } - } - }, - { - "id": "139dee23-f9b7-58fb-a525-4f461d0b7ffc", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 245.198719, - "y": -2316.818312 - }, - "endPoint": { - "x": 244.198719, - "y": -2316.837722 - } - } - }, - { - "id": "078fd4a0-5c2c-591c-8be7-e7d6aa69e9da", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 244.198719, - "y": -2316.837722 - }, - "endPoint": { - "x": 243.198719, - "y": -2316.875952 - } - } - }, - { - "id": "367ec573-9e5c-5701-9c4f-d7fe6c7bb3a8", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 243.198719, - "y": -2316.875952 - }, - "endPoint": { - "x": 242.198719, - "y": -2316.933002 - } - } - }, - { - "id": "8af60c7f-dfab-5a30-89e2-192e4c118b03", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 242.198719, - "y": -2316.933002 - }, - "endPoint": { - "x": 241.198719, - "y": -2317.008872 - } - } - }, - { - "id": "d73a7e54-b757-5f7c-8e41-8825d9988a4e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 241.198719, - "y": -2317.008872 - }, - "endPoint": { - "x": 240.198719, - "y": -2317.103562 - } - } - }, - { - "id": "65d8e9ae-37fe-5752-ae60-f58cc841f438", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 240.198719, - "y": -2317.103562 - }, - "endPoint": { - "x": 239.198719, - "y": -2317.217062 - } - } - }, - { - "id": "f0e6901c-f2c9-565d-a2c4-d078e4717604", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 239.198719, - "y": -2317.217062 - }, - "endPoint": { - "x": 238.198719, - "y": -2317.349392 - } - } - }, - { - "id": "0c29e2b1-c8f8-5802-abf7-b56ad55f2250", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 238.198719, - "y": -2317.349392 - }, - "endPoint": { - "x": 237.198719, - "y": -2317.500542 - } - } - }, - { - "id": "bcdec28a-5ea5-504e-875c-d1193ddfe8bb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 237.198719, - "y": -2317.500542 - }, - "endPoint": { - "x": 236.198719, - "y": -2317.670502 - } - } - }, - { - "id": "5bcd7364-aef6-5b96-b8c0-67b44c8d5535", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 236.198719, - "y": -2317.670502 - }, - "endPoint": { - "x": 235.198719, - "y": -2317.859292 - } - } - }, - { - "id": "e1cf86ad-84de-511d-881e-9904a302d6f2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 235.198719, - "y": -2317.859292 - }, - "endPoint": { - "x": 234.198719, - "y": -2318.066892 - } - } - }, - { - "id": "67d0d001-7b8e-59db-a2ea-c5e2b8ad53c7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 234.198719, - "y": -2318.066892 - }, - "endPoint": { - "x": 233.198719, - "y": -2318.293312 - } - } - }, - { - "id": "f15da066-5aa6-535f-9ecd-41030a76325f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 233.198719, - "y": -2318.293312 - }, - "endPoint": { - "x": 232.198719, - "y": -2318.538562 - } - } - }, - { - "id": "f2d5a985-f465-5c6b-9685-9b9bc4716e56", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 232.198719, - "y": -2318.538562 - }, - "endPoint": { - "x": 231.198719, - "y": -2318.802622 - } - } - }, - { - "id": "c8866dea-b51c-5666-bc7a-3c1854ee990c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 231.198719, - "y": -2318.802622 - }, - "endPoint": { - "x": 230.198719, - "y": -2319.085502 - } - } - }, - { - "id": "4f12d954-9867-553e-9003-a852c7f59055", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 230.198719, - "y": -2319.085502 - }, - "endPoint": { - "x": 229.198719, - "y": -2319.387202 - } - } - }, - { - "id": "52469978-184b-5893-a3a3-8639b2178a90", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.198719, - "y": -2319.387202 - }, - "endPoint": { - "x": 224.198719, - "y": -2320.903622 - } - } - }, - { - "id": "6de24484-eb85-51fa-a001-ed1ecaa05ee7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 224.198719, - "y": -2320.903622 - }, - "endPoint": { - "x": 223.198719, - "y": -2321.209732 - } - } - }, - { - "id": "e2a66d35-6a7f-57dd-aaa7-5452e4e1f297", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 223.198719, - "y": -2321.209732 - }, - "endPoint": { - "x": 222.198719, - "y": -2321.501932 - } - } - }, - { - "id": "7413996f-3a50-55d1-bbfb-0af3a1e67459", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 222.198719, - "y": -2321.501932 - }, - "endPoint": { - "x": 221.198719, - "y": -2321.780212 - } - } - }, - { - "id": "aa910a3f-a557-5cdd-9ee1-0c45ea51a296", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.198719, - "y": -2321.780212 - }, - "endPoint": { - "x": 220.198719, - "y": -2322.044582 - } - } - }, - { - "id": "f6d5afee-e9c2-5787-906d-185ac1bd78d1", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 220.198719, - "y": -2322.044582 - }, - "endPoint": { - "x": 219.198719, - "y": -2322.295042 - } - } - }, - { - "id": "31ea4d63-9850-5ad7-9ff6-350e55bca096", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 219.198719, - "y": -2322.295042 - }, - "endPoint": { - "x": 218.198719, - "y": -2322.531582 - } - } - }, - { - "id": "992206fc-93bd-52ca-936a-8231780e61f0", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 218.198719, - "y": -2322.531582 - }, - "endPoint": { - "x": 217.198719, - "y": -2322.754202 - } - } - }, - { - "id": "059f26ce-3f25-5588-9784-404d80bd79ef", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 217.198719, - "y": -2322.754202 - }, - "endPoint": { - "x": 216.198719, - "y": -2322.962912 - } - } - }, - { - "id": "5e365566-8867-5f1d-b64e-74a5983e477d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 216.198719, - "y": -2322.962912 - }, - "endPoint": { - "x": 215.198719, - "y": -2323.157712 - } - } - }, - { - "id": "0b8dca9c-8814-5d1c-bb1d-25f536e4fb01", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 215.198719, - "y": -2323.157712 - }, - "endPoint": { - "x": 214.198719, - "y": -2323.338602 - } - } - }, - { - "id": "57dd43ac-a5c0-545c-958c-c9c248f625c9", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 214.198719, - "y": -2323.338602 - }, - "endPoint": { - "x": 213.198719, - "y": -2323.505562 - } - } - }, - { - "id": "e38d9a47-95ff-55d8-9c38-13697fc39efd", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 213.198719, - "y": -2323.505562 - }, - "endPoint": { - "x": 212.198719, - "y": -2323.658622 - } - } - }, - { - "id": "7cd87fc3-09d5-5a1f-baec-b56d89f8f596", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 212.198719, - "y": -2323.658622 - }, - "endPoint": { - "x": 211.198719, - "y": -2323.797762 - } - } - }, - { - "id": "a382d540-323b-544c-aa10-8b8b6eb6339e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 211.198719, - "y": -2323.797762 - }, - "endPoint": { - "x": 210.198719, - "y": -2323.922992 - } - } - }, - { - "id": "33e79881-6c2f-53ff-b074-26acfc864f65", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 210.198719, - "y": -2323.922992 - }, - "endPoint": { - "x": 209.198719, - "y": -2324.034302 - } - } - }, - { - "id": "fc331e6f-46c5-5239-b73d-e34f4f0ef459", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.198719, - "y": -2324.034302 - }, - "endPoint": { - "x": 208.198719, - "y": -2324.131702 - } - } - }, - { - "id": "dc7eaefa-c4f1-5db7-8c5d-e6961ebf49b7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 208.198719, - "y": -2324.131702 - }, - "endPoint": { - "x": 207.198719, - "y": -2324.215182 - } - } - }, - { - "id": "722f3cd0-6788-5fee-b631-c9c09a243ccb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 207.198719, - "y": -2324.215182 - }, - "endPoint": { - "x": 206.198719, - "y": -2324.284752 - } - } - }, - { - "id": "585617a7-d623-5922-adf7-419d4a9ff066", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 206.198719, - "y": -2324.284752 - }, - "endPoint": { - "x": 205.198719, - "y": -2324.340412 - } - } - }, - { - "id": "2dbb000f-39ad-51cd-a065-f8ad874a804c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 205.198719, - "y": -2324.340412 - }, - "endPoint": { - "x": 204.198719, - "y": -2324.382152 - } - } - }, - { - "id": "71f7f133-dfe9-57d8-905c-79421499b99a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.198719, - "y": -2324.382152 - }, - "endPoint": { - "x": 203.198719, - "y": -2324.408022 - } - } - }, - { - "id": "e3fc5614-4b82-573a-aee2-01ec3f9ce82c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 203.198719, - "y": -2324.408022 - }, - "endPoint": { - "x": 202.198719, - "y": -2324.419982 - } - } - }, - { - "id": "0164ffb3-bf0e-5f55-9251-bc0d00e7bca2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 202.198719, - "y": -2324.419982 - }, - "endPoint": { - "x": 201.198719, - "y": -2324.418022 - } - } - }, - { - "id": "d8615898-736e-54e3-ae0e-51d8a7db7a18", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 201.198719, - "y": -2324.418022 - }, - "endPoint": { - "x": 200.198719, - "y": -2324.402152 - } - } - }, - { - "id": "17c3e918-6ff0-5e6b-b76b-4638d6e4249e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 200.198719, - "y": -2324.402152 - }, - "endPoint": { - "x": 199.198719, - "y": -2324.372372 - } - } - }, - { - "id": "5e7e685f-3e74-5e55-a3ca-75bd536df844", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 199.198719, - "y": -2324.372372 - }, - "endPoint": { - "x": 198.198719, - "y": -2324.328672 - } - } - }, - { - "id": "ab2edc52-f8d1-54f3-9940-f43f71869a21", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 198.198719, - "y": -2324.328672 - }, - "endPoint": { - "x": 197.198719, - "y": -2324.271052 - } - } - }, - { - "id": "f0a8ee0a-1dbe-5ed2-bb7f-b3953b699f48", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 197.198719, - "y": -2324.271052 - }, - "endPoint": { - "x": 196.198719, - "y": -2324.199532 - } - } - }, - { - "id": "99d53ea7-28d7-54ac-a745-e90b94b1c632", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 196.198719, - "y": -2324.199532 - }, - "endPoint": { - "x": 195.198719, - "y": -2324.114082 - } - } - }, - { - "id": "264d9915-d1ba-5b25-8267-1a5cb809b76f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 195.198719, - "y": -2324.114082 - }, - "endPoint": { - "x": 194.198719, - "y": -2324.014732 - } - } - }, - { - "id": "59d1b535-0558-5a6f-92b4-700a199942eb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 194.198719, - "y": -2324.014732 - }, - "endPoint": { - "x": 193.198719, - "y": -2323.901462 - } - } - }, - { - "id": "05204e2f-43ab-5e1b-a562-07e3587b6b4e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 193.198719, - "y": -2323.901462 - }, - "endPoint": { - "x": 192.198719, - "y": -2323.774272 - } - } - }, - { - "id": "c99db834-dbd8-52a5-ba97-a930306d5f8e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 192.198719, - "y": -2323.774272 - }, - "endPoint": { - "x": 191.198719, - "y": -2323.633172 - } - } - }, - { - "id": "cc967006-0556-53cd-b159-fa51d415363c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 191.198719, - "y": -2323.633172 - }, - "endPoint": { - "x": 190.198719, - "y": -2323.478162 - } - } - }, - { - "id": "8417e5a3-09a5-55ec-a0c9-b57de1f92d42", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 190.198719, - "y": -2323.478162 - }, - "endPoint": { - "x": 189.198719, - "y": -2323.309242 - } - } - }, - { - "id": "90ee0124-d2ed-577b-aaa4-154c87d89b96", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.198719, - "y": -2323.309242 - }, - "endPoint": { - "x": 188.198719, - "y": -2323.126392 - } - } - }, - { - "id": "c407c75a-4c0e-5b93-9fac-8b711f3b127d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 188.198719, - "y": -2323.126392 - }, - "endPoint": { - "x": 187.198719, - "y": -2322.929642 - } - } - }, - { - "id": "f0d47415-f7fb-55dd-9bcc-7b3029ee4ca2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 187.198719, - "y": -2322.929642 - }, - "endPoint": { - "x": 186.198719, - "y": -2322.718972 - } - } - }, - { - "id": "2c7088a6-350a-52dc-94e8-ccdd46195aee", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 186.198719, - "y": -2322.718972 - }, - "endPoint": { - "x": 185.198719, - "y": -2322.494392 - } - } - }, - { - "id": "b4a324a5-0686-5a6d-b288-bcc99508d4e6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 185.198719, - "y": -2322.494392 - }, - "endPoint": { - "x": 184.198719, - "y": -2322.255892 - } - } - }, - { - "id": "c37f3905-2791-507d-892f-04465461c322", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 184.198719, - "y": -2322.255892 - }, - "endPoint": { - "x": 169.198719, - "y": -2318.574072 - } - } - }, - { - "id": "6273a068-c494-5bd7-b672-db6034ad1cb3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.198719, - "y": -2318.574072 - }, - "endPoint": { - "x": 149.198719, - "y": -2313.664982 - } - } - }, - { - "id": "f6438678-cce5-5a19-8f27-04be492f51c9", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.198719, - "y": -2313.664982 - }, - "endPoint": { - "x": 129.198719, - "y": -2308.898312 - } - } - }, - { - "id": "042f8fbf-ef21-53e2-badc-7bcc1e8525f3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.198719, - "y": -2308.898312 - }, - "endPoint": { - "x": 109.198719, - "y": -2304.131652 - } - } - }, - { - "id": "8b945d3c-1c62-57cd-ac52-bd49a555b585", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.198719, - "y": -2304.131652 - }, - "endPoint": { - "x": 107.198719, - "y": -2303.654982 - } - } - }, - { - "id": "6b1412c9-d9b7-5420-84b7-f2331183d09f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.198719, - "y": -2303.654982 - }, - "endPoint": { - "x": 89.198719, - "y": -2299.364982 - } - } - } - ] - }, - { - "id": "bc8e1282-c1d0-54a0-897a-8fb4f08aed82", - "type": "PolyLine", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "bafc4416-f224-534c-b29e-541334c2078a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.198811, - "y": -2369.664982 - }, - "endPoint": { - "x": 1005.198811, - "y": -2365.464982 - } - } - }, - { - "id": "0ae29655-3c96-5382-94c3-27750430bb2d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198811, - "y": -2365.464982 - }, - "endPoint": { - "x": 1025.198811, - "y": -2361.264982 - } - } - }, - { - "id": "7da45953-f115-502a-9ddf-9039fdf8b334", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198811, - "y": -2361.264982 - }, - "endPoint": { - "x": 1045.198811, - "y": -2357.064982 - } - } - }, - { - "id": "e4019832-b670-59ef-8469-21869cc8308c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198811, - "y": -2357.064982 - }, - "endPoint": { - "x": 1065.198811, - "y": -2352.931652 - } - } - }, - { - "id": "ba1e5830-3c08-5d80-a49e-59f14d45f085", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198811, - "y": -2352.931652 - }, - "endPoint": { - "x": 1071.198811, - "y": -2351.691652 - } - } - }, - { - "id": "86f3db55-ae0f-5ac2-95cf-ff313ea34f55", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198811, - "y": -2351.691652 - }, - "endPoint": { - "x": 1085.198811, - "y": -2348.798312 - } - } - }, - { - "id": "7e7a344a-d828-5f5d-8a0e-cc92716265e8", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198811, - "y": -2348.798312 - }, - "endPoint": { - "x": 1097.198811, - "y": -2346.318312 - } - } - }, - { - "id": "010850cc-a9fd-5d4d-8385-31f2bc812315", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198811, - "y": -2346.318312 - }, - "endPoint": { - "x": 1105.198811, - "y": -2344.664982 - } - } - }, - { - "id": "57b24567-f0ee-5dcf-96c9-0e548600b567", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198811, - "y": -2344.664982 - }, - "endPoint": { - "x": 1115.198811, - "y": -2342.656652 - } - } - }, - { - "id": "e87e7be4-905a-512b-9b33-bfca1e7aa972", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198811, - "y": -2342.656652 - }, - "endPoint": { - "x": 1125.198811, - "y": -2340.648312 - } - } - }, - { - "id": "663ca993-1147-529c-b673-ecce9df5bb1b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198811, - "y": -2340.648312 - }, - "endPoint": { - "x": 1145.198811, - "y": -2336.631652 - } - } - }, - { - "id": "8f57a46f-825a-568f-947e-88bd97e6f732", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198811, - "y": -2336.631652 - }, - "endPoint": { - "x": 1146.198811, - "y": -2336.438252 - } - } - }, - { - "id": "28cd7079-5884-5f56-8600-0b55bf7ed933", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1146.198811, - "y": -2336.438252 - }, - "endPoint": { - "x": 1147.198811, - "y": -2336.259742 - } - } - }, - { - "id": "ca0cefc7-a225-50eb-99b7-9bbd1eea69e0", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1147.198811, - "y": -2336.259742 - }, - "endPoint": { - "x": 1148.198811, - "y": -2336.096112 - } - } - }, - { - "id": "4b26039d-8cb8-5a40-be07-a6ff576028aa", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1148.198811, - "y": -2336.096112 - }, - "endPoint": { - "x": 1149.198811, - "y": -2335.947362 - } - } - }, - { - "id": "722f1727-95d7-5159-bf0d-dcb8ec40e135", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1149.198811, - "y": -2335.947362 - }, - "endPoint": { - "x": 1150.198811, - "y": -2335.813482 - } - } - }, - { - "id": "91939c42-271c-54c3-8ead-f03bec384ce2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1150.198811, - "y": -2335.813482 - }, - "endPoint": { - "x": 1151.198811, - "y": -2335.694492 - } - } - }, - { - "id": "50059b6a-71a3-57d9-8a61-0e7b2b33a21e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1151.198811, - "y": -2335.694492 - }, - "endPoint": { - "x": 1152.198811, - "y": -2335.590382 - } - } - }, - { - "id": "f91dac9c-c2d1-51b9-b3c3-0abbaab57d77", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1152.198811, - "y": -2335.590382 - }, - "endPoint": { - "x": 1153.198811, - "y": -2335.501152 - } - } - }, - { - "id": "f2e9aca8-3a2f-5d5b-88e5-807901992ae3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1153.198811, - "y": -2335.501152 - }, - "endPoint": { - "x": 1154.198811, - "y": -2335.426802 - } - } - }, - { - "id": "d00dd8fb-6429-5cb6-b4be-9d4a5c735800", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1154.198811, - "y": -2335.426802 - }, - "endPoint": { - "x": 1155.198811, - "y": -2335.367322 - } - } - }, - { - "id": "d4786f34-4235-552f-96a1-ce8945d7ef8b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1155.198811, - "y": -2335.367322 - }, - "endPoint": { - "x": 1156.198811, - "y": -2335.322732 - } - } - }, - { - "id": "75d31982-40e6-5532-ab36-5590a9087535", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1156.198811, - "y": -2335.322732 - }, - "endPoint": { - "x": 1157.198811, - "y": -2335.293022 - } - } - }, - { - "id": "403f5245-ba22-54d6-8e69-295ac5dcbed7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1157.198811, - "y": -2335.293022 - }, - "endPoint": { - "x": 1158.198811, - "y": -2335.278192 - } - } - }, - { - "id": "954e23df-318c-5120-a6a7-d8874ab8fc9a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1158.198811, - "y": -2335.278192 - }, - "endPoint": { - "x": 1159.198811, - "y": -2335.278242 - } - } - }, - { - "id": "98afafa5-74b4-5fa2-8170-c1d6e701a059", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1159.198811, - "y": -2335.278242 - }, - "endPoint": { - "x": 1160.198811, - "y": -2335.293172 - } - } - }, - { - "id": "4fe32fab-55da-51d7-8589-6198ffd23997", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1160.198811, - "y": -2335.293172 - }, - "endPoint": { - "x": 1161.198811, - "y": -2335.322982 - } - } - }, - { - "id": "3eb563ea-3af9-5bd8-bb32-13bda7533fd7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1161.198811, - "y": -2335.322982 - }, - "endPoint": { - "x": 1162.198811, - "y": -2335.367672 - } - } - }, - { - "id": "1b8ca6e0-cf53-5264-8a39-4b46c0242c50", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1162.198811, - "y": -2335.367672 - }, - "endPoint": { - "x": 1163.198811, - "y": -2335.427242 - } - } - }, - { - "id": "b5f3a3fb-0d3e-52e8-87a6-caf05a243a10", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1163.198811, - "y": -2335.427242 - }, - "endPoint": { - "x": 1164.198811, - "y": -2335.501692 - } - } - }, - { - "id": "1bb6090d-3506-54ab-9f8c-2077d38b8eca", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1164.198811, - "y": -2335.501692 - }, - "endPoint": { - "x": 1165.198811, - "y": -2335.591022 - } - } - }, - { - "id": "0b7f4e0d-b3eb-59a9-a841-b51e7118e37f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198811, - "y": -2335.591022 - }, - "endPoint": { - "x": 1166.198811, - "y": -2335.695232 - } - } - }, - { - "id": "347033b0-44e0-585b-8cda-45e39838f3b5", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1166.198811, - "y": -2335.695232 - }, - "endPoint": { - "x": 1167.198811, - "y": -2335.814322 - } - } - }, - { - "id": "5c22cd20-19ef-51ea-9200-5607172cdc5a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1167.198811, - "y": -2335.814322 - }, - "endPoint": { - "x": 1168.198811, - "y": -2335.948302 - } - } - }, - { - "id": "5ed3f8d5-0304-5767-96e9-8908cd3abc1c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1168.198811, - "y": -2335.948302 - }, - "endPoint": { - "x": 1169.198811, - "y": -2336.097152 - } - } - }, - { - "id": "433001b4-3003-5b3a-9ce6-3580ed0ab1cd", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1169.198811, - "y": -2336.097152 - }, - "endPoint": { - "x": 1170.198811, - "y": -2336.260882 - } - } - }, - { - "id": "b07ebb9d-193a-5ad6-ae3d-a8a21fda6f37", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1170.198811, - "y": -2336.260882 - }, - "endPoint": { - "x": 1171.198811, - "y": -2336.439492 - } - } - }, - { - "id": "6432cb43-91d8-561b-96f6-ad34b294ea17", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1171.198811, - "y": -2336.439492 - }, - "endPoint": { - "x": 1172.198811, - "y": -2336.632982 - } - } - }, - { - "id": "6649762d-bb6d-5489-80d6-a68b0ed03618", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1172.198811, - "y": -2336.632982 - }, - "endPoint": { - "x": 1173.198811, - "y": -2336.841352 - } - } - }, - { - "id": "0fe5a141-10b9-5398-ab36-5828cc977858", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1173.198811, - "y": -2336.841352 - }, - "endPoint": { - "x": 1174.198811, - "y": -2337.064612 - } - } - }, - { - "id": "a35b8bb2-e908-553a-847a-4237e9e8c419", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1174.198811, - "y": -2337.064612 - }, - "endPoint": { - "x": 1175.198811, - "y": -2337.302742 - } - } - }, - { - "id": "1bb603c8-1f0d-5938-9115-0a43c77c01d4", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1175.198811, - "y": -2337.302742 - }, - "endPoint": { - "x": 1176.198811, - "y": -2337.555752 - } - } - }, - { - "id": "2595c8c8-9fc3-5ec9-8825-842ebbd034bd", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1176.198811, - "y": -2337.555752 - }, - "endPoint": { - "x": 1177.198811, - "y": -2337.823652 - } - } - }, - { - "id": "81f4a772-c0cc-53a9-a134-8dfb6ccead32", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1177.198811, - "y": -2337.823652 - }, - "endPoint": { - "x": 1178.198811, - "y": -2338.106422 - } - } - }, - { - "id": "dcbf9468-8ab1-5b25-bff9-3518ab447031", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1178.198811, - "y": -2338.106422 - }, - "endPoint": { - "x": 1179.198811, - "y": -2338.404072 - } - } - }, - { - "id": "e8b101ee-3029-5eb4-999f-b667bc6973fb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1179.198811, - "y": -2338.404072 - }, - "endPoint": { - "x": 1180.198811, - "y": -2338.716612 - } - } - }, - { - "id": "4bce981e-a992-5fc2-9dc9-de3ae17e1419", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1180.198811, - "y": -2338.716612 - }, - "endPoint": { - "x": 1181.198811, - "y": -2339.044022 - } - } - }, - { - "id": "2889140e-0c63-56c5-9193-df6a3c6cda0c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1181.198811, - "y": -2339.044022 - }, - "endPoint": { - "x": 1182.198811, - "y": -2339.386322 - } - } - }, - { - "id": "cad80a60-3419-5d85-b22a-f721be41d8c0", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1182.198811, - "y": -2339.386322 - }, - "endPoint": { - "x": 1183.198811, - "y": -2339.743492 - } - } - }, - { - "id": "255c415e-ca6b-59a0-85f9-fc21e711d0d1", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1183.198811, - "y": -2339.743492 - }, - "endPoint": { - "x": 1184.198811, - "y": -2340.115552 - } - } - }, - { - "id": "3b3bf9c5-106a-5ca8-a2fc-940c5e62a6e4", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1184.198811, - "y": -2340.115552 - }, - "endPoint": { - "x": 1185.198811, - "y": -2340.502482 - } - } - }, - { - "id": "736b776d-06e1-5142-a57f-2d4c80ee9732", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198811, - "y": -2340.502482 - }, - "endPoint": { - "x": 1205.198811, - "y": -2348.389982 - } - } - }, - { - "id": "c3292d2e-54bd-5ebe-a443-276c8ca4bf07", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198811, - "y": -2348.389982 - }, - "endPoint": { - "x": 1217.198811, - "y": -2353.122482 - } - } - }, - { - "id": "8a27eb5b-3ac2-59f1-bdfe-153536830d4d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198811, - "y": -2353.122482 - }, - "endPoint": { - "x": 1225.198811, - "y": -2356.277482 - } - } - }, - { - "id": "decb40d7-8436-5b98-9934-bccad2c4dcb4", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198811, - "y": -2356.277482 - }, - "endPoint": { - "x": 1235.198811, - "y": -2360.221232 - } - } - }, - { - "id": "40c7f37e-f9b1-5bc7-a824-fb44426e3e38", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198811, - "y": -2360.221232 - }, - "endPoint": { - "x": 1245.198811, - "y": -2364.164982 - } - } - }, - { - "id": "30e415e3-9433-56c8-a760-33291b0d0784", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198811, - "y": -2364.164982 - }, - "endPoint": { - "x": 1265.198811, - "y": -2371.077482 - } - } - }, - { - "id": "93d4c9b5-007c-5550-a21e-d73e34adb648", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198811, - "y": -2371.077482 - }, - "endPoint": { - "x": 1285.198811, - "y": -2377.989982 - } - } - }, - { - "id": "b47a849e-d5d6-5a51-b8de-5926f2e49737", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198811, - "y": -2377.989982 - }, - "endPoint": { - "x": 1295.198811, - "y": -2381.446232 - } - } - }, - { - "id": "4f818883-43ad-5ba3-945a-576e56eef5da", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198811, - "y": -2381.446232 - }, - "endPoint": { - "x": 1305.198811, - "y": -2384.902482 - } - } - }, - { - "id": "d68f0d1d-6055-5054-b587-f182aaf6af3e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198811, - "y": -2384.902482 - }, - "endPoint": { - "x": 1325.198811, - "y": -2391.814982 - } - } - }, - { - "id": "16ec9e8c-5341-50d5-a1c6-491a3562ba24", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198811, - "y": -2391.814982 - }, - "endPoint": { - "x": 1345.198811, - "y": -2394.898312 - } - } - }, - { - "id": "07c9bb56-c720-5d06-8c28-27a94e798d4a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198811, - "y": -2394.898312 - }, - "endPoint": { - "x": 1365.198811, - "y": -2397.981652 - } - } - }, - { - "id": "2e33bab9-2b00-526b-b790-ca08b242b578", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198811, - "y": -2397.981652 - }, - "endPoint": { - "x": 1377.198811, - "y": -2399.831652 - } - } - }, - { - "id": "45d917b7-a5c3-5b62-877e-358a647cc5df", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1377.198811, - "y": -2399.831652 - }, - "endPoint": { - "x": 1378.198811, - "y": -2399.979432 - } - } - }, - { - "id": "d8428e65-584a-53d5-a2db-2b96957d7133", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1378.198811, - "y": -2399.979432 - }, - "endPoint": { - "x": 1379.198811, - "y": -2400.114442 - } - } - }, - { - "id": "319fb08c-7be7-5ec6-99cf-0edc48386d42", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1379.198811, - "y": -2400.114442 - }, - "endPoint": { - "x": 1380.198811, - "y": -2400.236682 - } - } - }, - { - "id": "a96064ce-47cb-540c-93bc-97b0d3f8a2ee", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1380.198811, - "y": -2400.236682 - }, - "endPoint": { - "x": 1381.198811, - "y": -2400.346162 - } - } - }, - { - "id": "25783500-4d82-5442-b428-538bb306c435", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1381.198811, - "y": -2400.346162 - }, - "endPoint": { - "x": 1382.198811, - "y": -2400.442862 - } - } - }, - { - "id": "a50440c4-ab43-52dd-ab05-eb0cdab1a521", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1382.198811, - "y": -2400.442862 - }, - "endPoint": { - "x": 1383.198811, - "y": -2400.526792 - } - } - }, - { - "id": "74956f5f-2c3a-5e7a-b4af-7cb2e17c73d5", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1383.198811, - "y": -2400.526792 - }, - "endPoint": { - "x": 1384.198811, - "y": -2400.597962 - } - } - }, - { - "id": "fead08e2-8f67-5331-ae5d-8cfe353c602d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1384.198811, - "y": -2400.597962 - }, - "endPoint": { - "x": 1385.198811, - "y": -2400.656352 - } - } - }, - { - "id": "f345fa4f-d9ad-5a4a-9e35-92767fc626a3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198811, - "y": -2400.656352 - }, - "endPoint": { - "x": 1386.198811, - "y": -2400.701982 - } - } - }, - { - "id": "bc313845-445a-5e1b-95bd-5413081c79f6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1386.198811, - "y": -2400.701982 - }, - "endPoint": { - "x": 1387.198811, - "y": -2400.734832 - } - } - }, - { - "id": "0c9f75ca-8ad0-502a-947a-c1c262254ccd", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1387.198811, - "y": -2400.734832 - }, - "endPoint": { - "x": 1388.198811, - "y": -2400.754922 - } - } - }, - { - "id": "e14a47bf-6364-5b3e-ae3d-541bbe3e4d5e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1388.198811, - "y": -2400.754922 - }, - "endPoint": { - "x": 1389.198811, - "y": -2400.762232 - } - } - }, - { - "id": "79314823-5034-51fd-b8ec-5619cd66d449", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1389.198811, - "y": -2400.762232 - }, - "endPoint": { - "x": 1390.198811, - "y": -2400.756782 - } - } - }, - { - "id": "7d232831-8311-5c01-bb1f-0baaa4910a2e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1390.198811, - "y": -2400.756782 - }, - "endPoint": { - "x": 1391.198811, - "y": -2400.738562 - } - } - }, - { - "id": "50c9c8d0-5883-5803-9b58-69eabe89bd4c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1391.198811, - "y": -2400.738562 - }, - "endPoint": { - "x": 1392.198811, - "y": -2400.707572 - } - } - }, - { - "id": "16789de0-4b98-5276-ac54-8fe8ec60f6d2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1392.198811, - "y": -2400.707572 - }, - "endPoint": { - "x": 1393.198811, - "y": -2400.663802 - } - } - }, - { - "id": "1ec37e95-37f0-59ec-b5f9-233ddd3be026", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1393.198811, - "y": -2400.663802 - }, - "endPoint": { - "x": 1394.198811, - "y": -2400.607272 - } - } - }, - { - "id": "77cfba95-f127-5496-9142-a0da1b5dc1f5", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1394.198811, - "y": -2400.607272 - }, - "endPoint": { - "x": 1395.198811, - "y": -2400.537972 - } - } - }, - { - "id": "0259abaf-f152-5835-bf55-88cb432bd5c2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1395.198811, - "y": -2400.537972 - }, - "endPoint": { - "x": 1396.198811, - "y": -2400.455902 - } - } - }, - { - "id": "14fc0cb0-0d85-577c-80d4-d4c847ec9aff", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1396.198811, - "y": -2400.455902 - }, - "endPoint": { - "x": 1397.198811, - "y": -2400.361062 - } - } - }, - { - "id": "0c808183-6481-5321-a582-855dbea411d7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198811, - "y": -2400.361062 - }, - "endPoint": { - "x": 1398.198811, - "y": -2400.235062 - } - } - }, - { - "id": "4ea871a3-2f27-516b-82fb-c5b9473945cc", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1398.198811, - "y": -2400.235062 - }, - "endPoint": { - "x": 1399.198811, - "y": -2400.096292 - } - } - }, - { - "id": "01ede133-6d99-5243-99aa-11d8e2351118", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1399.198811, - "y": -2400.096292 - }, - "endPoint": { - "x": 1400.198811, - "y": -2399.944752 - } - } - }, - { - "id": "1acc2772-e820-5185-b304-10e4cbbef689", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1400.198811, - "y": -2399.944752 - }, - "endPoint": { - "x": 1401.198811, - "y": -2399.780452 - } - } - }, - { - "id": "04fe76c9-bc56-5fbb-983b-44f8ac7e4967", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1401.198811, - "y": -2399.780452 - }, - "endPoint": { - "x": 1402.198811, - "y": -2399.603372 - } - } - }, - { - "id": "630ede97-97e2-54bf-b48f-1b6a777e3d25", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1402.198811, - "y": -2399.603372 - }, - "endPoint": { - "x": 1403.198811, - "y": -2399.413522 - } - } - }, - { - "id": "ef4e4a38-91ca-593b-bd66-18ad9b562e8e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1403.198811, - "y": -2399.413522 - }, - "endPoint": { - "x": 1404.198811, - "y": -2399.210912 - } - } - }, - { - "id": "7cb102b4-594d-5caa-b1c0-f2ac26bd3f61", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1404.198811, - "y": -2399.210912 - }, - "endPoint": { - "x": 1405.198811, - "y": -2398.995522 - } - } - }, - { - "id": "25c7704d-1ae0-55d2-b0e7-eb27ca17ef2b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198811, - "y": -2398.995522 - }, - "endPoint": { - "x": 1406.198811, - "y": -2398.767372 - } - } - }, - { - "id": "cc060a47-6aab-5d69-9e00-ee3078201ed3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1406.198811, - "y": -2398.767372 - }, - "endPoint": { - "x": 1407.198811, - "y": -2398.526442 - } - } - }, - { - "id": "1a0bc575-74bc-513a-a424-20128b06939c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1407.198811, - "y": -2398.526442 - }, - "endPoint": { - "x": 1408.198811, - "y": -2398.272752 - } - } - }, - { - "id": "79b99722-0876-5705-b2b5-b71923a99ca6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1408.198811, - "y": -2398.272752 - }, - "endPoint": { - "x": 1409.198811, - "y": -2398.006282 - } - } - }, - { - "id": "932c4b6d-5831-56ca-a658-93bdcc320bec", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1409.198811, - "y": -2398.006282 - }, - "endPoint": { - "x": 1410.198811, - "y": -2397.727052 - } - } - }, - { - "id": "bce9cd27-8722-5a9f-84b4-5e65c7cbb818", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1410.198811, - "y": -2397.727052 - }, - "endPoint": { - "x": 1411.198811, - "y": -2397.435042 - } - } - }, - { - "id": "a5d50081-e4d3-5579-9858-e2915e43c7c9", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1411.198811, - "y": -2397.435042 - }, - "endPoint": { - "x": 1412.198811, - "y": -2397.130272 - } - } - }, - { - "id": "ef3b1259-8e3d-524e-8f3d-ced2f1a651d9", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1412.198811, - "y": -2397.130272 - }, - "endPoint": { - "x": 1413.198811, - "y": -2396.812732 - } - } - }, - { - "id": "b0285642-c864-5850-a33e-8d639b1bf272", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1413.198811, - "y": -2396.812732 - }, - "endPoint": { - "x": 1414.198811, - "y": -2396.482422 - } - } - }, - { - "id": "89942ba5-f819-510f-8fb1-1ac3a856ae7e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1414.198811, - "y": -2396.482422 - }, - "endPoint": { - "x": 1415.198811, - "y": -2396.139332 - } - } - }, - { - "id": "bfc65391-f8d3-51a9-a259-9c09c3391bd0", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1415.198811, - "y": -2396.139332 - }, - "endPoint": { - "x": 1416.198811, - "y": -2395.783482 - } - } - }, - { - "id": "2d5ef16d-0f7d-5937-9cff-163aa91473e2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1416.198811, - "y": -2395.783482 - }, - "endPoint": { - "x": 1417.198811, - "y": -2395.414862 - } - } - }, - { - "id": "2baa296e-07c2-5d28-a885-c60bb8adc821", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1417.198811, - "y": -2395.414862 - }, - "endPoint": { - "x": 1425.198811, - "y": -2392.929692 - } - } - }, - { - "id": "56f40de3-3c3e-5e54-86f1-d0d4d5f01198", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198811, - "y": -2392.929692 - }, - "endPoint": { - "x": 1445.198811, - "y": -2385.797332 - } - } - }, - { - "id": "36ea9e1d-7d91-540d-bd2b-9c54dd6e0ee2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198811, - "y": -2385.797332 - }, - "endPoint": { - "x": 1446.198811, - "y": -2385.449102 - } - } - }, - { - "id": "d19ccbeb-0009-582e-b430-d693f3b2edd7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1446.198811, - "y": -2385.449102 - }, - "endPoint": { - "x": 1447.198811, - "y": -2385.117632 - } - } - }, - { - "id": "5e8d25b4-c716-5dc5-b738-4bea7516e077", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1447.198811, - "y": -2385.117632 - }, - "endPoint": { - "x": 1448.198811, - "y": -2384.802922 - } - } - }, - { - "id": "03b0254c-43c2-56b6-a513-427f4c944101", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1448.198811, - "y": -2384.802922 - }, - "endPoint": { - "x": 1449.198811, - "y": -2384.504992 - } - } - }, - { - "id": "85d56f14-1675-53fc-aee8-598e2fdec82d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1449.198811, - "y": -2384.504992 - }, - "endPoint": { - "x": 1450.198811, - "y": -2384.223812 - } - } - }, - { - "id": "c8cbfed8-35d2-52f9-9e99-dfe49bb40128", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1450.198811, - "y": -2384.223812 - }, - "endPoint": { - "x": 1451.198811, - "y": -2383.959402 - } - } - }, - { - "id": "1559c6ff-ac56-5afb-95b9-5fbf70701e11", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1451.198811, - "y": -2383.959402 - }, - "endPoint": { - "x": 1452.198811, - "y": -2383.711762 - } - } - }, - { - "id": "f3791980-f5ad-542e-83a5-a6ff76955395", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1452.198811, - "y": -2383.711762 - }, - "endPoint": { - "x": 1453.198811, - "y": -2383.480892 - } - } - }, - { - "id": "07f1a33f-6d51-5071-9a21-b2d5ecedba6d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1453.198811, - "y": -2383.480892 - }, - "endPoint": { - "x": 1454.198811, - "y": -2383.266772 - } - } - }, - { - "id": "a7294bd4-386c-5991-81e0-4100376280c6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1454.198811, - "y": -2383.266772 - }, - "endPoint": { - "x": 1455.198811, - "y": -2383.069432 - } - } - }, - { - "id": "573be0ad-97c4-572a-8211-a9c00d97cc7e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1455.198811, - "y": -2383.069432 - }, - "endPoint": { - "x": 1456.198811, - "y": -2382.888852 - } - } - }, - { - "id": "b03aa44e-a36b-5661-8249-bcfafac8ee7c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1456.198811, - "y": -2382.888852 - }, - "endPoint": { - "x": 1457.198811, - "y": -2382.725032 - } - } - }, - { - "id": "278225c1-f9a6-54db-b54f-1bdabe25d01e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1457.198811, - "y": -2382.725032 - }, - "endPoint": { - "x": 1458.198811, - "y": -2382.577982 - } - } - }, - { - "id": "de63a355-4755-5ad6-a7b3-b5dcd4fd4b8f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1458.198811, - "y": -2382.577982 - }, - "endPoint": { - "x": 1459.198811, - "y": -2382.447702 - } - } - }, - { - "id": "be319a42-4a0b-58b5-81fd-5389d210e2c0", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1459.198811, - "y": -2382.447702 - }, - "endPoint": { - "x": 1460.198811, - "y": -2382.334182 - } - } - }, - { - "id": "21e2e9a2-b27a-5a8a-bee2-7b861ca25685", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1460.198811, - "y": -2382.334182 - }, - "endPoint": { - "x": 1461.198811, - "y": -2382.237432 - } - } - }, - { - "id": "2a4be32a-dad1-55de-afb0-a3628eb1c207", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1461.198811, - "y": -2382.237432 - }, - "endPoint": { - "x": 1462.198811, - "y": -2382.157442 - } - } - }, - { - "id": "1ac4f432-787d-5705-b352-00855f7fc520", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1462.198811, - "y": -2382.157442 - }, - "endPoint": { - "x": 1463.198811, - "y": -2382.094222 - } - } - }, - { - "id": "3d265399-d873-5fc4-b6b4-e7e23f5c4f96", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1463.198811, - "y": -2382.094222 - }, - "endPoint": { - "x": 1464.198811, - "y": -2382.047762 - } - } - }, - { - "id": "ef2b12a7-5579-5181-bddf-561ce535e1b9", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1464.198811, - "y": -2382.047762 - }, - "endPoint": { - "x": 1465.198811, - "y": -2382.018072 - } - } - }, - { - "id": "daa2a681-210c-5d77-822d-bac580749b54", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198811, - "y": -2382.018072 - }, - "endPoint": { - "x": 1466.198811, - "y": -2382.005142 - } - } - }, - { - "id": "9c6592f1-d5bf-51da-a00a-fd07476cc5b3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1466.198811, - "y": -2382.005142 - }, - "endPoint": { - "x": 1467.198811, - "y": -2382.008982 - } - } - }, - { - "id": "b1954b99-3fb3-508a-b2d7-95e23a88a867", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1467.198811, - "y": -2382.008982 - }, - "endPoint": { - "x": 1468.198811, - "y": -2382.029592 - } - } - }, - { - "id": "010e9924-4a60-58e6-a63c-aa93e3700eee", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1468.198811, - "y": -2382.029592 - }, - "endPoint": { - "x": 1469.198811, - "y": -2382.066962 - } - } - }, - { - "id": "ffce5884-238d-5419-b884-e582e8814a7b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1469.198811, - "y": -2382.066962 - }, - "endPoint": { - "x": 1470.198811, - "y": -2382.121092 - } - } - }, - { - "id": "a16d2492-7be2-57a7-a604-648638722886", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1470.198811, - "y": -2382.121092 - }, - "endPoint": { - "x": 1471.198811, - "y": -2382.191992 - } - } - }, - { - "id": "519fada5-cd8d-58d9-9490-58c923c07d9d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1471.198811, - "y": -2382.191992 - }, - "endPoint": { - "x": 1472.198811, - "y": -2382.279662 - } - } - }, - { - "id": "09d2d53f-a05d-5e61-88be-374c21ab9ea1", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1472.198811, - "y": -2382.279662 - }, - "endPoint": { - "x": 1473.198811, - "y": -2382.384092 - } - } - }, - { - "id": "006b9d98-f339-5b56-8c7b-511d549bd218", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1473.198811, - "y": -2382.384092 - }, - "endPoint": { - "x": 1474.198811, - "y": -2382.505292 - } - } - }, - { - "id": "5cf6b149-091f-5b63-82ed-41c05e40ec21", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1474.198811, - "y": -2382.505292 - }, - "endPoint": { - "x": 1475.198811, - "y": -2382.643252 - } - } - }, - { - "id": "ef95cc40-7371-5936-840d-3edbc0c1ca1d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1475.198811, - "y": -2382.643252 - }, - "endPoint": { - "x": 1476.198811, - "y": -2382.797982 - } - } - }, - { - "id": "b7db5463-759a-57f5-8368-3395362d9fa5", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1476.198811, - "y": -2382.797982 - }, - "endPoint": { - "x": 1477.198811, - "y": -2382.969472 - } - } - }, - { - "id": "048552eb-3310-5c4e-8a8a-801596478069", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1477.198811, - "y": -2382.969472 - }, - "endPoint": { - "x": 1478.198811, - "y": -2383.157732 - } - } - }, - { - "id": "2f78d5b6-3627-5759-805e-4c44bc0f5557", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1478.198811, - "y": -2383.157732 - }, - "endPoint": { - "x": 1479.198811, - "y": -2383.362762 - } - } - }, - { - "id": "8fc5ad0b-9e94-5fde-b974-b81b4100bc5a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1479.198811, - "y": -2383.362762 - }, - "endPoint": { - "x": 1480.198811, - "y": -2383.584552 - } - } - }, - { - "id": "ca0c9fd4-aa76-558d-aee3-890366e1aead", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1480.198811, - "y": -2383.584552 - }, - "endPoint": { - "x": 1481.198811, - "y": -2383.823102 - } - } - }, - { - "id": "d56c228a-7920-5926-b04b-89593d45515f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1481.198811, - "y": -2383.823102 - }, - "endPoint": { - "x": 1482.198811, - "y": -2384.078422 - } - } - }, - { - "id": "511e8c9d-03c9-5898-b541-154a04e88472", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1482.198811, - "y": -2384.078422 - }, - "endPoint": { - "x": 1483.198811, - "y": -2384.350512 - } - } - }, - { - "id": "8e15234e-940b-5464-b779-6694994f716c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1483.198811, - "y": -2384.350512 - }, - "endPoint": { - "x": 1484.198811, - "y": -2384.639362 - } - } - }, - { - "id": "9a7e8e38-4ed5-56e5-ae9f-684dafdaa151", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1484.198811, - "y": -2384.639362 - }, - "endPoint": { - "x": 1485.198811, - "y": -2384.944982 - } - } - }, - { - "id": "eb6ec457-7047-583c-88da-09738887b3c6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198811, - "y": -2384.944982 - }, - "endPoint": { - "x": 1505.198811, - "y": -2391.224982 - } - } - }, - { - "id": "cf2fdaed-f261-532b-b70d-b4986f3984f3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198811, - "y": -2391.224982 - }, - "endPoint": { - "x": 1515.198811, - "y": -2394.364982 - } - } - } - ] - }, - { - "id": "cc10cf5f-3206-5377-9b91-d8bd6c977ffe", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.120+18", - "basePoint": { - "x": 104.775477, - "y": -2165.748213 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 4.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b7d87df6-8721-5f8b-954e-aeb1fda2b868", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "1078f2d2-99bd-5d6e-9eda-0630330d22f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 107.198719, - "y": -2306.864982 - }, - "endPoint": { - "x": 107.198719, - "y": -2216.0106 - } - } - }, - { - "id": "79550cb4-e207-5e82-b904-d74a58e1fbf3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 107.198719, - "y": -2216.0106 - }, - "endPoint": { - "x": 107.198719, - "y": -2152.361989 - } - } - } - ] - }, - { - "id": "a26d2d42-2f8e-5612-a8fc-d13735398d78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 107.1987193032103, - "y": -2162.698825670936 - }, - "endPoint": { - "x": 154.0463900411837, - "y": -2162.698825670936 - } - } - }, - { - "id": "9847d7e6-abc2-5a2a-b836-0dae5fc305ef", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "Φ800m/m", - "basePoint": { - "x": 107.171157, - "y": -2124.280446 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "dbb559cb-0a86-5ae4-9486-210172090241", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "center": { - "x": 107.1987193032132, - "y": -2132.237599011843 - }, - "radius": 20.12439048760605 - } - }, - { - "id": "54bed7a8-3250-519f-a986-f8f11ed6dddc", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "관매설", - "basePoint": { - "x": 107.171157, - "y": -2117.526849 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0946196b-04fb-58df-bce0-fd010237d60d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "L=14.0m", - "basePoint": { - "x": 107.519387, - "y": -2129.94818 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "34c8ff07-0e49-5141-957c-93be635e648b", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "1개소", - "basePoint": { - "x": 107.768998, - "y": -2141.122393 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f0f06aeb-3684-5ee5-a634-630ff5309e9e", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "(유입)", - "basePoint": { - "x": 107.811496, - "y": -2147.587822 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e1fb263e-8b3e-53e7-80b1-64c929b2bac4", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "수로형토사개거", - "basePoint": { - "x": 107.870704, - "y": -2161.112807 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "148fe8db-faef-5d6f-8381-37e7726eb026", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 107.1987193032066, - "y": -2170.463159715513 - }, - "endPoint": { - "x": 170.9555114979089, - "y": -2170.463159715513 - } - } - }, - { - "id": "fdeaeeb7-2288-57c6-974c-f1cfacb9d36b", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌붙임(찰):A=9.0m2", - "basePoint": { - "x": 107.674696, - "y": -2168.877141 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "27f7ec32-35d4-555d-acdb-f35b0808c5e2", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.5m, L=10.0m-성토부", - "basePoint": { - "x": 107.870704, - "y": -2176.641475 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "639c6bf3-220c-5ab0-b79c-88a91b519c53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 107.1987193032028, - "y": -2178.227493760091 - }, - "endPoint": { - "x": 260.4795799607841, - "y": -2178.227493760091 - } - } - }, - { - "id": "0489175a-f905-5889-8b59-0a2e62dedd12", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌집수정ㄴ형", - "basePoint": { - "x": 107.768998, - "y": -2135.65719 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c981797a-5267-5896-b019-6b8aeebe2a7e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.125+15", - "basePoint": { - "x": 201.775477, - "y": -2233.611549 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 4.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a34e8afd-f00a-53ba-b1bf-1565d6fe0bec", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "698e557a-025f-5fab-9f9a-39c21d18f6f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 204.198719, - "y": -2336.714982 - }, - "endPoint": { - "x": 204.198719, - "y": -2283.873936 - } - } - }, - { - "id": "f2e2c2ec-de7d-51e0-ae6c-786475aa03c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 204.198719, - "y": -2283.873936 - }, - "endPoint": { - "x": 204.198719, - "y": -2220.225326 - } - } - } - ] - }, - { - "id": "3f31de35-9f81-5ea4-9de9-f7ae8b64dee0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 204.1987193032103, - "y": -2230.562161956429 - }, - "endPoint": { - "x": 251.0463900411837, - "y": -2230.562161956429 - } - } - }, - { - "id": "2c4caa90-3b6f-52a5-93e7-a54c86392e53", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "Φ800m/m", - "basePoint": { - "x": 204.171157, - "y": -2192.143783 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "51c1457d-0dac-5844-9e59-f58072ca6163", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "center": { - "x": 204.1987193032132, - "y": -2200.100935297335 - }, - "radius": 20.12439048760605 - } - }, - { - "id": "37412123-3c41-5332-b03e-7bd88120217f", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "관매설", - "basePoint": { - "x": 204.171157, - "y": -2185.390186 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "760c39aa-13ec-5cba-a021-a49ef50969b1", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "L=16.0m", - "basePoint": { - "x": 204.519387, - "y": -2197.811516 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1b651ecd-29ad-51c7-a28a-0dc8fcd8f825", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "1개소", - "basePoint": { - "x": 204.768998, - "y": -2208.98573 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ba28a99a-2c85-5381-ae38-a9b0567cd8e0", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "(유입)", - "basePoint": { - "x": 204.811496, - "y": -2215.451158 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "858c99c7-597d-5cac-8268-24f022321199", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "수로형토사개거", - "basePoint": { - "x": 204.870704, - "y": -2228.976143 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4d2fc0b6-a6a0-53ca-9f1c-9894be00fb64", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 204.1987193032066, - "y": -2238.326496001006 - }, - "endPoint": { - "x": 267.9555114979089, - "y": -2238.326496001006 - } - } - }, - { - "id": "c30bb0a4-21ae-5348-95cb-54885f4b0fe5", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌붙임(찰):A=9.0m2", - "basePoint": { - "x": 204.674696, - "y": -2236.740477 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2917384c-c5b8-5b34-9311-61bf8ae271d1", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.5m, L=6.0m-성토부", - "basePoint": { - "x": 204.870704, - "y": -2244.504811 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "71754907-9844-5a5f-bc6a-2afd255bbb50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 204.1987193032028, - "y": -2246.090830045584 - }, - "endPoint": { - "x": 357.4795799607841, - "y": -2246.090830045584 - } - } - }, - { - "id": "e5743dd2-ea7f-5ef9-b91a-3ff9a054e4ed", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌집수정ㄷ형", - "basePoint": { - "x": 204.768998, - "y": -2203.520527 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d58c1386-bea6-56f8-ba7e-75086a2534f8", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "33911ffd-0e2d-5d8c-81c7-034e90250d14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 221.698719, - "y": -2364.630197 - }, - "endPoint": { - "x": 221.698719, - "y": -2365.46353 - } - } - }, - { - "id": "d241613a-0af2-53c1-be1c-986ff40592e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 221.698719, - "y": -2365.46353 - }, - "endPoint": { - "x": 219.198719, - "y": -2365.046863 - } - } - }, - { - "id": "cd7531d7-5cb2-5e2e-aea6-9426e0185cf1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 219.198719, - "y": -2365.046863 - }, - "endPoint": { - "x": 221.698719, - "y": -2364.630197 - } - } - } - ] - }, - { - "id": "25567623-7439-5fe2-97d9-824aee3a3ad8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 219.1987193031828, - "y": -2367.466775523982 - }, - "endPoint": { - "x": 219.1987193031828, - "y": -2362.626951296599 - } - } - }, - { - "id": "501a7301-17c8-5f9d-a8d4-c61f5ba9ad35", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": null, - "children": [ - { - "id": "fb9029ac-8f54-56b2-8980-f0621f5eac2a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 219.198719, - "y": -2365.046863 - }, - "endPoint": { - "x": 225.198719, - "y": -2365.046863 - } - } - } - ] - }, - { - "id": "1f2ef87b-cf10-54ae-b705-5f51cf9394e3", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "70d674a2-4d37-5c3e-98af-238104cdebd8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 222.698719, - "y": -2364.630197 - }, - "endPoint": { - "x": 222.698719, - "y": -2365.46353 - } - } - }, - { - "id": "dd1ff27a-9629-5eaa-9c76-136a2bdef703", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 222.698719, - "y": -2365.46353 - }, - "endPoint": { - "x": 225.198719, - "y": -2365.046863 - } - } - }, - { - "id": "9fd1f967-724d-58d3-9509-8c79f06ae6bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 225.198719, - "y": -2365.046863 - }, - "endPoint": { - "x": 222.698719, - "y": -2364.630197 - } - } - } - ] - }, - { - "id": "59b33314-668c-5035-b1f2-04ec5c818081", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 225.1987193031828, - "y": -2367.466775523982 - }, - "endPoint": { - "x": 225.1987193031828, - "y": -2362.626951296599 - } - } - }, - { - "id": "effe48c1-07f1-511a-9509-1c0e3833d16b", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "No.126+10 ~ No.126+16", - "basePoint": { - "x": 221.614648, - "y": -2358.95034 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f78134f7-e449-5301-b3f5-056e1afe6c09", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.5m, L=6.0m-성토부", - "basePoint": { - "x": 161.642912, - "y": -2373.754663 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3640d477-06f5-558d-8d35-b4569c709655", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.135+14", - "basePoint": { - "x": 400.775477, - "y": -2230.547235 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 4.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6a9f2c1a-ad8e-5619-8cd7-b5dac1fbff8c", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "25592e59-8a50-5ed6-95fc-2275b274a7e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 403.198719, - "y": -2413.664982 - }, - "endPoint": { - "x": 403.198719, - "y": -2280.809622 - } - } - }, - { - "id": "691cd2ba-4aef-5f42-9317-08ad720f955f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 403.198719, - "y": -2280.809622 - }, - "endPoint": { - "x": 403.198719, - "y": -2217.161011 - } - } - } - ] - }, - { - "id": "4dc08269-092e-5a3b-98a3-7199d9aeaaae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 403.1987193032103, - "y": -2227.497847512122 - }, - "endPoint": { - "x": 451.4916499696888, - "y": -2227.497847512122 - } - } - }, - { - "id": "9fe6fbcf-7b21-59d2-9422-25273e563617", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "Φ800m/m", - "basePoint": { - "x": 403.791877, - "y": -2199.269701 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "505ea01e-f20a-578d-86ad-7c653a2f901f", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "center": { - "x": 403.8194387232174, - "y": -2199.927317076335 - }, - "radius": 17.23369426429872 - } - }, - { - "id": "23b1fa81-6ac6-5c44-9d52-c83790428b4a", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "관매설", - "basePoint": { - "x": 403.791877, - "y": -2192.516104 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a51b08a8-9dae-5083-b7aa-a98835dac130", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "L=16.0m", - "basePoint": { - "x": 404.140107, - "y": -2204.937434 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "31acac40-299a-525c-8c70-4c3b5933fa6a", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "수로형토사개거", - "basePoint": { - "x": 403.870704, - "y": -2225.911828 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a17ab2e7-fe9d-5efd-b4d9-dc8e2e9fcdff", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.136+13", - "basePoint": { - "x": 419.775477, - "y": -2287.904066 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 4.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "638c9865-8a77-508f-8526-779791c7d0dc", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "bc2aa6b7-ee40-50f0-bc30-6d98eb896cb1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 422.198719, - "y": -2411.414982 - }, - "endPoint": { - "x": 422.198719, - "y": -2338.166453 - } - } - }, - { - "id": "395c47d6-35c1-57e5-ad71-89365b7624eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 422.198719, - "y": -2338.166453 - }, - "endPoint": { - "x": 422.198719, - "y": -2274.517843 - } - } - } - ] - }, - { - "id": "bd8f8f88-b981-5fd9-bef9-29064f0337e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 422.1987193032103, - "y": -2284.854679028144 - }, - "endPoint": { - "x": 470.4916499696888, - "y": -2284.854679028144 - } - } - }, - { - "id": "5c37162f-5a10-501a-8a95-4344e0c3c2d0", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "Φ800m/m", - "basePoint": { - "x": 422.791877, - "y": -2256.626532 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3e36ef18-4ccc-5f94-8897-0f466cbcfe62", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "center": { - "x": 422.8194387232174, - "y": -2257.284148592358 - }, - "radius": 17.23369426429872 - } - }, - { - "id": "3390983f-2281-5934-a82c-8eef1439ab81", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "관매설", - "basePoint": { - "x": 422.791877, - "y": -2249.872935 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "414654b0-a894-57d5-892f-f483617d3e6a", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "L=12.0m", - "basePoint": { - "x": 423.140107, - "y": -2262.294266 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0ab4fc9e-ef14-50bf-bc25-247762ed3bb8", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "수로형토사개거", - "basePoint": { - "x": 422.870704, - "y": -2283.26866 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8b4eff30-b278-535c-8072-366dd252f32a", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "24765f7b-1677-5339-afb4-d6e8a7c11f39", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 401.698719, - "y": -2437.586218 - }, - "endPoint": { - "x": 401.698719, - "y": -2438.419551 - } - } - }, - { - "id": "ba787f87-afd4-5e90-8aa5-a0c2fcbf54a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 401.698719, - "y": -2438.419551 - }, - "endPoint": { - "x": 399.198719, - "y": -2438.002885 - } - } - }, - { - "id": "95227a2e-7565-547f-b729-43815e2594e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 399.198719, - "y": -2438.002885 - }, - "endPoint": { - "x": 401.698719, - "y": -2437.586218 - } - } - } - ] - }, - { - "id": "d4e7b784-a7af-5d9f-ac01-17da704be381", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 399.1987193031828, - "y": -2440.422796845734 - }, - "endPoint": { - "x": 399.1987193031828, - "y": -2435.58297261835 - } - } - }, - { - "id": "0271464c-492e-58a9-98ea-992738aa327d", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": null, - "children": [ - { - "id": "a27e0008-defa-5165-b9b3-9bd5851dfea0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 399.198719, - "y": -2438.002885 - }, - "endPoint": { - "x": 424.198719, - "y": -2438.002885 - } - } - } - ] - }, - { - "id": "e8606588-4145-5a6f-89d3-94e02a6dc3c1", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "ba3105b4-f990-58f3-8c65-d1b7b75a70a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 421.698719, - "y": -2437.586218 - }, - "endPoint": { - "x": 421.698719, - "y": -2438.419551 - } - } - }, - { - "id": "7f3d438d-5d7a-520a-a4c6-d2b8e7ea01fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 421.698719, - "y": -2438.419551 - }, - "endPoint": { - "x": 424.198719, - "y": -2438.002885 - } - } - }, - { - "id": "4dba07e8-3e4a-5213-9d5d-90b9fadd3415", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 424.198719, - "y": -2438.002885 - }, - "endPoint": { - "x": 421.698719, - "y": -2437.586218 - } - } - } - ] - }, - { - "id": "e7cfabf1-a0e3-57a9-a9e9-bd2499d6f380", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 424.1987193031828, - "y": -2440.422796845734 - }, - "endPoint": { - "x": 424.1987193031828, - "y": -2435.58297261835 - } - } - }, - { - "id": "5820cae3-5c82-56ff-97c3-79dab1656801", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "No.135+10 ~ No.136+15", - "basePoint": { - "x": 411.114648, - "y": -2429.589744 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b73c7205-3582-5b12-ac3a-349716e7684c", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(찰,기초무):H=1.5m, L=25.0m(성토부-좌안)", - "basePoint": { - "x": 330.704536, - "y": -2446.633019 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b433e389-50b3-571d-a903-a1ffbdc9256e", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.0m, L=25.0m(성토부-우안)", - "basePoint": { - "x": 330.704536, - "y": -2453.258916 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "290b0ee1-9479-50b2-b70f-63c21b78c77e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 466.1987193032056, - "y": -2311.518626961226 - }, - "endPoint": { - "x": 528.9072608480458, - "y": -2311.518626961226 - } - } - }, - { - "id": "49db46cc-8f8e-5938-8c57-225fc55c81dd", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "물넘이집수부:1개소", - "basePoint": { - "x": 467.133578, - "y": -2309.247077 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3aa74185-76b1-5065-81cf-414888629831", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.138+17", - "basePoint": { - "x": 463.775477, - "y": -2322.608766 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 4.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3e411a67-0b28-5d85-a2fe-f710d5f3e17b", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "af7d642a-498c-5120-8a3c-1596b87029d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 466.198719, - "y": -2422.814982 - }, - "endPoint": { - "x": 466.198719, - "y": -2311.518627 - } - } - } - ] - }, - { - "id": "24fd9549-f877-5059-9edd-d254f247818b", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "콘크리트포장(확폭)(T=0.2m, A=15.0m2)", - "basePoint": { - "x": 466.870704, - "y": -2340.989944 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4e3477e7-35fc-5ba8-a236-49b0f3d48cb6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 466.1987193032066, - "y": -2319.282961005804 - }, - "endPoint": { - "x": 534.3979320199167, - "y": -2319.282961005804 - } - } - }, - { - "id": "55c6e23f-3e16-5654-ad42-75b256f52fee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 466.1987193032043, - "y": -2319.282961005804 - }, - "endPoint": { - "x": 531.1162143035783, - "y": -2319.282961005804 - } - } - }, - { - "id": "d3d35519-0c83-5ddb-91c1-14d4711ea3a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 466.1987193032032, - "y": -2327.047295050381 - }, - "endPoint": { - "x": 638.3073410671484, - "y": -2327.047295050381 - } - } - }, - { - "id": "c3e4da73-faea-5101-9aa7-bd5021843acb", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌붙임(찰):A=25.0m2", - "basePoint": { - "x": 466.870704, - "y": -2317.696942 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "44b50876-32a8-5330-9026-e816f5c579b8", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.0m, L=10.0m(성토부-우안)", - "basePoint": { - "x": 466.870704, - "y": -2325.461276 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f9425735-c4c8-5214-9963-38629506b298", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 466.1987193031991, - "y": -2334.811629094959 - }, - "endPoint": { - "x": 602.2597665780211, - "y": -2334.811629094959 - } - } - }, - { - "id": "666bd40e-bb21-5c37-abcd-3b3afc8b66f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 466.198719303201, - "y": -2342.575963139536 - }, - "endPoint": { - "x": 593.1965166466814, - "y": -2342.575963139536 - } - } - }, - { - "id": "6944d131-55d5-5040-8afd-b4de582e0ff4", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "콘크리트포장(T=0.2m,B=3.30m,L=10.0m2)", - "basePoint": { - "x": 466.870704, - "y": -2333.22561 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "25985ffc-d26a-5e1f-b650-5b29dc55b035", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "f40daae5-5ef5-515f-be9f-9858f73c5278", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1067.698811, - "y": -2394.511901 - }, - "endPoint": { - "x": 1067.698811, - "y": -2395.345235 - } - } - }, - { - "id": "5d4b0cd5-c93c-5669-9ee0-908e1a2a516d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1067.698811, - "y": -2395.345235 - }, - "endPoint": { - "x": 1065.198811, - "y": -2394.928568 - } - } - }, - { - "id": "47a21ce4-a1e5-5b23-af3b-4a1f0689caca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1065.198811, - "y": -2394.928568 - }, - "endPoint": { - "x": 1067.698811, - "y": -2394.511901 - } - } - } - ] - }, - { - "id": "e7002f83-c057-5898-9459-1a88cb64a839", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2397.348480111818 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2392.508655884435 - } - } - }, - { - "id": "e5d17cd0-ab3d-5715-82ea-538fdfebfaef", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": null, - "children": [ - { - "id": "54ba98fc-277f-5df1-abdb-e4aee5012af0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1065.198811, - "y": -2394.928568 - }, - "endPoint": { - "x": 1075.198811, - "y": -2394.928568 - } - } - } - ] - }, - { - "id": "f42c2dec-7b01-54e9-80b8-c628c327a307", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "c48cbe3e-791d-5a4b-bcb2-5d53930cd180", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1072.698811, - "y": -2394.511901 - }, - "endPoint": { - "x": 1072.698811, - "y": -2395.345235 - } - } - }, - { - "id": "d33939e4-700d-5748-83d7-e4654588bfde", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1072.698811, - "y": -2395.345235 - }, - "endPoint": { - "x": 1075.198811, - "y": -2394.928568 - } - } - }, - { - "id": "5553978a-1c9a-5e95-b24b-4ee8281f4ae1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1075.198811, - "y": -2394.928568 - }, - "endPoint": { - "x": 1072.698811, - "y": -2394.511901 - } - } - } - ] - }, - { - "id": "f50c3404-abd7-5700-b04e-b669ff3eeb46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1075.198810788243, - "y": -2397.348480111818 - }, - "endPoint": { - "x": 1075.198810788243, - "y": -2392.508655884435 - } - } - }, - { - "id": "cbea80af-7629-51ff-b173-dfa4f128d95d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "No.154+00 ~ No.154+10", - "basePoint": { - "x": 1072.857046, - "y": -2388.832045 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7b356c70-c057-5ed1-b81e-504a1cff1e5a", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.0m, L=10.0m(성토부)", - "basePoint": { - "x": 1002.766623, - "y": -2404.728315 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3301cec1-afed-547d-b63b-89538427a4a2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.155+12", - "basePoint": { - "x": 1094.775568, - "y": -2215.948213 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 4.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "28221e71-0906-5ebe-8eff-fdf8abb3901b", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "5da46268-74ea-50d6-88e9-20869934cc73", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1097.198811, - "y": -2357.064982 - }, - "endPoint": { - "x": 1097.198811, - "y": -2266.2106 - } - } - }, - { - "id": "c82ffc8d-8c33-54b0-ba99-cab458f5f9a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1097.198811, - "y": -2266.2106 - }, - "endPoint": { - "x": 1097.198811, - "y": -2202.561989 - } - } - } - ] - }, - { - "id": "cc5cf212-9f41-565a-ab50-3921fb1e2371", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1097.198810788271, - "y": -2212.898825670936 - }, - "endPoint": { - "x": 1144.046481526244, - "y": -2212.898825670936 - } - } - }, - { - "id": "4b3540c5-f262-5620-bd9d-f7eee97e1ab6", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "Φ800m/m", - "basePoint": { - "x": 1097.171249, - "y": -2174.480446 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "16a336ad-4ac3-521b-a4b9-227f8b4ac3c3", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "center": { - "x": 1097.198810788274, - "y": -2182.437599011842 - }, - "radius": 20.12439048760605 - } - }, - { - "id": "55e8d08f-7e45-5198-bb97-39d0e5f31cb3", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "관매설", - "basePoint": { - "x": 1097.171249, - "y": -2167.726849 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e1e945e9-2385-5291-b73b-1e4b8bae284e", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "L=18.0m", - "basePoint": { - "x": 1097.519479, - "y": -2180.14818 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "67a27ff2-d5c7-5909-a2a0-0d072f35ccb9", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "1개소", - "basePoint": { - "x": 1097.76909, - "y": -2191.322393 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8cf0e537-d38c-5dea-8afe-505d3f0b6fa0", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "(유입)", - "basePoint": { - "x": 1097.811588, - "y": -2197.787822 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "311318a9-783d-591a-ab01-ca02ae41d7fa", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "수로형토사개거", - "basePoint": { - "x": 1097.870795, - "y": -2211.312807 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1748d6af-c676-5bda-a54f-a7652142e48a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1097.198810788267, - "y": -2220.663159715513 - }, - "endPoint": { - "x": 1160.95560298297, - "y": -2220.663159715513 - } - } - }, - { - "id": "b6bfe95f-3a34-5f90-9452-84f398d61ae7", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌붙임(찰):A=9.0m2", - "basePoint": { - "x": 1097.674788, - "y": -2219.077141 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bffac6ae-68e2-53d7-adaa-c4c8d7f4f930", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.5m, L=10.0m-성토부", - "basePoint": { - "x": 1097.870795, - "y": -2226.841475 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "47db5979-c9da-5c3a-8aa5-0e82bb292fa5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1097.198810788263, - "y": -2228.427493760091 - }, - "endPoint": { - "x": 1250.479671445845, - "y": -2228.427493760091 - } - } - }, - { - "id": "fe682a1d-58b9-5e86-9a74-1de9bfdd8cbc", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌집수정ㄴ형", - "basePoint": { - "x": 1097.76909, - "y": -2185.85719 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d2b862c0-c6ad-530f-aca4-446d484a5f61", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "c6e0a3b0-ca9f-5018-8ac0-439aceba5304", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1302.698811, - "y": -2401.54938 - }, - "endPoint": { - "x": 1302.698811, - "y": -2402.382713 - } - } - }, - { - "id": "5d91f54d-f8ba-53c0-9aa0-7992ccd14bb8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1302.698811, - "y": -2402.382713 - }, - "endPoint": { - "x": 1300.198811, - "y": -2401.966046 - } - } - }, - { - "id": "9e47eb81-0d0b-5b0c-8228-bb04ab8c6f92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1300.198811, - "y": -2401.966046 - }, - "endPoint": { - "x": 1302.698811, - "y": -2401.54938 - } - } - } - ] - }, - { - "id": "b013a868-b87d-5842-ac3a-f01b67ee1cdd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1300.198810788243, - "y": -2404.385958465391 - }, - "endPoint": { - "x": 1300.198810788243, - "y": -2399.546134238007 - } - } - }, - { - "id": "c5968c8a-4899-54a7-9563-3e886175b685", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": null, - "children": [ - { - "id": "31f2346d-311a-5388-9237-909f92acfb39", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1300.198811, - "y": -2401.966046 - }, - "endPoint": { - "x": 1310.198811, - "y": -2401.966046 - } - } - } - ] - }, - { - "id": "a930cf2d-3951-5a92-9193-6b8d82068e68", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "1f7234e3-9a5f-57b4-addd-324ea680a8e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1307.698811, - "y": -2401.54938 - }, - "endPoint": { - "x": 1307.698811, - "y": -2402.382713 - } - } - }, - { - "id": "487d3070-d840-5b5e-ad0e-e934d90a84aa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1307.698811, - "y": -2402.382713 - }, - "endPoint": { - "x": 1310.198811, - "y": -2401.966046 - } - } - }, - { - "id": "5b7964bc-6198-58f2-93cd-dd721c90d6a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1310.198811, - "y": -2401.966046 - }, - "endPoint": { - "x": 1307.698811, - "y": -2401.54938 - } - } - } - ] - }, - { - "id": "c850528c-30b0-5ea9-b6e3-a29e253969d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1310.198810788243, - "y": -2404.385958465391 - }, - "endPoint": { - "x": 1310.198810788243, - "y": -2399.546134238007 - } - } - }, - { - "id": "45779662-d788-536a-b9f7-342a7b431b5e", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "No.165+15 ~ No.166+05", - "basePoint": { - "x": 1307.857046, - "y": -2395.869523 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3d48bd7c-c05a-5cf4-b463-7c79fdd9dbba", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.0m, L=10.0m(성토부)", - "basePoint": { - "x": 1237.766623, - "y": -2411.765794 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9f1cb289-085a-5718-9c91-2ab81fe71bed", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.170+12", - "basePoint": { - "x": 1394.775568, - "y": -2236.247235 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 4.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f1b7cb2d-5770-57cb-b255-55436529c5fa", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "a318f230-9c31-5d72-92b7-089d857d858e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1397.198811, - "y": -2419.364982 - }, - "endPoint": { - "x": 1397.198811, - "y": -2286.509622 - } - } - }, - { - "id": "7e9676d0-05d4-5c45-b1db-3bed0ed0f957", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1397.198811, - "y": -2286.509622 - }, - "endPoint": { - "x": 1397.198811, - "y": -2222.861011 - } - } - } - ] - }, - { - "id": "05ed88e1-79d5-5a33-ab80-608b37e73166", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1397.198810788271, - "y": -2233.197847512121 - }, - "endPoint": { - "x": 1445.491741454749, - "y": -2233.197847512121 - } - } - }, - { - "id": "2710fac8-eb82-50ce-b7fc-b3cf8d7049a9", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "Φ1,000m/m", - "basePoint": { - "x": 1397.791968, - "y": -2203.65526 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cc21e8b2-abd0-5589-90dc-66ab6935fbf3", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "center": { - "x": 1397.819530208279, - "y": -2204.312876922284 - }, - "radius": 18.55851780179501 - } - }, - { - "id": "0179bae2-bae6-5459-baa8-6082ae53f57d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "관매설", - "basePoint": { - "x": 1397.791968, - "y": -2196.901663 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "54e5bcaf-8a63-5687-8729-beb8507c9376", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "L=18.0m", - "basePoint": { - "x": 1398.140198, - "y": -2209.322994 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "287be4f5-cc86-55f6-af0d-c928fb376ea9", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "수로형토사개거", - "basePoint": { - "x": 1397.870795, - "y": -2231.611828 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4177eb5b-edd2-5dac-9e53-02d8cd9942a6", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "6bbe64e9-ca4f-56f6-99df-681742eb1c0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1392.698811, - "y": -2428.090225 - }, - "endPoint": { - "x": 1392.698811, - "y": -2428.923559 - } - } - }, - { - "id": "121e9250-d087-5ebc-ac53-aa210c462577", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1392.698811, - "y": -2428.923559 - }, - "endPoint": { - "x": 1390.198811, - "y": -2428.506892 - } - } - }, - { - "id": "cd97d7d1-9817-5f14-972d-ab201dfbf0e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1390.198811, - "y": -2428.506892 - }, - "endPoint": { - "x": 1392.698811, - "y": -2428.090225 - } - } - } - ] - }, - { - "id": "4cf0442e-5ded-56aa-ae94-2174b9297495", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1390.198810788243, - "y": -2430.926804074851 - }, - "endPoint": { - "x": 1390.198810788243, - "y": -2426.086979847468 - } - } - }, - { - "id": "f97f49cc-d07d-584c-a133-febcc0585cd0", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": null, - "children": [ - { - "id": "11e1a4ba-2d04-59a7-997b-8cfd19d7408e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1390.198811, - "y": -2428.506892 - }, - "endPoint": { - "x": 1400.198811, - "y": -2428.506892 - } - } - } - ] - }, - { - "id": "d682b3be-94fc-53bc-a076-4f25173b4c43", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "c0aec488-c0bf-5136-852a-b9daee7d54bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1397.698811, - "y": -2428.090225 - }, - "endPoint": { - "x": 1397.698811, - "y": -2428.923559 - } - } - }, - { - "id": "2802e833-a8c9-5a39-9efc-a7937561f79f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1397.698811, - "y": -2428.923559 - }, - "endPoint": { - "x": 1400.198811, - "y": -2428.506892 - } - } - }, - { - "id": "58607248-6bec-515f-ab0f-7f1c9308844b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1400.198811, - "y": -2428.506892 - }, - "endPoint": { - "x": 1397.698811, - "y": -2428.090225 - } - } - } - ] - }, - { - "id": "0cf3b246-50a7-55a5-a72c-146705aa34bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1400.198810788243, - "y": -2430.926804074851 - }, - "endPoint": { - "x": 1400.198810788243, - "y": -2426.086979847468 - } - } - }, - { - "id": "3afa30db-3303-5019-b527-1c92531039e4", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "No.170+05 ~ No.170+15", - "basePoint": { - "x": 1394.614739, - "y": -2422.709052 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "715558b3-2312-5f85-9a48-f9b95a7589c1", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(찰,기초무):H=1.5m, L=10.0m(성토부-좌안)", - "basePoint": { - "x": 1314.204627, - "y": -2436.167395 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "261a6bf5-5e46-5839-b32a-c61abac8ed7f", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "137fa8aa-ace5-5943-91be-60a6d17b2822", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1387.698811, - "y": -2449.168985 - }, - "endPoint": { - "x": 1387.698811, - "y": -2450.002318 - } - } - }, - { - "id": "0a8c6511-35d5-59d2-8277-a6d617e2442c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1387.698811, - "y": -2450.002318 - }, - "endPoint": { - "x": 1385.198811, - "y": -2449.585651 - } - } - }, - { - "id": "962d6272-a6ac-52f2-8e0c-1031f4c07f65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1385.198811, - "y": -2449.585651 - }, - "endPoint": { - "x": 1387.698811, - "y": -2449.168985 - } - } - } - ] - }, - { - "id": "a042d7c2-e359-5831-a0c2-ef17b1b8c1d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2452.005563414965 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2447.165739187582 - } - } - }, - { - "id": "6e620d85-8b28-5340-8a69-185499ff0874", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": null, - "children": [ - { - "id": "5151ceae-8a5b-5d51-ba2c-d5c7ee0ccc24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1385.198811, - "y": -2449.585651 - }, - "endPoint": { - "x": 1405.198811, - "y": -2449.585651 - } - } - } - ] - }, - { - "id": "cd8c3b79-94ef-5928-a6cd-5651dc3e62e8", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "eb970630-db3f-56b0-9a65-a368cb66e1f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1402.698811, - "y": -2449.168985 - }, - "endPoint": { - "x": 1402.698811, - "y": -2450.002318 - } - } - }, - { - "id": "04dc2157-59fe-5acc-8319-fd12169155b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1402.698811, - "y": -2450.002318 - }, - "endPoint": { - "x": 1405.198811, - "y": -2449.585651 - } - } - }, - { - "id": "abb8cb0b-df4d-555e-ac2d-a4a47a01020b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1405.198811, - "y": -2449.585651 - }, - "endPoint": { - "x": 1402.698811, - "y": -2449.168985 - } - } - } - ] - }, - { - "id": "18c31906-68ae-53a4-9768-d59b1b355e04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2452.005563414965 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2447.165739187582 - } - } - }, - { - "id": "ea023dab-c944-52d2-b497-4f79263f632b", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "No.170+00 ~ No.171+00", - "basePoint": { - "x": 1394.614739, - "y": -2442.995557 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c34bb18f-dde4-5fce-8c8f-4dc3d7af4ff5", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.0m, L=20.0m(성토부-우안)", - "basePoint": { - "x": 1314.204627, - "y": -2459.882635 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - } - ], - "layers": [ - { - "id": "0", - "name": "0", - "isVisible": true, - "isLocked": false - }, - { - "id": "JCinfo", - "name": "JCinfo", - "isVisible": true, - "isLocked": false - }, - { - "id": "LP_AA_SGG", - "name": "LP_AA_SGG", - "isVisible": true, - "isLocked": false - }, - { - "id": "프린터", - "name": "프린터", - "isVisible": true, - "isLocked": false - }, - { - "id": "9224", - "name": "9224", - "isVisible": true, - "isLocked": false - }, - { - "id": "타이틀", - "name": "타이틀", - "isVisible": true, - "isLocked": false - }, - { - "id": "text", - "name": "text", - "isVisible": true, - "isLocked": false - }, - { - "id": "호지기입", - "name": "호지기입", - "isVisible": true, - "isLocked": false - }, - { - "id": "기설구조물", - "name": "기설구조물", - "isVisible": true, - "isLocked": false - }, - { - "id": "치수", - "name": "치수", - "isVisible": true, - "isLocked": false - } - ] -} \ No newline at end of file diff --git a/resources/master_template/drawing/01_template_Longitudinal_table.json b/resources/master_template/drawing/01_template_Longitudinal_table.json deleted file mode 100644 index def2aa22..00000000 --- a/resources/master_template/drawing/01_template_Longitudinal_table.json +++ /dev/null @@ -1,123367 +0,0 @@ -{ - "format": 6, - "source": "01_templete_Longitudinal_table.dxf", - "entities": [ - { - "id": "bf61db3b-9674-51a4-91e3-e891848f62a4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2464.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2464.164981814357 - } - } - }, - { - "id": "8bc1f1b7-c9cc-5379-a8b3-7ec9e796e685", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2464.164981814357 - }, - "endPoint": { - "x": 59.19871930318277, - "y": -2599.164981814357 - } - } - }, - { - "id": "e46ce3b8-8eaa-5eaf-b101-e6acef185e38", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2599.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2599.164981814357 - } - } - }, - { - "id": "6c1713c0-5d0c-5735-ace3-2b20395b31b3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19873907897943, - "y": -2599.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2464.164981814357 - } - } - }, - { - "id": "faa484a8-279a-5e67-bed0-13c6fe051b75", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2584.164981814357 - } - } - }, - { - "id": "fa4729e6-8cc5-5a61-b358-2c3dd893b942", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2569.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2569.164981814357 - } - } - }, - { - "id": "b30e74f8-bf43-5cf4-9414-61250d8d29d0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2554.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2554.164981814357 - } - } - }, - { - "id": "718bb9f4-4a5c-5fa9-b04d-d3b80bfd2d6a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2539.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2539.164981814357 - } - } - }, - { - "id": "21bd5364-d7e5-5825-96b0-c12e4ac39c16", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2524.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2524.164981814357 - } - } - }, - { - "id": "b8a65627-b419-59e3-bd56-244c23d9150a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2509.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2509.164981814357 - } - } - }, - { - "id": "0bd5bedc-d6a5-5393-aab1-65c30a264eff", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2494.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2494.164981814357 - } - } - }, - { - "id": "2a57e833-2ebc-5316-aa33-d2bc6c6a7ea6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 79.19873907897943, - "y": -2479.164981814357 - } - } - }, - { - "id": "8bbcb6d9-68dd-5349-85fd-b55c03fbf9c3", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "곡 선", - "basePoint": { - "x": 69.198729, - "y": -2591.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6b201ae3-22a4-5ec5-8c63-1c0e08a7d805", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "측 점", - "basePoint": { - "x": 69.198729, - "y": -2576.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ffb145ec-64f3-576f-aa94-be1d4cf1447e", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "거 리", - "basePoint": { - "x": 69.198729, - "y": -2561.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bf31c26e-5977-5f0c-b4be-15e0b5715559", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "누가거리", - "basePoint": { - "x": 69.198729, - "y": -2546.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5bc02f56-1979-5f8a-87bc-6b53e7a4e18e", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "지반고", - "basePoint": { - "x": 69.198729, - "y": -2531.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3dd0bb7e-9374-5076-8c31-8d50dbf4dae3", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "계획고", - "basePoint": { - "x": 69.198729, - "y": -2516.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d0a26ce7-2aa6-59b8-a6de-404c4513b45d", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "성토고", - "basePoint": { - "x": 69.198729, - "y": -2501.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "76f74788-0c7e-5c7c-bdf8-c7f13480920d", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "절토고", - "basePoint": { - "x": 69.198729, - "y": -2486.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "31272af5-d094-5458-be0c-de2171012d69", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "구 배", - "basePoint": { - "x": 69.198729, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5e145c55-f45c-505a-9d64-048b2b4b254d", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 54.19871930318277, - "y": -2606.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2606.164981814357 - } - } - }, - { - "id": "30f1c225-8141-5cd9-9c28-f9ebccde5c49", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H= 1 : 1000", - "basePoint": { - "x": 67.698719, - "y": -2605.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 2.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "847b9b87-8e72-5171-8fc0-3fe57d13f955", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 54.19871930318277, - "y": -2606.164981814357 - }, - "endPoint": { - "x": 54.19871930318277, - "y": -2581.164981814357 - } - } - }, - { - "id": "1546eae8-d4f2-56a6-b682-fe17ee3c29cc", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "V= 1 : 200", - "basePoint": { - "x": 53.698719, - "y": -2592.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 2.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f8b82208-5d2a-588d-a958-7379c47982b8", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "9eda2278-6258-5bd3-a13d-54bd3cb3a84b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2599.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2464.164982 - } - } - }, - { - "id": "815c90da-fa2f-5a29-abaf-76b613995311", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2464.164982 - }, - "endPoint": { - "x": 704.198719, - "y": -2464.164982 - } - } - }, - { - "id": "e400f51c-f012-5d2d-99d0-f85a3e2d51af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 704.198719, - "y": -2464.164982 - }, - "endPoint": { - "x": 704.198719, - "y": -2599.164982 - } - } - }, - { - "id": "92c684a1-6ef1-5799-93ef-0fe5ad30b6e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 704.198719, - "y": -2599.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2599.164982 - } - } - } - ] - }, - { - "id": "939694b9-86f7-5747-8119-33bd67a513e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2584.164981814357 - } - } - }, - { - "id": "3e11c14f-853f-59bd-92f3-5544ff580ed0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2569.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2569.164981814357 - } - } - }, - { - "id": "e1ba40dc-2b3c-5c84-bf36-95f1a95cc3e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2554.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2554.164981814357 - } - } - }, - { - "id": "dc5ba1dc-340c-58d7-a71b-1adf951e584d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2539.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2539.164981814357 - } - } - }, - { - "id": "6fa08b3b-f75c-54fb-a1b5-db7edf70ec65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2524.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2524.164981814357 - } - } - }, - { - "id": "e26d4008-6872-5d77-8a29-aaef40366359", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2509.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2509.164981814357 - } - } - }, - { - "id": "6b201052-4706-5727-b284-8faec76a8437", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2494.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2494.164981814357 - } - } - }, - { - "id": "6b52439f-99d9-5637-97ae-1f554fb37ae1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.19871930318277, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 704.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "f445a809-4d81-50f0-a178-b54f6d98ea1e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2297.364981814358 - } - } - }, - { - "id": "a9c7617d-ab54-5a42-8c7f-3fb909d401d1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2583.664981814357 - } - } - }, - { - "id": "3c81ee1b-08d7-56f4-9b78-f49fb4fbc1ea", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.120", - "basePoint": { - "x": 89.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b5438ec1-fa58-50f4-9620-75cb757442fc", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2568.664981814357 - } - } - }, - { - "id": "6cfec827-4f4d-5b0c-b3f7-18bd60d38f57", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2553.664981814357 - } - } - }, - { - "id": "a628ded2-6554-5293-82d9-8d4ea8bdc4bf", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2400.00", - "basePoint": { - "x": 89.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ab95e2da-af4c-5d53-9dc9-ebe091b97e62", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2538.664981814357 - } - } - }, - { - "id": "6a192e38-4f67-57ca-8165-92aafdb2d203", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "410.36", - "basePoint": { - "x": 89.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1fe1843b-6b0d-5c45-b090-614d5e2220b9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2523.664981814357 - } - } - }, - { - "id": "d1f42a13-c4c0-5ff5-8f68-98c157de54e7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "409.96", - "basePoint": { - "x": 89.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8c327139-d08c-5786-bd8d-4eda363f406d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2508.664981814357 - } - } - }, - { - "id": "9dbcc4f7-59a2-593b-9021-8888ed924f82", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2493.664981814357 - } - } - }, - { - "id": "d880db63-92db-50cf-9b53-7a6a2b6c68d6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.40", - "basePoint": { - "x": 89.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "dab78f9e-0197-52fd-9114-7ae562f27688", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2479.164981814357 - } - } - }, - { - "id": "c8134785-6bb4-5d37-bd96-314e6c2eaca6", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2306.864981814358 - } - } - }, - { - "id": "1c15c686-8837-50ee-a51f-62ebd99c3be5", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2297.364981814358 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2306.864981814358 - } - } - }, - { - "id": "07030e2c-1c81-556e-839c-94ee98646e5b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "7d3f6b84-e22f-53f3-9fec-28e4c03d36d7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+18", - "basePoint": { - "x": 107.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4dbd4672-e2e1-5786-9b26-a96c5a78531f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "4b338499-9858-5a7b-a695-5d22fbe3fdaa", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "18.00", - "basePoint": { - "x": 107.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7da10750-15fa-5a55-b34d-8dd9dbec3739", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "43ce6732-721f-5b3c-b4a1-ab79822858c5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2418.00", - "basePoint": { - "x": 107.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3447f197-6e83-55d4-90d9-0ba9b1b14a39", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "56777a18-2107-5e1b-82a1-59e75ee87bed", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "408.46", - "basePoint": { - "x": 107.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0c2c2df4-6a7e-5b6e-bdae-26b09af20359", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "2a5cad19-21bf-5286-9616-9cc241d7ae1d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "409.10", - "basePoint": { - "x": 107.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "283b9002-e941-52a7-8204-1a08ca87e498", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "9572d6b8-3605-5b79-8aa5-f5d24ab29e68", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.64", - "basePoint": { - "x": 107.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2a53857b-3e4a-5b0f-a061-c1d0dd779398", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "b2769f70-922d-5d03-85ad-238fa53db3ac", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 107.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "48b91576-8fde-5a33-90af-f8c39c06eadc", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2306.814981814357 - } - } - }, - { - "id": "54f6cca2-08ba-5c97-9cc0-6b65dab780dd", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.1987193031828, - "y": -2306.864981814358 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2306.814981814357 - } - } - }, - { - "id": "8bb30ec3-4901-516a-91aa-6d6f9f1deab4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "1f90ad41-f840-50c4-8803-5d1d2aeb07a2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.121", - "basePoint": { - "x": 109.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8eed15b6-0413-551e-aebf-e22396538249", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "92d0c6ed-b58a-5280-ab3d-5db550bf7470", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.00", - "basePoint": { - "x": 109.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "59f7baa1-156a-5d65-8ba9-caf2c4ad6973", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "fcf9e764-f225-5702-abc6-1a8cb6eee515", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2420.00", - "basePoint": { - "x": 109.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c3dbb5a8-04ce-548c-90fc-bc06e4b2c8c3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "08d4aec6-a678-57e0-afdc-b3d205ae5289", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "408.47", - "basePoint": { - "x": 109.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a67abc57-3525-53b8-989a-9b2222ffcb78", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "42b607a2-4714-5a76-9992-f1c956100723", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "409.01", - "basePoint": { - "x": 109.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6abf94f3-8bd0-57c1-8b81-27accf3e186b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "d451c66d-f0c4-500b-b9a8-7b085f083a48", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.54", - "basePoint": { - "x": 109.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4ef7d913-d04a-575c-ae48-c91f16a876dd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "ffe74f48-c52f-5559-8975-57332edf6cf5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 109.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "af25f237-8216-5d70-817f-aeaf6ffd553f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2303.364981814358 - } - } - }, - { - "id": "26b51aff-d93c-58ef-8c3d-1ef8d876aedb", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.1987193031828, - "y": -2306.814981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2303.364981814358 - } - } - }, - { - "id": "7a7f514f-5d82-5878-8c12-038fc00b0590", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "c7072af2-1841-5573-8199-fd2bdbdcf4a4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.122", - "basePoint": { - "x": 129.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b5376ff4-2971-5f09-a393-b4ef1b12d02a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "03b82321-2117-57ad-9b5a-3a3d3b10eb8d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 129.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "830613cf-bfd7-51c9-aba4-6af59e19ddfa", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "2f2b173f-4baf-592e-a7e8-d8184cee4112", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2440.00", - "basePoint": { - "x": 129.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "dcba1050-0203-5e0a-a4de-7e07e8879ae1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "dcf2bd49-cbe7-5f61-8400-615cda557960", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "409.16", - "basePoint": { - "x": 129.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "58596961-3281-5004-a866-4ddd785da4b5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "12c57a69-fd25-5a7c-887b-8f4f41980bb9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "408.05", - "basePoint": { - "x": 129.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "653358af-e32c-55fc-9d15-7693941c5268", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "77a21923-db7e-5f0f-bbb1-1f6c096fd606", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "982ac20f-bdde-5361-9a99-45bea21a82de", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.11", - "basePoint": { - "x": 129.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fbc8ff6c-5fdc-5113-bd5a-9a552e7d89b8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 129.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "c5a53cb0-f7e6-54b2-b068-fad3ef487b8f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2307.814981814357 - } - } - }, - { - "id": "459fddfb-7e78-581b-b590-5f9aa92f46ff", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.1987193031828, - "y": -2303.364981814358 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2307.814981814357 - } - } - }, - { - "id": "d666cbe3-ca73-5d35-b2cd-8667b1bc90d2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "2fa33bf5-9c5f-5187-acc3-78fc7b8fdbf0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.123", - "basePoint": { - "x": 149.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "63e1aa34-e180-579a-9b55-a130ac9536df", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "fe8a23e2-9413-5cd3-96c5-11205ef929f2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 149.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "96c07886-4aff-5b4c-b53b-119df9918862", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "63790477-2ad3-5480-8707-b2e3bca6f718", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2460.00", - "basePoint": { - "x": 149.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "19b63a5e-8101-5dbd-b807-726a6fc9b7ea", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "4f3a4652-0421-5c41-ba6c-c22371ddc752", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "408.27", - "basePoint": { - "x": 149.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "78b666ed-a8b7-542b-a5fc-aac2718e3196", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "bca3aaff-0c16-5fcc-94bf-59b73c5130db", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "407.10", - "basePoint": { - "x": 149.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9cdde98b-47c3-5fe1-a657-727641d58b3a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "b257fb35-5a9f-5141-adca-89c5cab40083", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "0f9dfd39-e2d5-549b-be01-9a3466bc7fbc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.17", - "basePoint": { - "x": 149.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d25dd2f4-46ec-57a4-b631-c58bf9cc3cf8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 149.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "a3337374-8db3-5d4b-b202-5a0e62ab8886", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2312.314981814357 - } - } - }, - { - "id": "50a80f2e-8723-5a84-8523-f050193c69d3", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.1987193031828, - "y": -2307.814981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2312.314981814357 - } - } - }, - { - "id": "1b062181-33c7-5afd-8116-38925f492e9c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "0fe6bf9f-ad11-5878-bf99-dc670bf44938", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.124", - "basePoint": { - "x": 169.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d6b64578-449e-52f3-92e9-3fa70b181efa", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "e24218a7-6582-5475-8239-4628c275b3cc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 169.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "77b625cb-0033-595d-b922-d3e8953c4037", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "0ddc7c74-4eec-5713-b3b6-16158a87b968", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2480.00", - "basePoint": { - "x": 169.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "626bfc8d-b478-5e73-8079-0da1164fa984", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "de1b5439-fa96-5d01-91a4-af3dab0a1fb0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "407.37", - "basePoint": { - "x": 169.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5f65ab47-fa3c-54d7-a30b-dc12ca933996", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "81bdb9af-fc88-5940-83cd-83f63f294762", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "406.12", - "basePoint": { - "x": 169.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fef94cae-5818-5a58-bace-3a582b003dee", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "a48d4ceb-cc87-53b1-b4cf-27154cc5c70f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "3ecfb083-0a96-51ae-969e-29b5c6aaf010", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.25", - "basePoint": { - "x": 169.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "272d2f36-b862-5489-a9c6-92ea61b21811", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 169.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "99f586c1-7c62-5c40-85c6-2f9f819e9fce", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2316.814981814357 - } - } - }, - { - "id": "55d9c2c2-92bc-50b0-8570-7e2da7d73e37", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.1987193031828, - "y": -2312.314981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2316.814981814357 - } - } - }, - { - "id": "4d91078f-daff-57ec-9c6d-7888f38a9fa4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "44caddcb-5750-5414-9a47-c73d56109629", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.125", - "basePoint": { - "x": 189.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "74caa53b-25be-57c5-8ad5-346687e22731", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "eef8b418-ce73-59d7-96fd-7b629c538535", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 189.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "46eaca16-a196-528d-a9b4-549b436b631f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "37a81e28-f3c1-54e4-99ff-de39d753e62e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2500.00", - "basePoint": { - "x": 189.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "04e8b78d-5a40-52ae-98a8-85a772e51567", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "61e38b6d-2b3f-5cd6-aecc-ea9ed6e476a7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "406.47", - "basePoint": { - "x": 189.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "95456c7b-1af4-5631-a578-744c953fadfb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "2d5594bd-f32b-5c47-9849-10886613fe6b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "405.17", - "basePoint": { - "x": 189.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e5382b22-110d-5c7e-9e18-2e847230b60c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "36ecd1b0-322a-5206-9bb9-8373a3585e0b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "cd327851-f49b-5a36-9a69-8de6cf5a9169", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.30", - "basePoint": { - "x": 189.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fe7b2173-0c8c-54c1-a977-f5d4c28ae6ec", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 189.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "792a5781-9e54-5e9d-b7fd-55be98c708a4", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2336.714981814358 - } - } - }, - { - "id": "9f22441f-5673-57b9-9ae7-60e549831169", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.1987193031828, - "y": -2316.814981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2336.714981814358 - } - } - }, - { - "id": "5ff43341-3a6b-50cf-9129-bae8102fe8ea", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "9bf37b28-525b-5faf-854c-c0358ed16ec1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+15", - "basePoint": { - "x": 204.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "dee3a1c7-90ad-50c0-a3cd-4e1b4fe52230", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "be15cafa-eb92-55ad-a1dd-808ab2adcba4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "15.00", - "basePoint": { - "x": 204.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c640da55-35a2-5c15-a9d7-d186188c794c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "00528663-b303-5e0e-9c25-8af916c6e7f6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2515.00", - "basePoint": { - "x": 204.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cbfa0fa9-117b-571e-b404-5cfd2707e753", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "92b2e3a8-2099-5ccf-80d1-1fa8c1b21c8d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "402.49", - "basePoint": { - "x": 204.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "904aa122-eafb-5f6c-8eba-0b014d137de6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "a7fb0d2d-d9d5-567f-adf2-3ddeaf4fa5f8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "404.96", - "basePoint": { - "x": 204.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "39f8b1a4-9043-5461-8175-1229ddbadc3c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "20e16a78-ac0f-567b-b7d0-678d285aae58", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.47", - "basePoint": { - "x": 204.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ebd0f43c-d7c6-54db-9c86-f3a060bc5cd5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "3be0e087-dcf8-5717-9d5a-949a241033d0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 204.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "db2f4fd0-f6dd-58a2-9c66-fbc986ef562a", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2314.464981814357 - } - } - }, - { - "id": "20658fd6-c921-552c-8adf-3f9ad59fc26c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.1987193031828, - "y": -2336.714981814358 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2314.464981814357 - } - } - }, - { - "id": "2d557e36-061c-5cbd-888d-442b2ad990e3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "56132d04-8405-5a67-97be-00c7ae7a1d93", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.126", - "basePoint": { - "x": 209.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "39139b45-4132-5a9b-b704-a9bde9e0ec93", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "d529e8fb-5e6c-5aee-919a-f942c8120eec", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "5.00", - "basePoint": { - "x": 209.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "07494439-85cb-5bd7-8853-20a3a5302d94", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "5868b0cd-c12f-5f12-8071-c9bc9e7e7cd0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2520.00", - "basePoint": { - "x": 209.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "743b0b25-e19d-592e-8872-ae3e6401a654", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "ca7f7f7c-1993-5715-bb4d-8e691682ac19", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "406.94", - "basePoint": { - "x": 209.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f9846e22-943d-5726-949a-f13dc141a47c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "706ce341-c495-5dca-a7ba-527966bf498e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "405.02", - "basePoint": { - "x": 209.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5fadbf51-ca4c-5dc0-9f06-1a5992961be5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "07cde265-b4de-5851-92d9-4fe1f067dc3c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "a986ae2e-b6cd-5629-894e-b8ba00f6bf3c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.92", - "basePoint": { - "x": 209.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "06690f8e-40e1-57dd-b94d-9262da84c8b9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 209.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "c1ffcf30-ea93-5d84-bbfd-f2262e0d1ac4", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2324.364981814358 - } - } - }, - { - "id": "d8507153-df26-58f7-b8b6-127c0951b97a", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.1987193031828, - "y": -2314.464981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2324.364981814358 - } - } - }, - { - "id": "4b99386a-b37e-50a0-af6e-2dc52471f28e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "d47316aa-f520-58f5-b859-6d89708497a9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+12", - "basePoint": { - "x": 221.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7c90a7fb-aba2-5d60-8539-3d740f9f4a44", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "e8cea3ee-8cd2-5a8f-9b49-766eb16c049c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "12.00", - "basePoint": { - "x": 221.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8313e5a1-fb0e-58f4-9416-0ae535655b18", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "642a1e47-409c-5e8a-aab0-73dcbfdc3a68", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2532.00", - "basePoint": { - "x": 221.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2c8a6ffe-eb75-5223-aad8-e83e729901d9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "806a49eb-d551-5112-be28-f2f291e01797", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "404.96", - "basePoint": { - "x": 221.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cc8749e1-7d1e-5903-9549-36ce5481c470", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "9425b7c1-6c18-599d-967d-8b43255ad752", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "405.47", - "basePoint": { - "x": 221.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f30bc467-c089-50ad-976e-317b4c66dabb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "743d6367-0566-5c86-ac26-87c2a361a949", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.51", - "basePoint": { - "x": 221.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "135a2fe7-d02b-5010-a7d7-c57029dc6fde", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "b4e8e32f-c7d0-5773-b580-a8d28acd9e6f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 221.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "b58394f4-91e0-5302-a809-96ebebc28420", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2316.914981814357 - } - } - }, - { - "id": "9b2d5865-df50-5e69-8668-aa8c03db2570", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.1987193031828, - "y": -2324.364981814358 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2316.914981814357 - } - } - }, - { - "id": "63d3e497-8cfa-57f0-aae3-e8ea2d62a9d4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "0679cd63-adcd-59bc-8386-dcbdbff45328", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.127", - "basePoint": { - "x": 229.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a42d1164-11f9-565d-b857-ca669d3afede", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "fc7d4c92-5d5d-5185-9780-0ecc55f7bcd4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "8.00", - "basePoint": { - "x": 229.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6a10e1ab-5ebb-51d9-9ae5-2e2f517b580e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "93cd1903-ba15-5999-a863-1a37583be955", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2540.00", - "basePoint": { - "x": 229.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b6315329-968a-5e64-b0bc-cc1ef994ae78", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "59defc4d-52a8-53b6-bc21-f6fa5af513ef", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "406.45", - "basePoint": { - "x": 229.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1f99409c-1090-5f9d-9ed1-7fc8a3529b16", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "963cc826-0b51-5438-8f03-9eccbb900821", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "405.96", - "basePoint": { - "x": 229.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0e2b5bea-23d3-5a14-bdda-81e937f47986", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "2e8c152e-d189-5bca-b54a-1ed646535f99", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "86638b22-9702-5710-847f-bf0efde58947", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.49", - "basePoint": { - "x": 229.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ae2ae0e1-745f-5d54-b918-999a234c278c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "845fa90d-d3b6-563c-ab71-8de8d36573df", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2298.814981814357 - } - } - }, - { - "id": "510b6192-d827-50e6-ac04-9b9554d2f2db", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2316.914981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2298.814981814357 - } - } - }, - { - "id": "69ef880d-8bd1-5eca-81f3-f4ea13e1c417", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "0c626394-233a-5708-8d2f-2df3ce8a5ca4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.128", - "basePoint": { - "x": 249.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6405f9a0-0eea-56c1-be5a-a613988c01fa", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "1ec13e02-6b8d-51ea-a3e1-59713092db28", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 249.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f57c849a-d556-5c70-809a-dada26a95810", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "6d215c06-d47d-5348-9ff8-bd9326f35445", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2560.00", - "basePoint": { - "x": 249.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c29da3d3-ed4d-5823-8060-ee68a42d10d5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "3c7b20b0-7e7d-5a22-b7ce-95631338e599", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "410.07", - "basePoint": { - "x": 249.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f3ae14be-f257-57fb-a98f-436f083e30f2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "60674274-a3bf-51e9-ab56-f355163b4318", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "406.45", - "basePoint": { - "x": 249.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "464dd7de-3906-5fb0-9fd0-969230563d85", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "8cf2f07d-7745-5dec-b5e4-1cf46d08822d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "cf99e58b-2dc9-5589-8304-60119627c5ab", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.62", - "basePoint": { - "x": 249.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6b8a5ff4-013e-5728-8630-6cfac7f21936", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 249.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "0634821e-3caa-5990-8823-ab398c41528f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2311.464981814357 - } - } - }, - { - "id": "8b1474df-d021-5c55-b78c-c6267d21db7e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.1987193031828, - "y": -2298.814981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2311.464981814357 - } - } - }, - { - "id": "aa9b99a1-7368-52b5-b591-1d04446e04e9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "46faaee2-b8f8-5c69-93a8-0b27c2c36773", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.129", - "basePoint": { - "x": 269.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8369cf26-0529-5ecb-ad25-f1557d332033", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "f5fff52a-c01d-5ce2-8169-5f79e33f42a5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 269.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "81c6b79b-38e8-5456-8daa-52e82e71593f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "6acf9ed6-0a1a-56b6-baf7-e16ade0caa17", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2580.00", - "basePoint": { - "x": 269.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "83511c4b-ea12-507c-9493-c0c177258a86", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "5da476ea-5341-500f-be46-7bffd27897b7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "407.54", - "basePoint": { - "x": 269.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cb76fc9e-e0e1-5f9b-8065-a10596aa9137", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "aacc1bde-8630-5061-b64e-a323b1605623", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "405.43", - "basePoint": { - "x": 269.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4577f8a2-51e3-5162-8846-5d3744764bba", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "1e5b4ffb-e012-5637-b125-6e5a45b5c6ec", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "b74711e1-99f0-57b5-b57e-caf443740e94", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.11", - "basePoint": { - "x": 269.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fdf69df9-1c5e-5ca0-bee0-ec6299aa9b27", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "8cfc6990-ca5d-520b-9683-edd4d9e93f45", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2326.064981814357 - } - } - }, - { - "id": "35d88a85-3e10-5b96-b604-a6adcff0c133", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2311.464981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2326.064981814357 - } - } - }, - { - "id": "42f34318-f82c-54ee-9ce0-d1441c429fd1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "f0fda287-2ff2-568b-9980-aef12245bbda", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.130", - "basePoint": { - "x": 289.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "393cf4c5-0069-599c-b80e-fc43cdfb9cfe", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "b9253808-2598-5fbf-abc6-6be3aee39dd4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 289.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b76f70f4-9804-51b2-a0aa-d941cb79b97c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "e525f892-1342-5ee2-95c3-24e154520534", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2600.00", - "basePoint": { - "x": 289.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ff20c2a5-dafa-512e-b425-93958b69f048", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "f929a4f8-a35c-56df-9ae1-994a97d4f99c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "404.62", - "basePoint": { - "x": 289.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e65d829a-ba8e-5d86-935b-c22d81b5bb65", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "c4840581-f16b-5682-b8e9-482453ef2238", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "403.67", - "basePoint": { - "x": 289.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "120f4da6-006c-5788-ab8e-ca38a4c6ccbd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "28ba4dff-1bc4-5482-a608-f2c965e4be3e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "20410dc3-c1bc-5b6f-b097-a6a627e27035", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.95", - "basePoint": { - "x": 289.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c9c5c839-f688-5482-9d9d-3b2d892a617d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 289.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "e89d6f16-46b7-5ba2-8835-98a99abf59ee", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2334.414981814357 - } - } - }, - { - "id": "9c340dd0-20c3-51fa-8a01-236267dc6fb9", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.1987193031828, - "y": -2326.064981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2334.414981814357 - } - } - }, - { - "id": "174c2a04-6275-5712-9960-e264db30e439", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "cc792584-f5aa-501f-be9f-8bef1aa21eaf", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.131", - "basePoint": { - "x": 309.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "90c2c8bf-e693-581f-883e-838aad5925f6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "d8fbc3ad-a51a-57fb-9b45-426196adbf90", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 309.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a3bae511-856d-57d4-a401-e8d3e502637f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "d584c95c-2029-502e-a3bc-d60e12a81f8e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2620.00", - "basePoint": { - "x": 309.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a39b7478-0347-50db-a44b-3599b31229d8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "1574ccae-ce31-5c4a-a564-091de021df98", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "402.95", - "basePoint": { - "x": 309.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "40a09b70-e4df-555d-af71-d553f84a8e2f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "55ad4a19-a587-5da0-a305-72f30218cb40", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.90", - "basePoint": { - "x": 309.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "49bf2db8-55fe-5ebc-9853-e1c8732a37d1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "48239984-0d9f-5d07-9c1c-ad61b94498de", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "1e7d6039-3563-5135-a6be-40b1630b6f5b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.05", - "basePoint": { - "x": 309.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "beaf1847-aa71-5df9-ac04-1854f2d498c0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 309.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "b0bc458e-d32a-5d7a-a8db-1e792bfc9253", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2340.364981814358 - } - } - }, - { - "id": "2c3fba5a-4d75-5277-9491-d87376596a1d", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.1987193031828, - "y": -2334.414981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2340.364981814358 - } - } - }, - { - "id": "43d55a7c-ac4f-5e24-87b1-495bf9ad3270", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "c7a7adfb-e1b4-5506-a1ae-274818c2fcf1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.132", - "basePoint": { - "x": 329.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1f1bde34-6ef8-597b-90db-bcafae329edb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "c70eef86-6a9f-5fda-a607-3e9f5cc7ce03", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 329.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "12600ea1-58ea-55e3-863e-f742c6615313", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "b1568e2b-5ba0-5a8d-95eb-f32805741226", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2640.00", - "basePoint": { - "x": 329.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8143a95f-7960-5e56-851b-0100b36be7de", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "ef0c2df5-257c-5b87-995a-7ed6498ccae2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.76", - "basePoint": { - "x": 329.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e834f533-798e-51b1-a4e5-5256a63f690a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "3cc97c64-3d6a-5373-9145-e32440ff0162", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.86", - "basePoint": { - "x": 329.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e9889c90-71fb-524c-b5b8-42361b35eb86", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "0e62c08e-b296-5659-aa62-946bbf8f9d05", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "f6016eb5-7688-5dcd-be5d-2833c9ae0d15", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.90", - "basePoint": { - "x": 329.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7cc0f777-8077-5358-9eaa-85f5e345c17f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 329.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "daac831e-5b82-52be-9016-68364e070ba8", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2350.364981814358 - } - } - }, - { - "id": "c6f0bf96-07e4-5b52-8eeb-46bfa0220eb0", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.1987193031828, - "y": -2340.364981814358 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2350.364981814358 - } - } - }, - { - "id": "c8605398-ac16-565f-ac2c-28f06ce19a7b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "6144737e-6947-5c32-a354-560ead484d7e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.133", - "basePoint": { - "x": 349.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1bc9c40f-bf69-5203-b539-3569a173a9fb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "a6fdc94b-9650-5475-9952-7e8d7d8971f3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 349.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fa9ed10b-339f-5108-a115-5bb50af8b0ad", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "0bcd3b05-a255-5c2b-a338-e80518a8bd2b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2660.00", - "basePoint": { - "x": 349.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "aae1fa97-51ce-5528-9411-a9730e02ce5d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "c640f907-a4ff-5846-9dfa-61a45cacff9a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.76", - "basePoint": { - "x": 349.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0c69d530-f8d1-5ec5-92a9-ddbf4ed7d0c0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "47ad6a1b-b3af-52c2-a111-c902b4a2c116", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "397.81", - "basePoint": { - "x": 349.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ad94d2e9-39f9-5217-ad84-6059b210392b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "687d29b4-6008-59e1-87b2-5f6de91737a2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "894abbf9-c045-5195-ad33-71e173d6c07b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.95", - "basePoint": { - "x": 349.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bbad6e1e-acb9-572a-904c-a12c938dba04", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 349.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "1d93cd07-fc32-5e9f-9701-fa635932fcf0", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2364.414981814357 - } - } - }, - { - "id": "67b5bc0d-0e9b-5ae8-9ce3-4000ae66bde5", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.1987193031828, - "y": -2350.364981814358 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2364.414981814357 - } - } - }, - { - "id": "bde322a6-396a-5800-b7eb-b40789c9578e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "a9e9c734-dd8e-5fc4-b848-41c75f7b4fa9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.134", - "basePoint": { - "x": 369.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f7a7dc61-9734-5c67-90b9-fe3446abf9ff", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "33ee76ce-136b-5397-b261-77b4849dddb1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 369.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "61bdf488-8eca-5e2c-bfab-ace73a2a7064", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "165b138c-2fd9-561d-bbdf-1e9ad172d6ab", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2680.00", - "basePoint": { - "x": 369.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "972bf4ff-6dde-517a-9db6-a96e6a944d11", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "74ef76ba-5817-5854-8a37-9d263eea619c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.95", - "basePoint": { - "x": 369.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4029a898-ee72-589a-91d9-861ec099aa9f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "5a8cb1b8-f532-5ae0-a63d-7f0559d62254", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "395.77", - "basePoint": { - "x": 369.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4a6186be-9a89-5eaa-8962-88642d2b3ef6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "f9256c10-32de-5393-a2d6-f997732d2f95", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "94e055cf-5ef2-5a73-9629-567225422994", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.18", - "basePoint": { - "x": 369.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1c62428e-6ddb-52a5-a51f-e60141bb6abf", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 369.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "e96f6181-3091-53e6-912a-591c95044811", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2380.364981814358 - } - } - }, - { - "id": "3caa408b-cadf-52eb-aa55-30644149885f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.1987193031828, - "y": -2364.414981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2380.364981814358 - } - } - }, - { - "id": "3fa36a98-9340-5dd1-9d5e-78e38df0cea2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "85e842a4-6ee4-5cba-9b4a-fb4477182700", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.135", - "basePoint": { - "x": 389.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b7ee3384-9ae8-5a57-88bb-f2383f0cc48a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "6a522671-3c1e-5b65-b640-a6fb1910d06c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 389.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4e510f02-e03f-573a-92e9-80daab95eec9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "b7456965-f7b0-5de7-a430-4ed83607fb48", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2700.00", - "basePoint": { - "x": 389.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fa9228ff-f8d9-5cba-8f16-2c2bd79ac3e4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "bb6924c7-e72a-549a-889d-d126c6e86af1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.76", - "basePoint": { - "x": 389.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2686884a-1ba5-5474-84a3-97caff1353c6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "0ed433d2-ee05-5f01-8d30-ed28bf18ee50", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.73", - "basePoint": { - "x": 389.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "357857d9-2c53-5248-9fb8-37656436560a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "d1652b20-8c30-59de-af1c-1dfb2c595b93", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "1b9699a4-d426-5f88-96a2-48fa9aa42bc5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.03", - "basePoint": { - "x": 389.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2c4b5fc3-6527-5900-abef-4805e912a570", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 389.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "fdb700e0-5dbe-59fd-87cd-3dc1a9c85f4c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2413.664981814357 - } - } - }, - { - "id": "f5129671-0b6f-5cc6-a7e7-fdf20d732d53", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.1987193031828, - "y": -2380.364981814358 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2413.664981814357 - } - } - }, - { - "id": "8360f85d-815e-5536-af25-c68f038709c1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "fba81380-9f5d-5ad9-9bd9-02211b6f97a5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+14", - "basePoint": { - "x": 403.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "64d589ba-1156-542e-9a56-092603a644c0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "543ca045-7cdf-51a9-aa48-60b898af5368", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "14.00", - "basePoint": { - "x": 403.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "76366cbd-f6ab-5726-86e4-70e8462a1a29", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "336083ab-58df-5b17-8e7c-e975c6e93710", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2714.00", - "basePoint": { - "x": 403.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b9fb6588-d063-5e9a-8eeb-cc53e9ce11be", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "83e694c6-718c-5da8-a45b-22214f81bbe8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "387.10", - "basePoint": { - "x": 403.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "00c6daa7-bd20-5458-a2e5-bd19c3a7ff73", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "59e26dd5-f4aa-5896-8759-d29b9169e539", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.30", - "basePoint": { - "x": 403.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "66268de5-2b68-5c35-a96c-e2d4909db63e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "bf19da31-6560-51f1-ac3e-6ffb4d4f2ad4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "5.20", - "basePoint": { - "x": 403.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ac7932f5-e832-5163-a8cf-0045e3dd2a70", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "b203bed8-bf1d-5bd1-89b9-224073349d00", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 403.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "56b3b724-5425-5a08-9781-a9c05d89d611", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2406.464981814358 - } - } - }, - { - "id": "91411787-8731-540e-9e12-f8eeb501aee2", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.1987193031828, - "y": -2413.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2406.464981814358 - } - } - }, - { - "id": "2a0c47a3-411b-5c0b-a3f1-88cc0178a018", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "9ce44841-6a44-5650-ac3a-cd079e955918", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.136", - "basePoint": { - "x": 409.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4ffb8e53-4082-5169-967a-cbe918fdfb96", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "832b489f-3b25-5be7-bb3b-21ca9744d4e4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "6.00", - "basePoint": { - "x": 409.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3067ba9c-bb23-5973-b8c8-cb5bca6c3c47", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "c2f9d298-aa6f-5539-aaa0-2c275e5de6f5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2720.00", - "basePoint": { - "x": 409.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8c726432-ae8c-55ec-bdc1-d10b43225bc0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "62334480-743f-535e-8e11-b0199a58643b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "388.54", - "basePoint": { - "x": 409.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "05fb9ed4-1124-5f9f-a010-92a8fd61b19c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "eb72bda1-736c-515e-b54c-20c1581296ee", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.70", - "basePoint": { - "x": 409.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8c187f72-6443-517c-bafd-6428008e2f07", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "59f2aa07-bd89-5ffd-aa06-555c6e9ed8d7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.16", - "basePoint": { - "x": 409.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3cf0efea-2206-5919-91ab-7cedfd2bd967", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "55971492-747d-59c6-af7c-a816346a446c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 409.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "482f3dc0-321c-5306-b788-bb42e55a7af6", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2411.414981814357 - } - } - }, - { - "id": "c4ba74c9-5a0d-54d1-b1d2-23685f17bf3f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.1987193031828, - "y": -2406.464981814358 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2411.414981814357 - } - } - }, - { - "id": "57a98bc6-3263-5af0-ab79-df544d10b64d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "1ad4ead2-e349-51b0-bc22-7d417c0b1551", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+13", - "basePoint": { - "x": 422.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "62235c36-95f8-549c-9773-9341d39a7b13", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "76e27d1b-f128-5d31-b73e-d60ac544afef", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "13.00", - "basePoint": { - "x": 422.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "dc334f7c-fe3c-5775-9022-624aebb45364", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "19e7a0c6-c94a-543b-9791-86ff94101ee9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2733.00", - "basePoint": { - "x": 422.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "89def6f7-88f6-5303-8b65-4b3d5ff86626", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "3e6d6ba0-c484-5c24-a99f-717b525d0671", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "387.55", - "basePoint": { - "x": 422.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "56d89631-3fec-5469-8cb2-f1cf24b09fa9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "d3e5dddf-da7e-547b-9267-d6a94a299818", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.40", - "basePoint": { - "x": 422.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ade428b3-c8f9-5fe7-9d61-6d2ab8b1ed26", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "beede79b-6333-5438-8c82-8330ef680b2d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.85", - "basePoint": { - "x": 422.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "19474a46-eeeb-5dcb-9fe2-dc49442c12dd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "64d6fbca-4bcd-53a7-abb8-d5e2980d02d6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 422.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "1397fd4e-450b-5596-a05b-ec16024e72c1", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2396.814981814357 - } - } - }, - { - "id": "9039ad76-7404-524a-ba1b-f5d45c3b8845", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.1987193031828, - "y": -2411.414981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2396.814981814357 - } - } - }, - { - "id": "96f40f6e-6c59-5558-8889-ed24c6286aed", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "5048e7fe-155e-53f4-8ea1-3cbad2fc13a7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.137", - "basePoint": { - "x": 429.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5cdfd2f7-e4de-5c3d-b12e-64acbb007944", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "cff7cb03-15fc-5191-9fa7-b2a22e1a8c58", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "7.00", - "basePoint": { - "x": 429.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3ba3837b-1f3c-5ba9-9c6c-193d96420bf9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "b8bce7a0-f417-5731-b422-3be31b4e00b2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2740.00", - "basePoint": { - "x": 429.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7c7da3a4-c358-5a2f-b6a2-e6ab5dc3744a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "691f3ea6-7a76-57fd-993d-6ed730c0689e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.47", - "basePoint": { - "x": 429.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2d945a23-2ca4-58fb-b80b-1fa44cfdcc6c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "5ca9045c-4e56-5bc1-bd31-a9f5c7a38a94", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "389.70", - "basePoint": { - "x": 429.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9bacdab6-d3ef-5910-bf53-d4c218bd6792", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "7b393a87-22b6-54f2-be98-009d1f106df6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "5287a99c-1467-5070-a674-1f4449ac4cce", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.77", - "basePoint": { - "x": 429.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f5342e43-73b8-5897-816b-bb3862fc4d9b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 429.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "eeee3603-fdcf-5edb-ba7e-e5c647b289a9", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2386.814981814357 - } - } - }, - { - "id": "20a21bc6-dc36-5098-a6ae-34c75c2b3fdf", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.1987193031828, - "y": -2396.814981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2386.814981814357 - } - } - }, - { - "id": "e8ce9906-2460-56c7-8c01-c24711d2f02e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "4430badd-4d30-5414-98de-fe04138e1186", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.138", - "basePoint": { - "x": 449.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e96990aa-2cc5-5abc-a67b-f084277c0e12", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "b7544120-4661-5759-9338-08e0bf5df7f3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 449.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bc2267bd-72cd-5747-88b8-06f8822144ff", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "50240caa-3a50-5190-bbc9-37d648e171ac", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2760.00", - "basePoint": { - "x": 449.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "722f6224-7593-56a7-bf97-f4f2ea0f000d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "054b071d-e27f-5f3a-b8a1-8355f2de5eb2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.47", - "basePoint": { - "x": 449.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2cb6b906-034d-5e1f-b4c1-86e1c2a72ac6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "8e0ae40c-9124-5ccb-81b7-1e72b09fb6db", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "387.72", - "basePoint": { - "x": 449.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5f2f3f92-f865-5d5c-9546-96e6273eef9f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "0aa79287-3f9f-5744-b0f9-0d8446101f0a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "99f1d697-2c09-5abe-9d5e-fbb124d40e7b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "4.75", - "basePoint": { - "x": 449.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "45527df2-8e8a-571c-bb0b-5465a5be461f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 449.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "17b81bd1-1762-549b-97fb-8bfe96c451b0", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2422.814981814357 - } - } - }, - { - "id": "90464e2b-240d-5d4d-b876-d5c9b9b81e7e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.1987193031828, - "y": -2386.814981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2422.814981814357 - } - } - }, - { - "id": "16bec2ba-f2f8-57db-89fe-ff69892c3f1d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "7bf76271-ec75-57bf-9ebc-b0027c6bab3f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+17", - "basePoint": { - "x": 466.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "41b7e00a-196b-5f86-99a7-d14ae94c9999", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "8dba1ce3-e29e-544a-89e2-78f18ff9e81c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "17.00", - "basePoint": { - "x": 466.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5de13800-6ce1-5469-a05a-bfd0c09e1beb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "c53394bd-fceb-5989-b044-5d62c8365d2d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2777.00", - "basePoint": { - "x": 466.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7466e219-34c3-5b8e-b2ec-4cb1dbd3db17", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "cc49900e-2586-54e9-8954-115ba97754c9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "385.27", - "basePoint": { - "x": 466.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6389abf6-e890-5620-909d-e3f7376d8f0f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "b6e54846-1907-5e7d-a61e-b5ac52abe452", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "386.73", - "basePoint": { - "x": 466.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "49804976-d38f-5c83-9570-459b7c109a90", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "4d4157b3-3e77-5bdb-9558-4561ea7b9268", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.46", - "basePoint": { - "x": 466.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7d688ae5-8409-5c7e-aec8-fcb0817e68ee", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "0331effb-014a-5af1-a7ef-8fb0c910f11a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 466.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "c9c33b28-0192-57de-80fd-91986d4fed58", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2421.314981814357 - } - } - }, - { - "id": "3f23ab05-ba69-54e5-b9b2-008e392302de", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.1987193031828, - "y": -2422.814981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2421.314981814357 - } - } - }, - { - "id": "f9ef66c5-9e3f-5f42-b622-b5b555a09711", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "b08f128d-f178-521d-8eb4-92342b4490a5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.139", - "basePoint": { - "x": 469.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b69c3aee-7bc5-577e-8e75-a9f998658e62", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "1232b9c9-4bba-5db4-87ff-8075fc585faa", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.00", - "basePoint": { - "x": 469.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c4454fbd-987c-5226-9db1-bad078ad545e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "d7ca8bd0-4e04-5d53-b993-c76a00b8a733", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2780.00", - "basePoint": { - "x": 469.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "03360149-653f-568a-8e1c-d8557780dc91", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "3d629aec-0d27-586f-9393-3ac805715ac3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "385.57", - "basePoint": { - "x": 469.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ecad37bd-0da0-54ac-b134-1bed86b09965", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "ba03d89c-fbbe-5b44-9d90-ea68522cd8c1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "386.67", - "basePoint": { - "x": 469.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "610d4f2d-8847-5123-bb5a-dfdfe08a3983", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "cb253057-54ce-5bb5-831e-20791fce198f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.10", - "basePoint": { - "x": 469.198719, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "284a4def-55c8-5a31-bc2d-0ce84df86061", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "a860166c-57f8-5230-9043-61c42bf6da84", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 469.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "06b0f368-52e1-5faa-b9db-7b55d5a5f9ea", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2408.664981814357 - } - } - }, - { - "id": "6c0a8869-b308-544e-b2dc-e1f6d3d71f6d", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.1987193031828, - "y": -2421.314981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2408.664981814357 - } - } - }, - { - "id": "253eee49-2be8-5754-aab2-e233d4306fd8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "71f49ab9-6a0a-5bfb-ac19-e7d6b065bbfc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.140", - "basePoint": { - "x": 489.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8318a688-9311-56fa-8ddd-edd3db589e82", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "3af157ad-bed2-5704-9f0f-a2eb68ece7ab", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 489.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5eebe5e2-0528-523f-b93c-538d636ffaf4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "edc28399-6742-52ba-95fe-fc16632fc4c8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2800.00", - "basePoint": { - "x": 489.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7acbe1a6-8946-5c43-a22d-da2373d24dc3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "bbd345b8-da23-57a1-a8c7-2b23224ab70a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "388.10", - "basePoint": { - "x": 489.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "04a9abbf-423b-5701-b659-8eaad1bdd65b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "04eebcc8-bd95-593b-8b32-7fe692bedb89", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "387.08", - "basePoint": { - "x": 489.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b9bbd5eb-7f60-5c41-85f9-d29ebb0b7c4b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "a7aba559-e996-5337-a3f1-62752d408883", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "fd9ba371-2a67-5262-a619-664236d3dae6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.02", - "basePoint": { - "x": 489.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "29b7349e-fa93-571e-94c9-ac3ad7355d66", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 489.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "6616f5ad-4381-5744-8b0d-b9d1c03caa6e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2399.514981814357 - } - } - }, - { - "id": "0aaaa676-0bf1-5ddb-b996-52d74f95ebce", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.1987193031828, - "y": -2408.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2399.514981814357 - } - } - }, - { - "id": "6275998f-ac06-52fd-9b25-bdc78a492919", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "d6a5026d-316c-5c15-9781-6644a6eb31d0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.141", - "basePoint": { - "x": 509.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2453b7e2-4e3c-52f6-8c21-e99ecf43f629", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "fb31a565-5f83-5585-9a35-8ce693d6d8e4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 509.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9c12998b-5b1d-582f-a3ca-711c24ce7b30", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "f4a4e968-5c87-5616-aa41-f4c2da969513", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2820.00", - "basePoint": { - "x": 509.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c1b81374-a416-5ded-9421-31b7586dff86", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "3d1e87ec-d236-5ff0-9bd2-ec188e3a1ca4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "389.93", - "basePoint": { - "x": 509.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "303ed321-8f44-59f9-b2cf-49fb1dd10f42", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "0696ecaa-0b34-5333-af71-ea4c111f0462", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "388.02", - "basePoint": { - "x": 509.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "33d819d5-01fc-55b0-82e5-6fa191e86da4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "c5e85761-7166-53f8-843b-c704a8241fe4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "24790064-dc75-545a-ac98-ba8f54869016", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.91", - "basePoint": { - "x": 509.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "70feec22-6c16-58b9-80db-0ef410b3c213", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 509.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "34d104c9-1c13-5424-92ff-48af5cec5d72", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2394.514981814357 - } - } - }, - { - "id": "663ab4be-967b-5ed8-ac6a-764b32a24cef", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.1987193031828, - "y": -2399.514981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2394.514981814357 - } - } - }, - { - "id": "02f0132b-1298-5797-a761-741d26deed27", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "f30dde9f-c1a1-5439-8ce3-9c2168eb9409", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.142", - "basePoint": { - "x": 529.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "87b1bed3-9545-58a2-a6a3-551edc9c5301", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "783ed4d8-fa0a-5d11-aa95-58f98ac5a615", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 529.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "94a1603e-2902-5229-832f-444cefc7c71a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "75307e6e-eabc-5e3d-802a-3bf91b9aa4a6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2840.00", - "basePoint": { - "x": 529.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "262bc0e8-1543-5893-84d9-3b8d13c4aad4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "814114fd-b58e-50ea-b403-549153f83ab8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.93", - "basePoint": { - "x": 529.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e0e78f4b-4707-5d5a-90c5-b00aab57c22f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "d55f3802-092b-5f33-a736-c775ddcf19de", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "388.96", - "basePoint": { - "x": 529.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b85395e0-0030-5bdb-8dc9-5d55e8b379ea", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "3b8b5bb0-79f7-5c84-bed3-7640754a6d10", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "3196cc8d-a3cc-543f-bdcf-a1980807412e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.97", - "basePoint": { - "x": 529.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "211b91d4-133e-5f29-ab6f-f287cad66c11", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 529.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "aaca617d-62da-59ba-a027-525e9a59aafb", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2382.264981814357 - } - } - }, - { - "id": "78fdecbf-ae6e-5d8f-8421-1a7a3503735f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.1987193031828, - "y": -2394.514981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2382.264981814357 - } - } - }, - { - "id": "21e30935-16d5-5f24-b0bf-11f3fb05fd0d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "373eff8a-a69f-55ac-b9f1-746ad6b7c91c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.143", - "basePoint": { - "x": 549.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "dbfe2aa4-91aa-58a7-91e6-c860b84af95f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "c2168339-838e-5879-a255-cf8082eb4209", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 549.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bbe6f8ce-9337-53ba-a954-d926ff334496", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "d5645919-a827-578a-95cf-2a45aee978b0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2860.00", - "basePoint": { - "x": 549.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "23eede5c-105e-533d-96d6-e31f9b1902c9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "3ed9f5fc-d285-5909-82a5-fb2a453d8e3d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.38", - "basePoint": { - "x": 549.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fe0dddcc-9443-5e46-b9b0-3d2668054700", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "82a67d47-68f4-574f-97b0-e73d1f74dde6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "389.90", - "basePoint": { - "x": 549.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3759ae3a-d963-591e-89cd-688b237e4ee3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "b8976c61-0d4f-54d4-ad53-8012ea3267a0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "448d6b3b-aaa4-5f74-9237-b6a942f709e1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.48", - "basePoint": { - "x": 549.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a8acb429-0dfe-5c8c-99db-50fba25cfb48", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 549.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "8f1d580f-7b8d-5814-999f-a1efbc84f025", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2386.814981814357 - } - } - }, - { - "id": "9d217b95-872a-50c5-9956-4fd6728e5d92", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.1987193031828, - "y": -2382.264981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2386.814981814357 - } - } - }, - { - "id": "eed85160-701a-5ae6-a2de-386d6e006611", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "f0e756ae-1c45-5a45-aa3a-aa20acd8dd61", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+10", - "basePoint": { - "x": 559.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "99749be8-1e7c-5608-8f02-edcbc3e1c583", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "406e7721-41b7-5d62-8b5a-44b9cf0d3ec3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 559.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fecb2208-01c1-5095-ac35-20c9c55adf55", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "85aa467a-1e32-5f3c-82c2-9d8363593268", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2870.00", - "basePoint": { - "x": 559.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "49a6d10b-7f6f-5e90-846a-d2bc96d56805", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "6844c6ac-0bb7-5c3b-9840-58d86067af88", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.47", - "basePoint": { - "x": 559.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fc7bcd1b-724b-53b4-9ada-15e962c5ee68", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "043ef305-924e-5f7b-bf3e-3d865d5bb65f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.42", - "basePoint": { - "x": 559.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "026f7d2e-797c-5242-b55b-035bee1211cc", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "b519ba98-2de3-508d-a08b-feebc15c33fd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "8c18886a-127e-5ba8-8242-14b1ce3e0a8c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.05", - "basePoint": { - "x": 559.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0b7470d2-5ba8-523d-9a6b-fe3e37df3b98", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 559.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "37012713-faf4-5b67-bc6f-fd2249d0bce7", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2376.414981814357 - } - } - }, - { - "id": "2e59b8f9-f936-5ca6-960a-45cb500c19d2", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.1987193031828, - "y": -2386.814981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2376.414981814357 - } - } - }, - { - "id": "229e27ab-8990-5dba-a6cd-1731ed0358c6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "973d6c53-9f6b-5052-8996-97100f84eda6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.144", - "basePoint": { - "x": 569.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1885e9ba-a08b-5c34-82b8-26ea294a1758", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "23e66284-d637-5b88-919d-55a4ade99bb9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 569.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8344471b-2e14-59cf-9295-eecb1be584b1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "033dc12e-21da-5248-9079-3e5049699e28", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2880.00", - "basePoint": { - "x": 569.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7cd6371f-5065-55b2-9ece-e5d444563b89", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "dc52347a-83a0-578e-8ea1-996ca19ac99c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.55", - "basePoint": { - "x": 569.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4422401b-70aa-5a32-aaf6-84bce66d971c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "e6352c40-95aa-565d-a870-b8d36b03b2b6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.93", - "basePoint": { - "x": 569.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "75ab49cb-b1f1-5948-b9ad-5c8652344a40", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "0d7c7d25-6c0e-58b1-aa2c-2a7d281e0e3f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "a5c491f6-dd28-5838-9439-cadd78c79f07", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.62", - "basePoint": { - "x": 569.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a1c193cc-dd52-5d0d-8719-86f8f08ee324", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 569.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "5dbe748a-225b-5863-ac3a-0a104afddc8d", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2382.114981814358 - } - } - }, - { - "id": "b4df2928-b406-5476-9694-8addd5ed632f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.1987193031828, - "y": -2376.414981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2382.114981814358 - } - } - }, - { - "id": "172df519-2229-5c0d-8bfd-7f31ff83e7e6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "3a40ba8e-c0d7-53c4-ad9c-b7dd3b58c443", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+10", - "basePoint": { - "x": 579.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ba6d6786-62ec-5210-9bdd-38aedc378c0c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "8b63143b-199b-5776-83a1-2f090ed3a265", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 579.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e94dca0a-0632-5a97-87c8-60f2ed4a0e27", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "f7b27f7b-320a-5046-9355-2caf59167cd0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2890.00", - "basePoint": { - "x": 579.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a9845012-cca1-5e01-a3c5-5b21ae885c09", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "28cf7d67-7192-5397-812a-6033e3d83e79", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.41", - "basePoint": { - "x": 579.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b84fba33-c9e2-5e64-8575-6ca3ccfde9a6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "2ac2eaeb-b5b6-5a14-a163-efd47eb73938", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.45", - "basePoint": { - "x": 579.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b4a74c0d-a6f1-5d8b-8e37-6cc910ec33db", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "90a5635c-3318-5f49-a41c-653882fd6b5b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "41160483-3a5a-59e9-be86-bdfb5895443c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.96", - "basePoint": { - "x": 579.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "58a3dbd3-a5fe-58fe-80ee-e360d910242d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 579.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "65e0d5ba-2977-5c02-9073-d6774f82ae4e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2376.964981814358 - } - } - }, - { - "id": "60c460ab-2285-5422-a395-a9b28b73b203", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.1987193031828, - "y": -2382.114981814358 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2376.964981814358 - } - } - }, - { - "id": "6217eddb-bcdd-5e0d-ba7d-d1ac834426c6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "b31d7137-3fbb-5543-92a6-e0df12ee36b3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.145", - "basePoint": { - "x": 589.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "37ae6aa5-9758-5738-bf50-2ad436d314e1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "2b31fec9-0a41-5e9b-8705-6229fbc66b9a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 589.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5469f6ab-cb36-50de-b916-8907902c35e0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "2c06ab2a-a106-5b6a-b7b2-e81f42d17225", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2900.00", - "basePoint": { - "x": 589.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c9699bb6-8ad9-5d06-b1fe-091eee3c24b7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "de5cee8e-86ca-5700-8a5c-8cb92d1ed5cf", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.44", - "basePoint": { - "x": 589.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ef62a13b-db06-5e04-85b1-82fce075dadb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "ad5f6033-7fd0-5a46-b22b-168a5ea41822", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.97", - "basePoint": { - "x": 589.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cfabe377-d0f3-523c-8e21-5b36cccd4934", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "74eb2b67-32f4-50d1-b246-16b0fd5d4ebc", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "d12d25a2-c1bc-560c-9b50-d0c563b2a681", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.47", - "basePoint": { - "x": 589.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2ff0faa0-48fa-55dc-b0f7-c72b80e0dbe9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 589.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "32bccddc-bd63-558b-a570-d423d2934893", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2374.414981814357 - } - } - }, - { - "id": "9382db2c-b600-5157-a8d0-a62cc991f0d1", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.1987193031828, - "y": -2376.964981814358 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2374.414981814357 - } - } - }, - { - "id": "728cf90e-95da-5eb4-9b3d-3d0d0568d8e3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "ce6c9db8-788f-5eee-a1f6-a765168e5f4c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.146", - "basePoint": { - "x": 609.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3eeff3c1-4bbd-5201-bcd4-0362a3d0cbaa", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "910693a0-f44d-5e28-afb1-a8e47f3095d3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 609.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a2ee74f8-76f0-5966-8c80-68d6e9a3a010", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "e60fb445-9c81-5c45-af83-6035bd692534", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2920.00", - "basePoint": { - "x": 609.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "41edf74e-a9a0-5b4e-8df8-c0a2c4d6750c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "01312f7b-ad14-59df-8d2a-f3b2ff18d3e3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.95", - "basePoint": { - "x": 609.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "586cb779-94b5-5c6b-ad7f-b69b053b18c0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "117cf927-1313-50ad-b632-97dc508bef7a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.00", - "basePoint": { - "x": 609.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c78959e4-c70c-547b-be55-551dd552cdf4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "9a7deef7-4e4e-5379-9a97-a622ec448bd6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "fd1fcf73-f7d0-56fa-860f-fe567fcff5fa", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.95", - "basePoint": { - "x": 609.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "39fac4fa-b06d-54ad-84fa-91c227a943bc", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 609.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "9f20bf71-22c0-5809-a278-803ded2fc39b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2371.764981814357 - } - } - }, - { - "id": "c609658a-ed59-5d13-b889-72b5b51ed943", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.1987193031828, - "y": -2374.414981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2371.764981814357 - } - } - }, - { - "id": "7a544865-c3c4-5211-bdda-a6379abc790a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "1594a806-bc97-5d42-bd27-0836267f12f8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.147", - "basePoint": { - "x": 629.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4b5ce8bf-ae01-5180-af8a-0d8e844eced4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "775a6327-d48f-501f-a028-36a84eff5663", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 629.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8f18216e-4d73-5665-ba99-59f467d9b2f8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "82bd26dc-3b8a-530c-8294-8c26cf57630d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2940.00", - "basePoint": { - "x": 629.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "62896257-f3f6-5d17-a085-30d6f9120eb0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "474f3131-70a0-5c29-8ae2-7ac9c7e8cf48", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "395.48", - "basePoint": { - "x": 629.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8ec4c82d-3a02-510b-a3f3-4bd7ec0ad8e0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "eaaba9ce-b885-55f3-aa7e-7140f7240339", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.98", - "basePoint": { - "x": 629.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "82b4281c-79ec-5073-8e72-5d3090594180", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "9d9f2304-04ef-592f-b4df-3815faa62913", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "e1faefca-bdee-56c7-a604-26b6373ac8d3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.50", - "basePoint": { - "x": 629.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e8616fc9-93da-57bc-9b9d-188e94154d14", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 629.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "d6414ad8-de5c-5758-a738-88c7516ade71", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2368.314981814357 - } - } - }, - { - "id": "39ee992a-c0e4-5250-9237-0de9d737d4e6", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.1987193031828, - "y": -2371.764981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2368.314981814357 - } - } - }, - { - "id": "9b86165e-cbf7-5a14-a29b-59c5e3953352", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "f67e0de4-91f7-5fe5-9e1c-f8741a69191e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.148", - "basePoint": { - "x": 649.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "731595df-e766-55f1-ad0c-049dbc35bf95", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "a5c270b4-f6e7-51cf-8196-49ababfd6710", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 649.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5291547e-8717-542c-99d2-1daefb17f152", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "8d1897fb-080a-51ac-8d27-e719a60660ff", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2960.00", - "basePoint": { - "x": 649.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "190a16c0-43b0-5179-a804-ee389707fce7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "45e6becd-c0a2-5ce5-8053-4e9901717de9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.17", - "basePoint": { - "x": 649.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "96f73bc1-8d57-5683-bea8-b26b87e0c2ed", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "e5715d84-a714-5bcb-879d-221f89012fc6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.95", - "basePoint": { - "x": 649.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d57686e7-2faa-57ee-be77-9c20c6d8fdd3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "66e9cd65-2b01-53ef-9422-5c19419b0fc5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "21162358-1534-51dd-b89b-f1d0a9e2c47c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.22", - "basePoint": { - "x": 649.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "938d81c6-fd02-5157-b847-ced8eea08f53", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 649.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "9182e161-5de6-5ee1-b532-d08944acd304", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2360.814981814357 - } - } - }, - { - "id": "bcfddf1c-dece-5ea6-906f-7746ff82e6a6", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.1987193031828, - "y": -2368.314981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2360.814981814357 - } - } - }, - { - "id": "ced11c22-b168-5c1c-a1d5-89883b40cc52", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "5daffd83-8dcd-5453-a632-813a3153a54b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.149", - "basePoint": { - "x": 669.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "af66d602-3649-512b-8c26-da6a4c9327bb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "2d76ec59-7ac2-52c3-9ce8-2fc7ebfad0df", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 669.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "74ed4d5a-518b-5f7b-8983-c1c194ae3cd5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "4450affc-798e-5e2a-85d8-7f4a3ed26cf4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2980.00", - "basePoint": { - "x": 669.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7b617923-fdd5-5302-835f-c9434a695902", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "c9b9d9e9-0edc-5ccf-839a-36bb0883967c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "397.67", - "basePoint": { - "x": 669.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f74edf08-5e1b-57dd-82bd-ee471620fd4a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "72ffad38-462f-579f-8b45-aa9556218e23", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "395.93", - "basePoint": { - "x": 669.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e46ceea2-db62-54f5-87c2-9d81379601db", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "26634503-b6d3-5fb4-a4d5-ae466237d9fe", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "53671d0c-5b83-5eda-b57f-b7f483f1e175", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.74", - "basePoint": { - "x": 669.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "20e3e6e7-5636-554e-991d-a279366ab544", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 669.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "eb2892fc-c64b-57c0-a454-cf4b1dd1214d", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2350.064981814357 - } - } - }, - { - "id": "62ea6a60-3902-5725-946e-5316f0db1217", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.1987193031828, - "y": -2360.814981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2350.064981814357 - } - } - }, - { - "id": "487710cb-d911-5a23-8cc5-6682d54f6663", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "cc85dbf6-c33c-5c73-9f59-a37f3985b22a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+10", - "basePoint": { - "x": 679.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "90a19cf6-d252-5bda-8367-f74a8d8310ac", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "16f302ee-d752-5a13-8df1-54029d0c2f2f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 679.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8d74db22-2e9e-567a-8f10-ed5b2e2fb1b8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "b6a1e018-db3d-5ea8-8576-18971a75f79e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2990.00", - "basePoint": { - "x": 679.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3f48e737-39aa-59df-8bdf-e36c87268c95", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "c2660107-7fdf-5760-9ef2-3ec8d2b0f387", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.82", - "basePoint": { - "x": 679.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3e1512f0-1e6e-5dcd-ad35-bf7dc3d2fb46", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "1203de4a-657d-5c2e-a130-e7ef023a000a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.41", - "basePoint": { - "x": 679.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1e916b6e-6468-50bd-ab19-14ab570e8263", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "6ebc498d-2d60-580b-aca2-8ce0235beed2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "60d6cfd8-0704-5e4f-9c09-89928b1897ae", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.41", - "basePoint": { - "x": 679.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9e292349-6148-5447-8d78-835ce2add438", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 679.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "c6aa01e4-25b1-5eff-ac87-68712f435fe9", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2359.864981814358 - } - } - }, - { - "id": "3bab8dce-a5a2-5548-952c-bdab64e6f2b3", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.1987193031828, - "y": -2350.064981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2359.864981814358 - } - } - }, - { - "id": "0235240b-817f-56a6-9753-3cccc01be0d9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2583.664981814357 - } - } - }, - { - "id": "dd2ffeff-7a70-5217-8b8f-1217cdfda886", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.150", - "basePoint": { - "x": 689.198719, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3e5f22e3-33c8-531e-8b3b-b7ebaa9e5a8b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2568.664981814357 - } - } - }, - { - "id": "080dd573-ed73-5b03-9ea2-33332379af25", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 689.198719, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e18c845c-3bd2-530f-94e8-8ace1a77ff3e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2553.664981814357 - } - } - }, - { - "id": "c8d9871a-1118-5e74-ac47-a89f22f82cb7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3000.00", - "basePoint": { - "x": 689.198719, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ac5c1c63-5316-597a-9e9f-91baa8db6ab1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2538.664981814357 - } - } - }, - { - "id": "f9ff417a-e6be-50a6-8a75-2c739e6fb51f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "397.86", - "basePoint": { - "x": 689.198719, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ae7d1c44-63a2-59c8-bee1-8cf3f4d2202e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2523.664981814357 - } - } - }, - { - "id": "b16d495f-1fe6-59c3-a597-f9801f134015", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.90", - "basePoint": { - "x": 689.198719, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "96803c3e-c506-57d4-b621-4f78e400f61b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2508.664981814357 - } - } - }, - { - "id": "47467ab5-58cf-573e-a50f-fa65a4576968", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2493.664981814357 - } - } - }, - { - "id": "2ae681be-af70-5cd3-8615-1f688dd35173", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.96", - "basePoint": { - "x": 689.198719, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7f5e28b6-01cb-5151-978e-6dfb58331ccc", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2479.164981814357 - } - } - }, - { - "id": "4b7f31b7-9b42-58be-a2de-e9aa38f29497", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2454.164981814357 - } - } - }, - { - "id": "486b64bd-c27a-553b-b44c-3a0e920a00f3", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.03", - "basePoint": { - "x": 189.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a62df604-3c4e-5525-9bee-601f5a6963fe", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.56", - "basePoint": { - "x": 204.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f00eb03c-4db9-5151-a967-a65ba40d4a0e", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.31", - "basePoint": { - "x": 209.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e7516372-a7a2-5fce-baa7-e875fd790c37", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.01", - "basePoint": { - "x": 221.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "42d5c3ae-3d96-5c6c-9c2d-edf74a469df1", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "-0.75", - "basePoint": { - "x": 249.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "343ec007-cf19-52b5-81f8-bcc665d03779", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.02", - "basePoint": { - "x": 449.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4f970573-8815-59da-bee4-3cae910fb584", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.73", - "basePoint": { - "x": 466.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "48b3ede5-fc66-5573-8b3b-4380ea1137b1", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.53", - "basePoint": { - "x": 469.198719, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6a49fadf-af9b-5fc0-b5c5-395c5e658d17", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 184.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 224.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "e34c96d3-1a25-5fa2-9d6b-5e18526c3262", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 184.1987193031828, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 184.1987193031828, - "y": -2428.364981814357 - } - } - }, - { - "id": "f9a3e175-1c30-5717-ad0b-aa59917a1f13", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 188.498719303183, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 184.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "b9509fe0-80a8-5477-85f9-65f4057db41c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 184.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 188.498719303183, - "y": -2441.964981814357 - } - } - }, - { - "id": "6138b90a-8951-5022-a7a5-0a9b258172ba", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 224.1987193031828, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 224.1987193031828, - "y": -2428.364981814357 - } - } - }, - { - "id": "79e40b96-0f20-59fc-a00e-7268803f88a8", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 219.8987193031826, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 224.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "524e0e5f-704d-5b50-867c-1df25848da68", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 224.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 219.8987193031826, - "y": -2441.964981814357 - } - } - }, - { - "id": "1592e243-f123-5681-8a6b-f70b085f394b", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "L=40.00", - "basePoint": { - "x": 204.198719, - "y": -2443.364982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f7160382-4f7a-5142-9c07-2f90020571e8", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "K=3.59", - "basePoint": { - "x": 204.198719, - "y": -2446.864982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5abdbeed-0b93-5fd9-9463-8ed40cae07fa", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "BVC= No124+15 (EL=405.38)", - "basePoint": { - "x": 186.448719, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "70531b2f-886b-54c3-989a-4395218c5ea5", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "EVC= No126+15 (EL=405.65)", - "basePoint": { - "x": 221.948719, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e165ecbf-b660-54a2-8dbb-c46043e05068", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "02acd75b-99f3-52ad-a0ea-3f12bd9749aa", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2428.364981814357 - } - } - }, - { - "id": "4e3bb8c6-dbf5-511c-b3ec-2faadbc3f48e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 233.498719303183, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 229.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "6d70ef7e-80d2-55f4-84d4-047e35c2744c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 229.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 233.498719303183, - "y": -2441.964981814357 - } - } - }, - { - "id": "9c6b018e-a554-59b9-9fcc-874fc2bdd12e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2428.364981814357 - } - } - }, - { - "id": "a0ae2939-27cc-559f-81f0-83d55eb8dd63", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 264.8987193031826, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 269.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "b98a87a1-316b-5b97-b42e-f48aee30d741", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 269.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 264.8987193031826, - "y": -2441.964981814357 - } - } - }, - { - "id": "f69e0587-1aad-5c7b-9ce5-f7542ea5cfba", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "L=40.00", - "basePoint": { - "x": 249.198719, - "y": -2443.364982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5993db2d-02c4-50af-b439-09dc67564ac9", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "K=2.66", - "basePoint": { - "x": 249.198719, - "y": -2446.864982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c304df5b-ac4f-5eb0-9874-ecfc9a901678", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "BVC= No127 (EL=405.96)", - "basePoint": { - "x": 231.448719, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ccb89ff2-aec5-59f5-8ae9-342052eab6d1", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "EVC= No129 (EL=405.43)", - "basePoint": { - "x": 266.948719, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c438bd8f-98f3-5821-8722-2302aa0763a0", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 446.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 486.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "bb616bab-f93a-54cf-ab86-b7c6827fd17d", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 446.1987193031828, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 446.1987193031828, - "y": -2428.364981814357 - } - } - }, - { - "id": "71809fa5-19b5-549d-ad04-efc8dbeffbf8", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 450.498719303183, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 446.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "2ac15585-adb6-598a-9e81-c739a954cd68", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 446.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 450.498719303183, - "y": -2441.964981814357 - } - } - }, - { - "id": "0075d886-dcf0-5067-afee-3966b2514e86", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 486.1987193031828, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 486.1987193031828, - "y": -2428.364981814357 - } - } - }, - { - "id": "fe3d7eac-e92f-52f7-875e-a09c5e96c66b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 481.8987193031826, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 486.1987193031828, - "y": -2440.864981814357 - } - } - }, - { - "id": "386742a8-d919-5019-bc05-4d26d5fa4917", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 486.1987193031828, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 481.8987193031826, - "y": -2441.964981814357 - } - } - }, - { - "id": "9262e322-53b0-597a-b699-1ba902855ed8", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "L=40.00", - "basePoint": { - "x": 466.198719, - "y": -2443.364982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c8731e5c-095c-5d32-b0cf-a98265603b40", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "K=2.72", - "basePoint": { - "x": 466.198719, - "y": -2446.864982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "24a86b72-1e03-5e7a-b92e-e797d9302501", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "BVC= No137+17 (EL=388.00)", - "basePoint": { - "x": 448.448719, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "14d3ec39-6c0f-5cb4-b62b-1525f74107f0", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "EVC= No139+17 (EL=387.02)", - "basePoint": { - "x": 483.948719, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e0e32172-bbc6-536f-aa91-6f0b9bdae0af", - "type": "Arc", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 89.19871930318277, - "y": -2471.664981814357 - }, - "radius": 7.5, - "startAngle": 4.71238898038469, - "endAngle": 1.5707963267948966, - "counterClockwise": true - } - }, - { - "id": "c0d1e058-4c2c-5884-ae1a-94a050e03d1d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "409.96", - "basePoint": { - "x": 89.698719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "19e91065-d6ec-5d9e-bf9a-6712e14d02be", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 89.19871930318277, - "y": -2464.164981814357 - } - } - }, - { - "id": "f70956eb-dcbc-5b39-981a-b9f413bcf261", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 149.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "4096b3b5-63e6-55a2-aeef-6a8d7afbe523", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "407.10", - "basePoint": { - "x": 149.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "32b74e84-2805-5ca3-a0b2-e6a42231c2b0", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 204.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "b1232d99-d120-5b36-8b73-c5d87633aabd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "404.40", - "basePoint": { - "x": 204.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a1690067-3662-58dd-b9f4-76da320c1667", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 249.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "96cb66e2-22d6-518f-9699-0a89e38632ad", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "407.20", - "basePoint": { - "x": 249.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "72e2aa33-ef47-56a1-8bd5-320ad180633f", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 309.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "1ecf8054-958b-5539-b500-19ff5c95f31f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.90", - "basePoint": { - "x": 309.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "94a7f520-f6c2-5a37-abdf-86d71f5420ca", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 403.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "4f85a761-d59b-564c-ae46-f70eb55d0515", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.30", - "basePoint": { - "x": 403.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "eafa838d-d4eb-5218-aab2-fa1320c2dab6", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 466.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "a530a57a-f6b6-5e33-ac49-d1f07a14e237", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "386.00", - "basePoint": { - "x": 466.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "31a30b02-81e9-51fb-a5f1-530b197d891b", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 549.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "e0f5101d-c85f-5121-ac7a-9e88e8b610b7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "389.90", - "basePoint": { - "x": 549.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bcd4051d-c3b8-5e7e-89df-bf665279beec", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 609.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "88515f4c-4a94-56c0-a9db-2eeff5b718c7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.00", - "basePoint": { - "x": 609.198719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1048ea13-85b7-5bad-a92a-5a18c64c6c78", - "type": "Arc", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 689.1987193031828, - "y": -2471.664981814357 - }, - "radius": 7.5, - "startAngle": 1.5707963267948966, - "endAngle": 4.71238898038469, - "counterClockwise": true - } - }, - { - "id": "44314f00-7593-581e-a236-b9a0637c0b86", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.90", - "basePoint": { - "x": 688.898719, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8a8fdd25-0c00-5e74-850e-635de9dc8a5c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.1987193031828, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 689.1987193031828, - "y": -2464.164981814357 - } - } - }, - { - "id": "e0744767-cfde-51bd-8e25-0b623c6728b4", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 92.00826930318271, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 146.3891693031828, - "y": -2478.618861814357 - } - } - }, - { - "id": "4246c513-6d59-5f53-9c85-848a445c5a95", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=60.00m", - "basePoint": { - "x": 119.19872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ea47b965-2a78-5a3b-abe4-6f13a321cf94", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-2.86m", - "basePoint": { - "x": 119.19872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "eb0d1af7-3f92-58f9-9e58-f31eccfb2924", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-4.77%", - "basePoint": { - "x": 119.19872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3b4f6d5e-878a-56e9-b3fe-f38fb4f8e8ef", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 152.0082693031827, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 201.3891693031828, - "y": -2478.618861814357 - } - } - }, - { - "id": "2a4275e7-b43d-5f06-8db5-cbc660448925", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=55.00m", - "basePoint": { - "x": 176.69872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2f499c3c-5ee0-571e-a94e-2a44d76f7fbd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-2.70m", - "basePoint": { - "x": 176.69872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0eeeecb6-c49f-50de-a772-bb355aaac355", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-4.91%", - "basePoint": { - "x": 176.69872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fdf029f3-288d-5e6c-b895-ada3b83e9d94", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 207.0082693031827, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 246.3891693031828, - "y": -2464.711101814357 - } - } - }, - { - "id": "0980b17d-fb49-5314-9f19-9a3c63bec4eb", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=45.00m", - "basePoint": { - "x": 226.69872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "07a5007e-e628-5aea-85ae-0923181b388e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=2.80m", - "basePoint": { - "x": 226.69872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "89142c55-8f81-5ce7-b223-f134e9ef24b8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=6.22%", - "basePoint": { - "x": 226.69872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3f11f4a3-35e5-5249-9b40-d84e82ffc868", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 252.0082693031827, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 306.3891693031828, - "y": -2478.618861814357 - } - } - }, - { - "id": "de1e8e8b-4361-5a74-b2fe-2310686ff405", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=60.00m", - "basePoint": { - "x": 279.19872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f9478fdb-86da-5949-a5df-573d3030fa6b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-5.30m", - "basePoint": { - "x": 279.19872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b774d7e2-62b3-5a04-be63-238a5121fd61", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-8.83%", - "basePoint": { - "x": 279.19872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1afe809f-83b7-5896-aa55-f1fde0c0dc94", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 312.0082693031827, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 400.3891693031828, - "y": -2478.618861814357 - } - } - }, - { - "id": "2a0b6af5-5be8-5131-9ca2-2a918496eb0d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=94.00m", - "basePoint": { - "x": 356.19872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "852a93fa-2e8b-56a8-a04d-3d328494157c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-9.60m", - "basePoint": { - "x": 356.19872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "27a67eab-b075-515b-a77e-ca19f256815f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-10.21%", - "basePoint": { - "x": 356.19872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6105385b-48ad-5f86-b1ba-7e17d6ed7220", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 406.0082693031827, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 463.3891693031828, - "y": -2478.618861814357 - } - } - }, - { - "id": "f525a63a-070a-5cbc-812d-173232a2c112", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=63.00m", - "basePoint": { - "x": 434.69872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9a2e31f7-b50c-5eb9-a79c-9d3093833374", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-6.30m", - "basePoint": { - "x": 434.69872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1ccf37ab-cb4b-5d2a-8476-d5196685f155", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-10.00%", - "basePoint": { - "x": 434.69872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6eb14b87-e8d9-52dc-8d37-8cc9a7dd7a07", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.0082693031827, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 546.3891693031828, - "y": -2464.711101814357 - } - } - }, - { - "id": "a87ff0bf-a083-5da0-a09e-e6d8e5118b63", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=83.00m", - "basePoint": { - "x": 507.69872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a3a1f1c4-1da4-5e9f-9935-27db76e1e08b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=3.90m", - "basePoint": { - "x": 507.69872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c0cedeed-df3e-5f95-8bb1-3a3196159810", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=4.70%", - "basePoint": { - "x": 507.69872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bcf6343c-b932-5bcd-981e-80c2a4b765d5", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 552.0082693031827, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 606.3891693031828, - "y": -2464.711101814357 - } - } - }, - { - "id": "da9c31e2-27bc-5ff0-8ccb-79ec469b6cc5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=60.00m", - "basePoint": { - "x": 579.19872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c7edc660-3949-5b80-aaa1-c0baa61ee2e9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=3.10m", - "basePoint": { - "x": 579.19872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7a6d2fa1-efd9-586f-9021-672c7d6693cc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=5.17%", - "basePoint": { - "x": 579.19872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9861677e-ce2c-50a7-b72c-97282b03c350", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 612.0082693031827, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 686.3891693031828, - "y": -2464.711101814357 - } - } - }, - { - "id": "c654f872-1c05-5ada-a4f9-e1558456cf4b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=80.00m", - "basePoint": { - "x": 649.19872, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d16d58e7-2ddf-593f-b229-100c45b2d054", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=3.90m", - "basePoint": { - "x": 649.19872, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "731cb692-8cfb-51ce-9417-782c1930f9c7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=4.87%", - "basePoint": { - "x": 649.19872, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b15b5e11-fcaf-5099-84a2-4fbbaeffd404", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "40b376c7-3924-530b-b9a5-ee94ac986854", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2454.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2294.164982 - } - } - }, - { - "id": "e31b86b0-f35d-56f0-9d4f-32fe92915b6f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2294.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2294.164982 - } - } - }, - { - "id": "801e98a9-79bc-539c-b05f-8259f120171a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2294.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2454.164982 - } - } - }, - { - "id": "ada43c89-88a7-5e01-ac62-de01825a8c3b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2454.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2454.164982 - } - } - } - ] - }, - { - "id": "6b148942-ab6c-518a-b2f8-84c713367f6c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 75.19871930318277, - "y": -2454.164981814357 - } - } - }, - { - "id": "eea64c51-ab10-5f16-a5e4-702c54b2313f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "379.00", - "basePoint": { - "x": 59.198729, - "y": -2453.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e831875f-5bc7-593c-8864-6755d4df097d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2449.164981814357 - }, - "endPoint": { - "x": 75.19871930318277, - "y": -2449.164981814357 - } - } - }, - { - "id": "778d5010-3d2e-5655-809f-cd018b9880db", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "380.00", - "basePoint": { - "x": 59.198729, - "y": -2448.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "770980d9-fbc3-5922-8b6d-928e6116fd2e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2399.164981814357 - }, - "endPoint": { - "x": 75.19871930318277, - "y": -2399.164981814357 - } - } - }, - { - "id": "a80267dd-c080-56a8-9310-9b5bb98220b0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.00", - "basePoint": { - "x": 59.198729, - "y": -2398.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "17e23c93-e325-5447-b0aa-bcbb64095601", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2349.164981814357 - }, - "endPoint": { - "x": 75.19871930318277, - "y": -2349.164981814357 - } - } - }, - { - "id": "a25dce5e-460d-51ae-8090-68fa37c04577", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "400.00", - "basePoint": { - "x": 59.198729, - "y": -2348.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "43ed0a43-5b65-5535-9543-40ef7812b5ac", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2299.164981814357 - }, - "endPoint": { - "x": 75.19871930318277, - "y": -2299.164981814357 - } - } - }, - { - "id": "12ff03d3-9fdf-5e5c-82f9-f10a07731f28", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "410.00", - "basePoint": { - "x": 59.198729, - "y": -2298.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "82c4276d-dc0b-5ef9-8b6a-6ec50d505f51", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 59.19871930318277, - "y": -2294.164981814357 - }, - "endPoint": { - "x": 75.19871930318277, - "y": -2294.164981814357 - } - } - }, - { - "id": "9424175a-405d-5a26-9968-d23004718ae0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "411.00", - "basePoint": { - "x": 59.198729, - "y": -2293.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "945104b6-ff53-59b2-86d2-1e254b17fd1b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2449.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2449.164981814357 - } - } - }, - { - "id": "edeb36d8-5e6d-5b9c-bf9c-9a32a142e02a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2439.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2439.164981814357 - } - } - }, - { - "id": "08e6b712-e24a-5a14-adfa-1e4454210ccf", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "5f633c3c-05fd-53f3-8657-112ef3fa284b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2449.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2439.164982 - } - } - }, - { - "id": "62731018-3358-5078-95b1-8ca18c92ae61", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2439.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2439.164982 - } - } - }, - { - "id": "4fed3974-01ea-5167-96e2-afe6ea295d3d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2439.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2449.164982 - } - } - }, - { - "id": "31842500-8723-5f83-a4f0-5d739082aa9e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2449.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2449.164982 - } - } - } - ] - }, - { - "id": "94e9546c-ad26-5259-ab3e-411afb400c6b", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "2923d18b-74ec-586a-8001-2dfe056adc12", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2449.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2439.164982 - } - } - }, - { - "id": "e898d64b-fdbf-5d8d-8833-070f61b1b8a0", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2439.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2439.164982 - } - } - }, - { - "id": "b6a66c2c-8b8f-5f69-bc24-07b85e7e0725", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2439.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2449.164982 - } - } - }, - { - "id": "22cc87ea-3fcb-5196-a88c-52582899b83b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2449.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2449.164982 - } - } - } - ] - }, - { - "id": "f2dd35d6-5493-563c-a998-073684e7e3db", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2429.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2429.164981814357 - } - } - }, - { - "id": "4c46e153-9db6-5b33-87dd-2e5b5aaffb0a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2419.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2419.164981814357 - } - } - }, - { - "id": "7794c6f5-ca4c-5fd9-ae97-1cd3630fd4f5", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "c3fc91f6-ac55-5b8c-8440-06e98738245c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2429.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2419.164982 - } - } - }, - { - "id": "b178602e-7a90-58ad-a20f-a330754efdcb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2419.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2419.164982 - } - } - }, - { - "id": "6d5cda96-f788-56b7-b383-1a3249f23abb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2419.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2429.164982 - } - } - }, - { - "id": "0bf41ef0-7f27-5ae2-9713-50d1c1b6200c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2429.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2429.164982 - } - } - } - ] - }, - { - "id": "66ad233d-149e-5203-94b5-112bbc3812f4", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "f6d1c5c9-3892-5ff6-93e0-07dd3c5e6334", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2429.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2419.164982 - } - } - }, - { - "id": "211bccec-1cd2-58e2-912c-aa58d4ef1539", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2419.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2419.164982 - } - } - }, - { - "id": "72f5a58b-a8ae-5ee8-8357-5ef993dcd500", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2419.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2429.164982 - } - } - }, - { - "id": "cf0a4968-a0f7-50e9-a568-a05b3fcaea31", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2429.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2429.164982 - } - } - } - ] - }, - { - "id": "e775a6c9-da45-52a8-898e-3a4158ca49b3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2409.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2409.164981814357 - } - } - }, - { - "id": "cee386c1-b741-5410-91df-1a426939fc24", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2399.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2399.164981814357 - } - } - }, - { - "id": "deca4486-b210-544c-860c-95eade4412bd", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "339e20f1-30bc-528b-9389-888d8c381bcb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2409.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2399.164982 - } - } - }, - { - "id": "45a4246e-d3fe-5242-bcf9-90214a6319d0", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2399.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2399.164982 - } - } - }, - { - "id": "1664b68c-9756-5c0a-8fec-0bc9c9a07729", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2399.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2409.164982 - } - } - }, - { - "id": "a19c0acf-7471-5c28-a6b9-c0c8075a3451", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2409.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2409.164982 - } - } - } - ] - }, - { - "id": "99dd4e81-e635-513b-a6ba-d934bed4d3c8", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "b6729617-a271-5ec3-adab-f69db5d73577", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2409.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2399.164982 - } - } - }, - { - "id": "334a67ac-7f8f-56da-9f6f-58928d171164", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2399.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2399.164982 - } - } - }, - { - "id": "db75a9e9-860a-5127-beaf-328c70bab372", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2399.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2409.164982 - } - } - }, - { - "id": "85721310-3dab-507d-8c9c-8f98f68ad4d5", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2409.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2409.164982 - } - } - } - ] - }, - { - "id": "3fcb4692-f627-5840-a788-cc70282610d8", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2389.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2389.164981814357 - } - } - }, - { - "id": "f733db42-98bc-51ac-8233-d8f86920cac6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2379.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2379.164981814357 - } - } - }, - { - "id": "6156f2fa-70b3-5177-a272-55968a033e2f", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "8e8e0080-c41c-5912-94e2-1449ccde9e0f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2389.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2379.164982 - } - } - }, - { - "id": "cfe80c7a-d7f8-509c-a22f-deb4f18ec9ae", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2379.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2379.164982 - } - } - }, - { - "id": "0b211d12-849b-5630-bc8b-7bd82394c6b7", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2379.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2389.164982 - } - } - }, - { - "id": "5feaea4e-eb5a-5354-bb9c-b34dddd5e756", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2389.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2389.164982 - } - } - } - ] - }, - { - "id": "29959e5b-3c55-5496-bb6f-64e52f9678f9", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "72ad30d2-21a7-59f2-a8d2-b232010f8bbe", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2389.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2379.164982 - } - } - }, - { - "id": "7d66f4b1-4d80-51dc-ace4-78f777dfe617", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2379.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2379.164982 - } - } - }, - { - "id": "c9fca241-5caf-5700-8a82-7753dd42de67", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2379.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2389.164982 - } - } - }, - { - "id": "11f37f25-56eb-59c8-9674-1d9d28db1e9f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2389.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2389.164982 - } - } - } - ] - }, - { - "id": "bb541730-bac8-5e7e-ad67-c9ef106bf84e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2369.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2369.164981814357 - } - } - }, - { - "id": "103ed258-3953-5e1d-bd06-d882769d44d3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2359.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2359.164981814357 - } - } - }, - { - "id": "b7370b8f-ef94-5f42-bf10-783349b1be00", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "6b317403-cd21-54a9-9347-23d81d31a008", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2369.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2359.164982 - } - } - }, - { - "id": "ca99be06-93f5-54d4-bd98-6192b735b537", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2359.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2359.164982 - } - } - }, - { - "id": "9ee5ab2f-347f-5647-96d1-4e5aa8e97d3b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2359.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2369.164982 - } - } - }, - { - "id": "d98b95fd-785a-5739-90dc-8d419247026a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2369.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2369.164982 - } - } - } - ] - }, - { - "id": "c8afc9e7-f065-5ebb-b86c-1ccfeff73f18", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "8659e836-026d-509c-be51-1133a6d3859f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2369.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2359.164982 - } - } - }, - { - "id": "f1438d04-0ae6-5226-8c2b-e6aa42eb21cf", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2359.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2359.164982 - } - } - }, - { - "id": "abc0ecd3-f6f8-5c54-9507-b9d138f16c16", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2359.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2369.164982 - } - } - }, - { - "id": "871f742e-4527-52ef-aa57-d42216414c3d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2369.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2369.164982 - } - } - } - ] - }, - { - "id": "05403722-45fc-5a5b-8762-05e06aa0c98f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2349.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2349.164981814357 - } - } - }, - { - "id": "f5d7cdac-e5c3-5936-898e-6b722b356dc5", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2339.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2339.164981814357 - } - } - }, - { - "id": "e57c04f0-7def-53d6-9629-3a8611ce89b5", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "df619c4c-a832-52fe-a30e-9f9eb7f54e3c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2349.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2339.164982 - } - } - }, - { - "id": "78240e48-8ef1-5591-ae99-ce1b83464a59", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2339.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2339.164982 - } - } - }, - { - "id": "a347a2dc-bc55-5f12-b57d-76a965af377a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2339.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2349.164982 - } - } - }, - { - "id": "a4cbb90f-be9e-5f0f-966a-7c6ee6597680", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2349.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2349.164982 - } - } - } - ] - }, - { - "id": "fab17729-825a-50f1-ae5b-84f2a989ed98", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "e72648f3-97ee-5c2d-929f-f835fdc3a2ea", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2349.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2339.164982 - } - } - }, - { - "id": "e087ddb8-838c-552f-b3ad-ffd6d6df6047", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2339.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2339.164982 - } - } - }, - { - "id": "8278f0be-3bac-5d91-bb57-8f7ce25ed941", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2339.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2349.164982 - } - } - }, - { - "id": "2d355cca-de95-526e-a425-23ac4a074db8", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2349.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2349.164982 - } - } - } - ] - }, - { - "id": "e133f20f-3fc5-545a-934d-cdeb4fd6f245", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2329.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2329.164981814357 - } - } - }, - { - "id": "64e6a0cb-e338-59b7-ac07-9630e6781f9c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2319.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2319.164981814357 - } - } - }, - { - "id": "707cda64-60f3-5be2-8ca7-6977a6e711fc", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "e4c0a12f-2874-570c-840a-93e2151747ca", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2329.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2319.164982 - } - } - }, - { - "id": "1e49e14e-790c-5a4b-a602-598352faa31c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2319.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2319.164982 - } - } - }, - { - "id": "30986816-b6d1-5c10-bb39-66d32bcde9a3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2319.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2329.164982 - } - } - }, - { - "id": "ed0c3e08-d044-5888-8392-088322cb4016", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2329.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2329.164982 - } - } - } - ] - }, - { - "id": "c8c8018e-52f9-590d-bcf4-3dc088565f69", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "762828a3-0d4e-548e-adb8-f9335fb345ff", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2329.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2319.164982 - } - } - }, - { - "id": "574fcfa5-e9c4-5c80-b47b-cac9cc7061cb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2319.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2319.164982 - } - } - }, - { - "id": "a8fc3ce9-efc8-5c69-b3e0-1d3906b957fb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2319.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2329.164982 - } - } - }, - { - "id": "7629d9b0-e216-5450-a824-49792f93c7a8", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2329.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2329.164982 - } - } - } - ] - }, - { - "id": "23743f53-6d50-5dd8-b16a-c74e3573a127", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2309.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2309.164981814357 - } - } - }, - { - "id": "8bac8eca-165a-52d2-bb16-39ac0717b698", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.69871930318277, - "y": -2299.164981814357 - }, - "endPoint": { - "x": 79.19871930318277, - "y": -2299.164981814357 - } - } - }, - { - "id": "65cc4c07-1f82-5028-8af7-03ef8b7dd9d5", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "98e26994-bda6-56e8-9025-e0d439d81283", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2309.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2299.164982 - } - } - }, - { - "id": "f458cc2b-c17b-5569-992f-2dbc4cc87a53", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2299.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2299.164982 - } - } - }, - { - "id": "f08b6394-25f3-5dd2-8049-f13939e60877", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2299.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2309.164982 - } - } - }, - { - "id": "c1c8a42e-3697-56e1-9822-25373ca1ae8f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2309.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2309.164982 - } - } - } - ] - }, - { - "id": "02f6692a-8161-5d9c-a280-6ab9ad6d775d", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "fd3c0a3c-758b-5645-a842-d5b872275d9f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2309.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2299.164982 - } - } - }, - { - "id": "71bda7f3-97b3-53a0-bad3-3af37db2d029", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 77.698719, - "y": -2299.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2299.164982 - } - } - }, - { - "id": "755dc81b-acea-5d86-a686-a81c384eb3ed", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2299.164982 - }, - "endPoint": { - "x": 79.198719, - "y": -2309.164982 - } - } - }, - { - "id": "7057fd2e-a1a2-5e18-a88f-fc3848f26c27", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 79.198719, - "y": -2309.164982 - }, - "endPoint": { - "x": 77.698719, - "y": -2309.164982 - } - } - } - ] - }, - { - "id": "303fcb61-4d06-545b-b6d3-7c5cafb93322", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 89.19871930318277, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 100.9887193031827, - "y": -2591.664981814357 - } - } - }, - { - "id": "bc5a07e2-a188-5ea5-9874-eba776444c63", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "791a53b5-f6da-517d-a955-c9a4057fb641", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 100.988719, - "y": -2591.664982 - }, - "endPoint": { - "x": 100.988719, - "y": -2586.664982 - } - } - }, - { - "id": "b8b78d1d-0cf9-5b4e-81a7-63ca4f4cfebd", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 100.988719, - "y": -2586.664982 - }, - "endPoint": { - "x": 122.448719, - "y": -2586.664982 - } - } - }, - { - "id": "9fb78521-b18f-554a-9381-232f24dbf384", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 122.448719, - "y": -2586.664982 - }, - "endPoint": { - "x": 122.448719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "2d0cb87c-ee3c-54e9-81a7-f4685b2d679b", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 21.46", - "basePoint": { - "x": 111.718719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8197524c-6f70-56bf-b8c5-c6e7be426ed7", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 14.5", - "basePoint": { - "x": 111.718719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f6d237c4-f3f6-504c-982f-5b2e42137c88", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 122.4487193031828, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 134.8887193031828, - "y": -2591.664981814357 - } - } - }, - { - "id": "588c6e76-f739-5cde-a7d9-3ea652bcadde", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "12c6638f-4913-56d3-b46b-96cc27fb0480", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 134.888719, - "y": -2591.664982 - }, - "endPoint": { - "x": 134.888719, - "y": -2596.664982 - } - } - }, - { - "id": "cbcf22c3-feb8-5ce7-9731-b3f193815126", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 134.888719, - "y": -2596.664982 - }, - "endPoint": { - "x": 161.588719, - "y": -2596.664982 - } - } - }, - { - "id": "bfe696b3-eb1c-5822-ace7-6c168b9b660d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 161.588719, - "y": -2596.664982 - }, - "endPoint": { - "x": 161.588719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "f2e1f8ac-befa-504b-8d77-fa3d2a3dff14", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 26.70", - "basePoint": { - "x": 148.238719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8d74cc51-4a17-5bd4-a3e6-110faf1d558d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 30.0", - "basePoint": { - "x": 148.238719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ef6a203e-6679-5f43-bdf6-1c6d65d1500e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 161.5887193031826, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 166.958719303183, - "y": -2591.664981814357 - } - } - }, - { - "id": "1b249e5a-cb90-5a0d-baa3-ab8e3c051d30", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "db548360-9345-5e35-a58c-19f9033c845b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 166.958719, - "y": -2591.664982 - }, - "endPoint": { - "x": 166.958719, - "y": -2596.664982 - } - } - }, - { - "id": "87ec9326-98de-5220-871f-195723aefbe8", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 166.958719, - "y": -2596.664982 - }, - "endPoint": { - "x": 194.108719, - "y": -2596.664982 - } - } - }, - { - "id": "ff2a1602-31ba-5029-8b6c-1a1fca8fb56a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 194.108719, - "y": -2596.664982 - }, - "endPoint": { - "x": 194.108719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "4ca4ca98-a875-51ac-b0fb-2a429a573160", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 27.15", - "basePoint": { - "x": 180.533719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "254b879b-78b0-53d5-9b0b-66ff97d97788", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 37.9", - "basePoint": { - "x": 180.533719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0a118556-8b61-50bb-ac23-eee2c406d651", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 194.1087193031826, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 201.9387193031826, - "y": -2591.664981814357 - } - } - }, - { - "id": "5970b301-dd55-5fb2-af0f-956473c94884", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "f5d29092-6afe-51c5-bb43-087580ca6708", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 201.938719, - "y": -2591.664982 - }, - "endPoint": { - "x": 201.938719, - "y": -2586.664982 - } - } - }, - { - "id": "7cce68d1-e5fb-5cc0-b3c8-5f0234129fee", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 201.938719, - "y": -2586.664982 - }, - "endPoint": { - "x": 215.388719, - "y": -2586.664982 - } - } - }, - { - "id": "960096d1-25ed-5d35-b772-db7fb7463e1b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 215.388719, - "y": -2586.664982 - }, - "endPoint": { - "x": 215.388719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "b02368e5-3720-58e7-ace1-e4c7f84bb15d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 13.45", - "basePoint": { - "x": 208.663719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3e462839-8ddc-5a8d-9957-0b069eae5ba4", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 20.0", - "basePoint": { - "x": 208.663719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "153532a4-7395-5b30-b8fe-a8acb4aac427", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 215.3887193031828, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 219.3787193031826, - "y": -2591.664981814357 - } - } - }, - { - "id": "7173bbba-90b7-5c50-b6de-5888fa41b3ef", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "70c46511-5446-5a96-9d8c-c588555b3459", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 219.378719, - "y": -2591.664982 - }, - "endPoint": { - "x": 219.378719, - "y": -2586.664982 - } - } - }, - { - "id": "0bcf8103-64d5-5d30-8029-072ca998bf31", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 219.378719, - "y": -2586.664982 - }, - "endPoint": { - "x": 231.238719, - "y": -2586.664982 - } - } - }, - { - "id": "16b53b39-b864-5b36-886e-3bb87d939b29", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 231.238719, - "y": -2586.664982 - }, - "endPoint": { - "x": 231.238719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "529a64ce-8ff7-5350-b91d-244705806a44", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 11.86", - "basePoint": { - "x": 225.308719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "039db2f3-eea8-5762-a347-a2d583496598", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 12.9", - "basePoint": { - "x": 225.308719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "14083ea6-981f-584e-9899-58e8052ab7ae", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 231.2387193031827, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 242.0387193031829, - "y": -2591.664981814357 - } - } - }, - { - "id": "deb93cac-aea3-5068-84c7-20adca20318d", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "a0e74dfe-df6c-56d7-8db3-ec23ed561491", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 242.038719, - "y": -2591.664982 - }, - "endPoint": { - "x": 242.038719, - "y": -2596.664982 - } - } - }, - { - "id": "ae2b7d90-c222-5879-860a-da5bea92943d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 242.038719, - "y": -2596.664982 - }, - "endPoint": { - "x": 269.488719, - "y": -2596.664982 - } - } - }, - { - "id": "6713c512-d19d-577b-9e1c-d2e99a5022c4", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.488719, - "y": -2596.664982 - }, - "endPoint": { - "x": 269.488719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "b3ca4000-f001-5033-879b-25d9964088cf", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 27.45", - "basePoint": { - "x": 255.763719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9716b42e-7729-5ce0-b004-147b37703541", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 14.4", - "basePoint": { - "x": 255.763719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "94a70f0d-dad7-53ea-a37d-d26448a1c653", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.4887193031827, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 302.9387193031826, - "y": -2591.664981814357 - } - } - }, - { - "id": "781eb9b6-e058-5402-af1c-7ca0f44ebf79", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "374263ca-0a53-5698-88df-83df19c87bf7", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 302.938719, - "y": -2591.664982 - }, - "endPoint": { - "x": 302.938719, - "y": -2586.664982 - } - } - }, - { - "id": "a0a98dd8-c4bb-52ae-910f-c82e3dc96e20", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 302.938719, - "y": -2586.664982 - }, - "endPoint": { - "x": 321.668719, - "y": -2586.664982 - } - } - }, - { - "id": "a980a7dc-4121-5086-800e-6e2e9bfabf01", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 321.668719, - "y": -2586.664982 - }, - "endPoint": { - "x": 321.668719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "f8cf2be5-928e-564e-ae36-6ea6c903eef1", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 18.73", - "basePoint": { - "x": 312.303719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "61e2e8c5-fb3c-58f1-94d9-51eb0b5835f0", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 29.8", - "basePoint": { - "x": 312.303719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "30f2deaa-58a7-5f53-8ca6-7a93d98640f1", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 321.6687193031826, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 343.3687193031828, - "y": -2591.664981814357 - } - } - }, - { - "id": "b1b82f71-d99e-5e13-8cab-36d250bc0194", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "2599cceb-8a20-5c97-b537-ce194dcb7cf6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 343.368719, - "y": -2591.664982 - }, - "endPoint": { - "x": 343.368719, - "y": -2596.664982 - } - } - }, - { - "id": "1df01dfc-2d75-5bcb-bd20-fad41da4d5c9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 343.368719, - "y": -2596.664982 - }, - "endPoint": { - "x": 373.068719, - "y": -2596.664982 - } - } - }, - { - "id": "6efab018-e7e5-52d7-8217-94f7628d9044", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 373.068719, - "y": -2596.664982 - }, - "endPoint": { - "x": 373.068719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "0aa881ff-cda1-5216-a5b6-fde9bea0a244", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 29.70", - "basePoint": { - "x": 358.218719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cf7da54a-4196-5360-b675-3bbfbcd7423d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 58.7", - "basePoint": { - "x": 358.218719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "53f5eb3b-e35c-5e9d-9020-7fb2d487f23a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 373.0687193031827, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 385.1687193031826, - "y": -2591.664981814357 - } - } - }, - { - "id": "f3758fba-a5bd-5ba6-9416-e7d28528d89d", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "9db115cf-af34-5f5c-9443-a42baac1e5c9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 385.168719, - "y": -2591.664982 - }, - "endPoint": { - "x": 385.168719, - "y": -2586.664982 - } - } - }, - { - "id": "2636faca-4e11-58a8-a217-1501f9d24634", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 385.168719, - "y": -2586.664982 - }, - "endPoint": { - "x": 416.568719, - "y": -2586.664982 - } - } - }, - { - "id": "b420f1d4-40c3-59e3-bda4-684077afc884", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 416.568719, - "y": -2586.664982 - }, - "endPoint": { - "x": 416.568719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "39037f6a-5ec8-571b-b03d-cc3084b8c9c3", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 31.40", - "basePoint": { - "x": 400.868719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "08920bf4-c8d5-5376-b207-25b7497179df", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 62.0", - "basePoint": { - "x": 400.868719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5e4b6da5-0eb0-5fec-81ff-49aa4679815d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 416.5687193031827, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 450.2587193031827, - "y": -2591.664981814357 - } - } - }, - { - "id": "96d94483-79bb-5167-b286-7ac2b1d0920e", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "9a3b2718-463a-5648-a074-256e314b6cd1", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 450.258719, - "y": -2591.664982 - }, - "endPoint": { - "x": 450.258719, - "y": -2586.664982 - } - } - }, - { - "id": "0e3df46a-7ff3-5778-b578-77c4dd100e52", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 450.258719, - "y": -2586.664982 - }, - "endPoint": { - "x": 476.248719, - "y": -2586.664982 - } - } - }, - { - "id": "8ae80003-6840-5e41-ac38-46fb6e250227", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 476.248719, - "y": -2586.664982 - }, - "endPoint": { - "x": 476.248719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "a8346a36-afe8-5bb1-b2ec-dd7ed57dec43", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 25.99", - "basePoint": { - "x": 463.253719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c70dae51-58e0-5715-b58e-7f52cb02403f", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 19.6", - "basePoint": { - "x": 463.253719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "93987054-f185-5eba-af3f-47194c3a7c84", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 476.248719303183, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 504.748719303183, - "y": -2591.664981814357 - } - } - }, - { - "id": "db9fbaed-1085-5087-a4bc-932fb676bde6", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "fe54cd7b-bd4d-5a67-b0f0-9f0a43e0d326", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 504.748719, - "y": -2591.664982 - }, - "endPoint": { - "x": 504.748719, - "y": -2596.664982 - } - } - }, - { - "id": "b7e899c7-a387-5a25-af7e-61058b488d95", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 504.748719, - "y": -2596.664982 - }, - "endPoint": { - "x": 519.488719, - "y": -2596.664982 - } - } - }, - { - "id": "3c98f40d-2da9-57ce-a292-6827c7267720", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 519.488719, - "y": -2596.664982 - }, - "endPoint": { - "x": 519.488719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "8f21dd5e-96e1-52f5-bc84-053a26a11076", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 14.74", - "basePoint": { - "x": 512.118719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e911a353-7349-5fb4-b1d6-696d62c7d670", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 60.3", - "basePoint": { - "x": 512.118719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4e9f35cc-e3d0-5c65-ad87-f6fcd4db1441", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 519.4887193031827, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 566.1487193031826, - "y": -2591.664981814357 - } - } - }, - { - "id": "34720915-8514-5ac5-be33-b4d46b0c1b24", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "5cb91247-7344-5fc9-bcac-ba58c7556daf", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 566.148719, - "y": -2591.664982 - }, - "endPoint": { - "x": 566.148719, - "y": -2596.664982 - } - } - }, - { - "id": "61983499-596f-55e6-b8df-a1b5dd1720e7", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 566.148719, - "y": -2596.664982 - }, - "endPoint": { - "x": 581.348719, - "y": -2596.664982 - } - } - }, - { - "id": "4ae4a927-65fe-5d4f-bc95-62dc4da54c67", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 581.348719, - "y": -2596.664982 - }, - "endPoint": { - "x": 581.348719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "e1ab54b8-c927-50f0-bac6-ad11e9eb1070", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 15.20", - "basePoint": { - "x": 573.748719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e1b8bb44-e5b1-5012-aa6b-f2a6193f29c4", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 12.7", - "basePoint": { - "x": 573.748719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "25899bf1-47b3-5acc-9ef2-5b44cf1fa73a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 581.3487193031829, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 582.8387193031826, - "y": -2591.664981814357 - } - } - }, - { - "id": "6b4cfd81-0dec-5fe3-916e-9b18cd71914e", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "3837f870-b35b-5791-b024-ec975370d407", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 582.838719, - "y": -2591.664982 - }, - "endPoint": { - "x": 582.838719, - "y": -2586.664982 - } - } - }, - { - "id": "da36c35f-f251-5b5c-8d7d-da5a041c8d7d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 582.838719, - "y": -2586.664982 - }, - "endPoint": { - "x": 611.998719, - "y": -2586.664982 - } - } - }, - { - "id": "7dc8c33b-a84b-5fc9-9ad2-2ef170c8416d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 611.998719, - "y": -2586.664982 - }, - "endPoint": { - "x": 611.998719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "353685ed-44d3-56b6-bfc0-64d519af8078", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 29.16", - "basePoint": { - "x": 597.418719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d6a9a3ce-b6d0-55f9-b838-53b28dcbef1d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 32.1", - "basePoint": { - "x": 597.418719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7b8eb2e0-9e69-527a-9bd0-11aa0711e066", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 611.998719303183, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 622.8087193031829, - "y": -2591.664981814357 - } - } - }, - { - "id": "2298401e-f8f3-5f75-8794-73f78077f2ba", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "477d0cac-0e73-5efb-93ac-df8a5d6f31f5", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 622.808719, - "y": -2591.664982 - }, - "endPoint": { - "x": 622.808719, - "y": -2586.664982 - } - } - }, - { - "id": "4b001cd4-f076-5072-a1f2-d9fa5255d16a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 622.808719, - "y": -2586.664982 - }, - "endPoint": { - "x": 640.348719, - "y": -2586.664982 - } - } - }, - { - "id": "15fd9323-5a90-59ad-8ccf-36015f49a536", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 640.348719, - "y": -2586.664982 - }, - "endPoint": { - "x": 640.348719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "b7adc045-f38f-5f26-8fc2-cb8bb8ed481b", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 17.54", - "basePoint": { - "x": 631.578719, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2e32ca7b-e2e3-5386-9a61-63147aed687e", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 15.0", - "basePoint": { - "x": 631.578719, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "05749a1f-8999-5000-aa5a-130c645e2515", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 640.3487193031829, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 645.5987193031829, - "y": -2591.664981814357 - } - } - }, - { - "id": "ebc01353-279b-56eb-a7c5-67a2053203ba", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "6fb916dd-34c8-53d0-b58f-31b78f02aac1", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 645.598719, - "y": -2591.664982 - }, - "endPoint": { - "x": 645.598719, - "y": -2596.664982 - } - } - }, - { - "id": "7c05975d-c5d7-5508-bbf3-4b767a71e650", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 645.598719, - "y": -2596.664982 - }, - "endPoint": { - "x": 660.518719, - "y": -2596.664982 - } - } - }, - { - "id": "b6461a18-9f75-5bd5-8c82-f11d14769615", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 660.518719, - "y": -2596.664982 - }, - "endPoint": { - "x": 660.518719, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "289922c9-cf48-5b51-9a79-7d201ba068b9", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 14.92", - "basePoint": { - "x": 653.058719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "905eebdb-7933-5aa1-bc75-8631c324f8c5", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 15.0", - "basePoint": { - "x": 653.058719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "df182bc2-ab94-52a7-a146-1dabefbdbf75", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 660.5187193031829, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 677.4687193031828, - "y": -2591.664981814357 - } - } - }, - { - "id": "7e6b62c7-074a-59fb-8525-b708d679008d", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "15490005-e754-5909-a5ed-d415a010c8c3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 677.468719, - "y": -2591.664982 - }, - "endPoint": { - "x": 677.468719, - "y": -2596.664982 - } - } - }, - { - "id": "9dd76c29-80e3-5578-b08e-fcb4fb2fad03", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 677.468719, - "y": -2596.664982 - }, - "endPoint": { - "x": 689.198719, - "y": -2596.664982 - } - } - } - ] - }, - { - "id": "55b035c6-8dfc-531c-8bad-0b1325473507", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 11.73", - "basePoint": { - "x": 683.333719, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "16ba0348-ce6a-5438-9758-243654d5a42e", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 12.9", - "basePoint": { - "x": 683.333719, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7fe646a2-fe09-5886-bb65-9f5b8ee0fd1e", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "ccb7436b-690c-5c0e-b8ee-9c9ee195a11a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.115883, - "y": -2637.139277 - }, - "endPoint": { - "x": 314.362633, - "y": -2636.988651 - } - } - }, - { - "id": "94d6f9c5-d2b7-58c3-bbf3-60339ba4d52f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.362633, - "y": -2636.988651 - }, - "endPoint": { - "x": 314.590917, - "y": -2636.72368 - } - } - }, - { - "id": "a9cf3b7a-70f5-5685-acc9-df0021d98784", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.590917, - "y": -2636.72368 - }, - "endPoint": { - "x": 314.795704, - "y": -2636.360219 - } - } - }, - { - "id": "680bfbae-4379-516b-8384-ce4a1f489c09", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.795704, - "y": -2636.360219 - }, - "endPoint": { - "x": 314.993823, - "y": -2636.118756 - } - } - }, - { - "id": "0a810912-8dee-5dff-8a58-06d319c11501", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.993823, - "y": -2636.118756 - }, - "endPoint": { - "x": 315.255554, - "y": -2635.961084 - } - } - }, - { - "id": "9fe39def-57dc-5ee8-a2e7-f549d05cf365", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.255554, - "y": -2635.961084 - }, - "endPoint": { - "x": 315.534213, - "y": -2635.833635 - } - } - }, - { - "id": "61b27761-dd43-53f5-9029-93dc984a9ae1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.534213, - "y": -2635.833635 - }, - "endPoint": { - "x": 315.77922, - "y": -2635.84371 - } - } - }, - { - "id": "c716ad4b-b974-533a-b2fd-79b395e3f719", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.77922, - "y": -2635.84371 - }, - "endPoint": { - "x": 316.067934, - "y": -2635.964442 - } - } - }, - { - "id": "184cffda-6ccd-5165-9555-105d8df0aa9b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.067934, - "y": -2635.964442 - }, - "endPoint": { - "x": 316.366702, - "y": -2636.195885 - } - } - }, - { - "id": "95ce9155-9d00-5fce-924c-5ed6a5b5b117", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.366702, - "y": -2636.195885 - }, - "endPoint": { - "x": 316.58965, - "y": -2636.461462 - } - } - }, - { - "id": "9060d088-ff26-58d3-8786-74619001fee9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.58965, - "y": -2636.461462 - }, - "endPoint": { - "x": 316.710512, - "y": -2636.723075 - } - } - }, - { - "id": "eabd585e-0128-58e0-8d41-93fd5e4cc169", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.710512, - "y": -2636.723075 - }, - "endPoint": { - "x": 316.831374, - "y": -2636.934369 - } - } - }, - { - "id": "cf5551db-8391-59f1-9221-b68c4d984771", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.831374, - "y": -2636.934369 - }, - "endPoint": { - "x": 317.103262, - "y": -2637.045026 - } - } - }, - { - "id": "790208f9-5cc8-5bed-a412-55331dc37e56", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.103262, - "y": -2637.045026 - }, - "endPoint": { - "x": 317.50268, - "y": -2637.071892 - } - } - }, - { - "id": "c1347204-669f-54b4-9706-d7aeb016bee9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.50268, - "y": -2637.071892 - }, - "endPoint": { - "x": 317.757844, - "y": -2637.128927 - } - } - }, - { - "id": "ea9619cd-750e-532c-ab65-05eafe811d63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.757844, - "y": -2637.128927 - }, - "endPoint": { - "x": 318.246011, - "y": -2637.115549 - } - } - }, - { - "id": "443b4799-c327-53e4-91b4-9498d7088d13", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.246011, - "y": -2637.115549 - }, - "endPoint": { - "x": 318.450799, - "y": -2636.988101 - } - } - }, - { - "id": "98c17ad1-f8c9-57da-b658-f9205e1a47f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.450799, - "y": -2636.988101 - }, - "endPoint": { - "x": 318.498712, - "y": -2636.958702 - } - } - }, - { - "id": "ed82c696-f492-5814-b72c-a9db056f2b67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.498712, - "y": -2636.958702 - }, - "endPoint": { - "x": 318.723302, - "y": -2637.109108 - } - } - }, - { - "id": "8169cd20-2c54-54b2-a36e-0d5bedae555f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.723302, - "y": -2637.109108 - }, - "endPoint": { - "x": 319.109998, - "y": -2637.500096 - } - } - }, - { - "id": "ed469831-53f6-5391-b917-0374afa33335", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.109998, - "y": -2637.500096 - }, - "endPoint": { - "x": 319.659929, - "y": -2637.952688 - } - } - }, - { - "id": "c7eafd3c-0a38-57c5-9594-0ecdbc7ef3f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.659929, - "y": -2637.952688 - }, - "endPoint": { - "x": 319.938486, - "y": -2638.302055 - } - } - }, - { - "id": "dbf88382-1095-599f-97a8-1a08218dab69", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.938486, - "y": -2638.302055 - }, - "endPoint": { - "x": 319.964341, - "y": -2638.339547 - } - } - }, - { - "id": "ba79ec64-e0d7-5cdb-953b-2e136fc8c146", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.964341, - "y": -2638.339547 - }, - "endPoint": { - "x": 319.820292, - "y": -2638.319617 - } - } - }, - { - "id": "b59f7e02-f093-5d7b-9e20-58f65b37ab51", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.820292, - "y": -2638.319617 - }, - "endPoint": { - "x": 319.736161, - "y": -2638.311084 - } - } - }, - { - "id": "19c57098-0b73-517e-b628-8097840ca9c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.736161, - "y": -2638.311084 - }, - "endPoint": { - "x": 319.633561, - "y": -2638.313947 - } - } - }, - { - "id": "2b45b671-1125-5782-9123-fdf23ebd2d38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.633561, - "y": -2638.313947 - }, - "endPoint": { - "x": 319.550867, - "y": -2638.336739 - } - } - }, - { - "id": "86ea9dde-d75d-529a-b740-2f477b02eabd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.550867, - "y": -2638.336739 - }, - "endPoint": { - "x": 319.536605, - "y": -2638.382323 - } - } - }, - { - "id": "ca337edd-20ce-59db-b164-53ecec646481", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.536605, - "y": -2638.382323 - }, - "endPoint": { - "x": 319.556509, - "y": -2638.439303 - } - } - }, - { - "id": "bdaee3df-ebcb-5804-8f1e-b3fe0e10d0e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.556509, - "y": -2638.439303 - }, - "endPoint": { - "x": 319.562255, - "y": -2638.500522 - } - } - }, - { - "id": "42ef20b2-7050-5553-96bd-be8ff57ebb30", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.562255, - "y": -2638.500522 - }, - "endPoint": { - "x": 319.530449, - "y": -2638.628466 - } - } - }, - { - "id": "46571f64-cfca-55ee-bc97-0c582db395b0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.530449, - "y": -2638.628466 - }, - "endPoint": { - "x": 319.525114, - "y": -2638.75184 - } - } - }, - { - "id": "f0971467-ce1c-5108-9e0a-4f228f812edf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.525114, - "y": -2638.75184 - }, - "endPoint": { - "x": 319.537631, - "y": -2638.8609 - } - } - }, - { - "id": "ff838aa5-914b-5088-8570-c04ef0c08768", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.537631, - "y": -2638.8609 - }, - "endPoint": { - "x": 319.544813, - "y": -2638.972934 - } - } - }, - { - "id": "34b7236f-ed8a-5cfd-a610-c56b4ae702ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.544813, - "y": -2638.972934 - }, - "endPoint": { - "x": 319.568001, - "y": -2639.123119 - } - } - }, - { - "id": "1a882626-2bb6-5203-bea9-7c700601c45d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.568001, - "y": -2639.123119 - }, - "endPoint": { - "x": 319.55733, - "y": -2639.257283 - } - } - }, - { - "id": "699cc608-72bc-50c8-92bb-7781511bf391", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.55733, - "y": -2639.257283 - }, - "endPoint": { - "x": 319.51075, - "y": -2639.402128 - } - } - }, - { - "id": "7927e3b0-1a2e-50fc-b7ff-9b6caf33b073", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.51075, - "y": -2639.402128 - }, - "endPoint": { - "x": 319.39943, - "y": -2639.545652 - } - } - }, - { - "id": "b03288a2-d4d7-57a9-9070-4ba9376ec794", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.39943, - "y": -2639.545652 - }, - "endPoint": { - "x": 319.283185, - "y": -2639.652951 - } - } - }, - { - "id": "287a00d0-483b-5563-b364-0dff9fe230f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.283185, - "y": -2639.652951 - }, - "endPoint": { - "x": 319.139957, - "y": -2639.72986 - } - } - }, - { - "id": "62faf040-366e-5047-ba4d-30d26d1808f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.139957, - "y": -2639.72986 - }, - "endPoint": { - "x": 319.102406, - "y": -2639.778142 - } - } - }, - { - "id": "b5bc6a56-cace-5100-abac-93d09f3937fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.102406, - "y": -2639.778142 - }, - "endPoint": { - "x": 319.060853, - "y": -2639.823671 - } - } - }, - { - "id": "788b39b7-7562-5983-a5bc-942664da6c27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.060853, - "y": -2639.823671 - }, - "endPoint": { - "x": 318.770908, - "y": -2639.837985 - } - } - }, - { - "id": "a2efad06-9c5e-5f29-9671-01d3d7c166bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.770908, - "y": -2639.837985 - }, - "endPoint": { - "x": 318.395087, - "y": -2639.837985 - } - } - }, - { - "id": "2952c4eb-6c40-52a3-85d4-4277fa10d849", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.395087, - "y": -2639.837985 - }, - "endPoint": { - "x": 318.259143, - "y": -2639.741421 - } - } - }, - { - "id": "abaa650f-02b1-5c49-9106-cc0acdc4c60b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.259143, - "y": -2639.741421 - }, - "endPoint": { - "x": 318.214308, - "y": -2639.575106 - } - } - }, - { - "id": "4b266dde-408c-50d2-90de-16796c2cd156", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.214308, - "y": -2639.575106 - }, - "endPoint": { - "x": 318.230108, - "y": -2639.443253 - } - } - }, - { - "id": "0ae5a59a-bddf-5bf4-a03c-e7afc06b6681", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.230108, - "y": -2639.443253 - }, - "endPoint": { - "x": 318.20692, - "y": -2639.303803 - } - } - }, - { - "id": "94e6f14f-8133-507e-a3ea-f037f6340137", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.20692, - "y": -2639.303803 - }, - "endPoint": { - "x": 318.149568, - "y": -2639.219737 - } - } - }, - { - "id": "1bb9ba77-0a1b-5332-9170-4cdfc15ce6d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.149568, - "y": -2639.219737 - }, - "endPoint": { - "x": 318.122789, - "y": -2639.142828 - } - } - }, - { - "id": "36962c08-3b9a-5f66-bd81-60baf94e5bfc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.122789, - "y": -2639.142828 - }, - "endPoint": { - "x": 318.110272, - "y": -2638.862112 - } - } - }, - { - "id": "c880fbed-f5e6-5367-871d-86f4d3ed55fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.110272, - "y": -2638.862112 - }, - "endPoint": { - "x": 318.029732, - "y": -2638.733342 - } - } - }, - { - "id": "97ff0642-fd5f-5e54-9a5f-32c9df8b26c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.029732, - "y": -2638.733342 - }, - "endPoint": { - "x": 317.947345, - "y": -2638.6332 - } - } - }, - { - "id": "d9b11e88-4b30-55d9-90dc-709969c25672", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.947345, - "y": -2638.6332 - }, - "endPoint": { - "x": 317.875833, - "y": -2638.572367 - } - } - }, - { - "id": "ba0a45a1-b238-5c2b-a3ba-2a5fce227904", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.875833, - "y": -2638.572367 - }, - "endPoint": { - "x": 317.828637, - "y": -2638.569999 - } - } - }, - { - "id": "a08a94c0-2a7c-5cc6-a339-03271b2e0dcb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.828637, - "y": -2638.569999 - }, - "endPoint": { - "x": 317.726654, - "y": -2638.612886 - } - } - }, - { - "id": "c25c6c33-aca7-5df8-bb83-68613accbffd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.726654, - "y": -2638.612886 - }, - "endPoint": { - "x": 317.622824, - "y": -2638.696952 - } - } - }, - { - "id": "daee868c-94cb-5ba1-9f09-57a28e7f26b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.622824, - "y": -2638.696952 - }, - "endPoint": { - "x": 317.570908, - "y": -2638.786358 - } - } - }, - { - "id": "fd10b841-2ef2-557b-b65c-f3769ff0a674", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.570908, - "y": -2638.786358 - }, - "endPoint": { - "x": 317.556647, - "y": -2638.965171 - } - } - }, - { - "id": "315fbeef-1c7e-5702-9555-e7b477342548", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.556647, - "y": -2638.965171 - }, - "endPoint": { - "x": 317.513658, - "y": -2639.054578 - } - } - }, - { - "id": "68750be2-4ae0-505d-8e1c-726e39fdbc06", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.513658, - "y": -2639.054578 - }, - "endPoint": { - "x": 317.567317, - "y": -2639.169033 - } - } - }, - { - "id": "5c53b1a0-1ce4-5e8c-99d5-fad11d260011", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.567317, - "y": -2639.169033 - }, - "endPoint": { - "x": 317.567317, - "y": -2639.28448 - } - } - }, - { - "id": "7f5d325e-7653-52a3-807d-49f6feaf84b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.567317, - "y": -2639.28448 - }, - "endPoint": { - "x": 317.569062, - "y": -2639.500839 - } - } - }, - { - "id": "88c24354-4908-59bf-8574-4b2baaf171ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.569062, - "y": -2639.500839 - }, - "endPoint": { - "x": 317.597687, - "y": -2639.643922 - } - } - }, - { - "id": "4d16e6a9-22ad-5e3e-804b-cce999e8ea2f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.597687, - "y": -2639.643922 - }, - "endPoint": { - "x": 317.683562, - "y": -2639.695782 - } - } - }, - { - "id": "073cc71f-cdea-59ae-a88d-b9f940bc12de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.683562, - "y": -2639.695782 - }, - "endPoint": { - "x": 317.758767, - "y": -2639.854335 - } - } - }, - { - "id": "1c8a4d02-b874-5995-9b85-876d98662879", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.758767, - "y": -2639.854335 - }, - "endPoint": { - "x": 317.916257, - "y": -2639.938402 - } - } - }, - { - "id": "728d40a2-f340-5316-a601-a49f92b6d852", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.916257, - "y": -2639.938402 - }, - "endPoint": { - "x": 318.169985, - "y": -2639.940604 - } - } - }, - { - "id": "d2307827-245b-579b-8416-8d1d867f901e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.169985, - "y": -2639.940604 - }, - "endPoint": { - "x": 318.391599, - "y": -2639.926675 - } - } - }, - { - "id": "21028a50-414c-58f7-90a1-2cac60822183", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.391599, - "y": -2639.926675 - }, - "endPoint": { - "x": 318.692214, - "y": -2639.937521 - } - } - }, - { - "id": "38bed8d4-2f18-51d4-a36a-d75e59bd5903", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.692214, - "y": -2639.937521 - }, - "endPoint": { - "x": 319.122207, - "y": -2639.952991 - } - } - }, - { - "id": "e6c2752a-83ab-5523-afbd-a95cf065a1d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.122207, - "y": -2639.952991 - }, - "endPoint": { - "x": 319.503363, - "y": -2640.007218 - } - } - }, - { - "id": "a20bd558-e2d6-53bc-9766-b84e9ea9f924", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.503363, - "y": -2640.007218 - }, - "endPoint": { - "x": 319.853637, - "y": -2640.083081 - } - } - }, - { - "id": "fce75539-1c2e-55ad-86d9-ec08215f93af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.853637, - "y": -2640.083081 - }, - "endPoint": { - "x": 320.08274, - "y": -2640.261123 - } - } - }, - { - "id": "3a4b4d1e-be9f-57a2-98b4-3f9fbe25689b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.08274, - "y": -2640.261123 - }, - "endPoint": { - "x": 320.257262, - "y": -2640.514809 - } - } - }, - { - "id": "a688d4bf-8de4-5ffc-9de3-c28b40f8f3c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.257262, - "y": -2640.514809 - }, - "endPoint": { - "x": 320.265264, - "y": -2640.827896 - } - } - }, - { - "id": "386e237a-e821-5fd2-bbc4-302c63fbc14c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.265264, - "y": -2640.827896 - }, - "endPoint": { - "x": 320.281065, - "y": -2641.041888 - } - } - }, - { - "id": "7f531f49-c44c-551d-96d4-c14e97067926", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.281065, - "y": -2641.041888 - }, - "endPoint": { - "x": 320.185853, - "y": -2641.25588 - } - } - }, - { - "id": "58346121-fcde-56aa-b572-b68d27dbd5af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.185853, - "y": -2641.25588 - }, - "endPoint": { - "x": 320.094642, - "y": -2641.39065 - } - } - }, - { - "id": "54f48edf-b59e-586e-9188-63e8ea4ff297", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.094642, - "y": -2641.39065 - }, - "endPoint": { - "x": 319.884416, - "y": -2641.505546 - } - } - }, - { - "id": "4dbfd113-424a-5fbe-b8ae-e68b166cd415", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.884416, - "y": -2641.505546 - }, - "endPoint": { - "x": 319.499772, - "y": -2641.54122 - } - } - }, - { - "id": "a8290534-6793-5194-a10f-5418e785d1c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.499772, - "y": -2641.54122 - }, - "endPoint": { - "x": 319.059519, - "y": -2641.553112 - } - } - }, - { - "id": "de0e17a4-0eb7-5c2d-879b-ca71b78fbee2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.059519, - "y": -2641.553112 - }, - "endPoint": { - "x": 318.559759, - "y": -2641.521401 - } - } - }, - { - "id": "8a01a6ce-4bc1-5b5f-88ed-3fe9b81cdc24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.559759, - "y": -2641.521401 - }, - "endPoint": { - "x": 318.416941, - "y": -2641.461944 - } - } - }, - { - "id": "9257e812-a148-5583-ba80-f780ab4dc220", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.416941, - "y": -2641.461944 - }, - "endPoint": { - "x": 318.119506, - "y": -2641.446088 - } - } - }, - { - "id": "806faac4-3b6b-53da-b6ea-7b4b78ade46f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.119506, - "y": -2641.446088 - }, - "endPoint": { - "x": 317.897379, - "y": -2641.461944 - } - } - }, - { - "id": "1319577c-4384-565e-a8de-02d506764f6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.897379, - "y": -2641.461944 - }, - "endPoint": { - "x": 317.725731, - "y": -2641.698067 - } - } - }, - { - "id": "29ee84ff-ed4f-568c-8907-3e651be3a730", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.725731, - "y": -2641.698067 - }, - "endPoint": { - "x": 317.678125, - "y": -2641.816982 - } - } - }, - { - "id": "0b52f5c4-6c57-543c-bc6b-1f193ae6789e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.678125, - "y": -2641.816982 - }, - "endPoint": { - "x": 317.598815, - "y": -2641.924005 - } - } - }, - { - "id": "ac76c313-30ec-594a-b81d-f5c1824132a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.598815, - "y": -2641.924005 - }, - "endPoint": { - "x": 317.444096, - "y": -2642.102322 - } - } - }, - { - "id": "6a6e9498-561f-5821-87d4-126e740223eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.444096, - "y": -2642.102322 - }, - "endPoint": { - "x": 317.348884, - "y": -2642.201418 - } - } - }, - { - "id": "560986b8-e9dd-58ef-8f2e-c14b54ee6589", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.348884, - "y": -2642.201418 - }, - "endPoint": { - "x": 317.333084, - "y": -2642.407482 - } - } - }, - { - "id": "7a930502-bd74-5bac-bb90-744e9fa0aebf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.333084, - "y": -2642.407482 - }, - "endPoint": { - "x": 317.392591, - "y": -2642.554089 - } - } - }, - { - "id": "c98e53c4-38a4-5afa-8e42-1b3a93dccf79", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.392591, - "y": -2642.554089 - }, - "endPoint": { - "x": 317.499602, - "y": -2642.621474 - } - } - }, - { - "id": "1ba9d5c2-a128-5446-8522-8445a2f8ba5b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.499602, - "y": -2642.621474 - }, - "endPoint": { - "x": 317.832844, - "y": -2642.633366 - } - } - }, - { - "id": "aadfbb26-4298-5a3f-b8a0-98ae0af9f2c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.832844, - "y": -2642.633366 - }, - "endPoint": { - "x": 318.364308, - "y": -2642.637329 - } - } - }, - { - "id": "7fff79e1-48e3-5043-b462-596642acc39c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.364308, - "y": -2642.637329 - }, - "endPoint": { - "x": 318.570532, - "y": -2642.633366 - } - } - }, - { - "id": "91d7e398-7737-59af-8474-06e93331da1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.570532, - "y": -2642.633366 - }, - "endPoint": { - "x": 318.72125, - "y": -2642.51847 - } - } - }, - { - "id": "fd872c86-b22c-5c73-a360-c18aeece518f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.72125, - "y": -2642.51847 - }, - "endPoint": { - "x": 318.963179, - "y": -2642.447121 - } - } - }, - { - "id": "bc4ec692-9af1-513b-90b1-9ae50ffce370", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.963179, - "y": -2642.447121 - }, - "endPoint": { - "x": 319.198028, - "y": -2642.403684 - } - } - }, - { - "id": "78005cf9-6457-5590-9e59-0bcac7b9e4f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.198028, - "y": -2642.403684 - }, - "endPoint": { - "x": 319.475661, - "y": -2642.407647 - } - } - }, - { - "id": "0c381afb-8f09-5d30-8007-e2cb2e4420eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.475661, - "y": -2642.407647 - }, - "endPoint": { - "x": 319.793001, - "y": -2642.39972 - } - } - }, - { - "id": "a3a819dc-7ef8-5a78-96bf-111495d807f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.793001, - "y": -2642.39972 - }, - "endPoint": { - "x": 319.931817, - "y": -2642.387828 - } - } - }, - { - "id": "3da1376b-2e35-542a-b107-dab5e457565f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.931817, - "y": -2642.387828 - }, - "endPoint": { - "x": 319.991325, - "y": -2642.463141 - } - } - }, - { - "id": "8fc59fb7-a108-564b-a6fb-5fac4d4a5521", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.991325, - "y": -2642.463141 - }, - "endPoint": { - "x": 320.122241, - "y": -2642.498816 - } - } - }, - { - "id": "5d96f363-6250-553f-a688-b4bea51b1faa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.122241, - "y": -2642.498816 - }, - "endPoint": { - "x": 320.20945, - "y": -2642.502779 - } - } - }, - { - "id": "25e66d0a-b39c-5eee-a17e-0980186187dc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.20945, - "y": -2642.502779 - }, - "endPoint": { - "x": 320.264957, - "y": -2642.558273 - } - } - }, - { - "id": "7b1a6b6f-b72a-5d52-afb3-e8d3bd080961", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.264957, - "y": -2642.558273 - }, - "endPoint": { - "x": 320.304662, - "y": -2642.669205 - } - } - }, - { - "id": "04580916-102c-59ab-8617-9f486c1f7eeb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.304662, - "y": -2642.669205 - }, - "endPoint": { - "x": 320.368069, - "y": -2642.744518 - } - } - }, - { - "id": "f22c13f5-e0dc-5425-8952-63847b90c9f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.368069, - "y": -2642.744518 - }, - "endPoint": { - "x": 320.397309, - "y": -2643.08794 - } - } - }, - { - "id": "876594ca-3ce1-5ad6-ac40-22312eb11a54", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.397309, - "y": -2643.08794 - }, - "endPoint": { - "x": 320.407056, - "y": -2643.317346 - } - } - }, - { - "id": "ecae5e27-1d11-5ea1-ab2b-f5c9809f9a4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.407056, - "y": -2643.317346 - }, - "endPoint": { - "x": 320.399156, - "y": -2643.694406 - } - } - }, - { - "id": "39b3199a-4e73-579e-943d-ac95b9bae8c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.399156, - "y": -2643.694406 - }, - "endPoint": { - "x": 320.191496, - "y": -2644.166102 - } - } - }, - { - "id": "d44aecc7-9d49-5805-a643-3894ba19a842", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.191496, - "y": -2644.166102 - }, - "endPoint": { - "x": 319.858767, - "y": -2644.502862 - } - } - }, - { - "id": "86bb0290-27a4-50c1-99ee-d853aa7de4da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.858767, - "y": -2644.502862 - }, - "endPoint": { - "x": 319.52614, - "y": -2644.599095 - } - } - }, - { - "id": "10379c3a-2ecd-594b-8433-0ac06d39fb0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.52614, - "y": -2644.599095 - }, - "endPoint": { - "x": 319.324738, - "y": -2644.647211 - } - } - }, - { - "id": "7e18ddd2-ad4f-5de1-8af6-26b708a2a1e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.324738, - "y": -2644.647211 - }, - "endPoint": { - "x": 318.856373, - "y": -2644.699677 - } - } - }, - { - "id": "f390e840-c738-5c80-9fa7-4e77ba580ef1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.856373, - "y": -2644.699677 - }, - "endPoint": { - "x": 318.676927, - "y": -2644.73904 - } - } - }, - { - "id": "31679b72-7d93-5c86-93f5-3d249f689acb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.676927, - "y": -2644.73904 - }, - "endPoint": { - "x": 317.770874, - "y": -2644.577239 - } - } - }, - { - "id": "b1052144-099b-5fa6-8263-ad38e9264d12", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.770874, - "y": -2644.577239 - }, - "endPoint": { - "x": 317.363761, - "y": -2644.502862 - } - } - }, - { - "id": "de669c98-cff6-5f3d-b78e-bfd117bf9c9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.363761, - "y": -2644.502862 - }, - "endPoint": { - "x": 316.831374, - "y": -2644.301147 - } - } - }, - { - "id": "bdf57cef-fe22-53fb-b3f5-bf541fff88a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.831374, - "y": -2644.301147 - }, - "endPoint": { - "x": 316.603706, - "y": -2644.22677 - } - } - }, - { - "id": "d324f79a-2c3f-5bec-9428-77dac272f4f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.603706, - "y": -2644.22677 - }, - "endPoint": { - "x": 316.393583, - "y": -2644.051811 - } - } - }, - { - "id": "694d1656-b7fd-5075-8a03-dfb9ae5d0253", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.393583, - "y": -2644.051811 - }, - "endPoint": { - "x": 316.218549, - "y": -2643.872503 - } - } - }, - { - "id": "ddb352a3-145e-51d4-9084-ee01678dd59a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.218549, - "y": -2643.872503 - }, - "endPoint": { - "x": 316.082811, - "y": -2643.863749 - } - } - }, - { - "id": "947e1e78-d9c2-53f2-b6c4-51eb3d707266", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.082811, - "y": -2643.863749 - }, - "endPoint": { - "x": 315.920909, - "y": -2643.959982 - } - } - }, - { - "id": "cacf7fba-7fb9-508c-b1d7-26b1a8601677", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.920909, - "y": -2643.959982 - }, - "endPoint": { - "x": 315.658255, - "y": -2644.152448 - } - } - }, - { - "id": "d28878e5-e732-5c23-992c-2b072444e31c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.658255, - "y": -2644.152448 - }, - "endPoint": { - "x": 315.417558, - "y": -2644.222421 - } - } - }, - { - "id": "9198abef-0d9e-557f-96a4-827075085473", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.417558, - "y": -2644.222421 - }, - "endPoint": { - "x": 315.211744, - "y": -2644.336106 - } - } - }, - { - "id": "c602c3c9-c970-5dc1-bab4-65f752be45e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.211744, - "y": -2644.336106 - }, - "endPoint": { - "x": 314.949193, - "y": -2644.458599 - } - } - }, - { - "id": "bc61449b-2d34-5e22-95f0-2a3fba387463", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.949193, - "y": -2644.458599 - }, - "endPoint": { - "x": 314.59461, - "y": -2644.633558 - } - } - }, - { - "id": "711f63b3-6b14-5259-a09c-c41930ad5bb5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.59461, - "y": -2644.633558 - }, - "endPoint": { - "x": 314.318824, - "y": -2644.725387 - } - } - }, - { - "id": "26c73559-b9ed-546a-8382-cdf0ad16b740", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.318824, - "y": -2644.725387 - }, - "endPoint": { - "x": 314.174364, - "y": -2644.804113 - } - } - }, - { - "id": "81df959d-cc0b-553d-aa1a-5a4467bed195", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.174364, - "y": -2644.804113 - }, - "endPoint": { - "x": 313.671013, - "y": -2644.825969 - } - } - }, - { - "id": "8744206a-0585-56b0-b768-9c53f5511263", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.671013, - "y": -2644.825969 - }, - "endPoint": { - "x": 313.059522, - "y": -2644.796516 - } - } - }, - { - "id": "ebda0645-9530-5392-905c-09239035a678", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.059522, - "y": -2644.796516 - }, - "endPoint": { - "x": 312.696218, - "y": -2644.757153 - } - } - }, - { - "id": "65c0e7eb-97bb-5b56-8a24-bd4fa6a7a146", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.696218, - "y": -2644.757153 - }, - "endPoint": { - "x": 312.402887, - "y": -2644.542831 - } - } - }, - { - "id": "21683101-fb57-582a-89fe-57fdeac02b2d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.402887, - "y": -2644.542831 - }, - "endPoint": { - "x": 312.07457, - "y": -2644.381029 - } - } - }, - { - "id": "90465d81-5f35-5385-985f-25895f32e929", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.07457, - "y": -2644.381029 - }, - "endPoint": { - "x": 311.794475, - "y": -2643.982995 - } - } - }, - { - "id": "3fe1add4-4e53-5f0d-913d-71768a224d0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.794475, - "y": -2643.982995 - }, - "endPoint": { - "x": 311.662635, - "y": -2643.80187 - } - } - }, - { - "id": "e93e8568-cf4d-5a4d-a180-a65ff3e28951", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.662635, - "y": -2643.80187 - }, - "endPoint": { - "x": 311.658223, - "y": -2643.360123 - } - } - }, - { - "id": "3f5a97d0-7f92-5b17-873c-db600e128967", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.658223, - "y": -2643.360123 - }, - "endPoint": { - "x": 311.737019, - "y": -2643.193917 - } - } - }, - { - "id": "9cb51afd-1c18-5be2-94ef-628f20ca9928", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.737019, - "y": -2643.193917 - }, - "endPoint": { - "x": 311.776417, - "y": -2643.018958 - } - } - }, - { - "id": "b689dda4-c30c-5d15-89aa-3087c75ef1b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.776417, - "y": -2643.018958 - }, - "endPoint": { - "x": 312.008394, - "y": -2642.721561 - } - } - }, - { - "id": "3642557b-cb38-5b55-9fc8-037162d4d8f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.008394, - "y": -2642.721561 - }, - "endPoint": { - "x": 312.266636, - "y": -2642.494081 - } - } - }, - { - "id": "9af2dfea-09e8-534f-9bfa-50c91b8313ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.266636, - "y": -2642.494081 - }, - "endPoint": { - "x": 312.695603, - "y": -2642.432862 - } - } - }, - { - "id": "d6310638-0cbe-58d5-8bc1-b0825b36e273", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.695603, - "y": -2642.432862 - }, - "endPoint": { - "x": 312.995192, - "y": -2642.461545 - } - } - }, - { - "id": "16aea001-f81e-506b-a3d6-693562d08162", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.995192, - "y": -2642.461545 - }, - "endPoint": { - "x": 313.415336, - "y": -2642.465894 - } - } - }, - { - "id": "2e66e986-b5bd-5ff6-93a8-11219dadcf81", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.415336, - "y": -2642.465894 - }, - "endPoint": { - "x": 313.564207, - "y": -2642.48775 - } - } - }, - { - "id": "3003087a-9dea-595e-9c82-7ddac27d0b95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.564207, - "y": -2642.48775 - }, - "endPoint": { - "x": 313.68671, - "y": -2642.583983 - } - } - }, - { - "id": "5e795645-a210-59a3-a716-08c2729b8100", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.68671, - "y": -2642.583983 - }, - "endPoint": { - "x": 313.752374, - "y": -2642.614592 - } - } - }, - { - "id": "befc1821-9382-5c95-ae5c-16cf4cb76268", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.752374, - "y": -2642.614592 - }, - "endPoint": { - "x": 314.015028, - "y": -2642.618997 - } - } - }, - { - "id": "c0c16ed8-de67-564a-a50d-d82be7c74f11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.015028, - "y": -2642.618997 - }, - "endPoint": { - "x": 314.443995, - "y": -2642.623346 - } - } - }, - { - "id": "2f596336-845d-5615-88f9-5b3b41051f97", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.443995, - "y": -2642.623346 - }, - "endPoint": { - "x": 314.592866, - "y": -2642.632099 - } - } - }, - { - "id": "54265a82-f934-5bb6-98da-c9a445f67347", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.592866, - "y": -2642.632099 - }, - "endPoint": { - "x": 314.62344, - "y": -2642.518359 - } - } - }, - { - "id": "49504434-9131-5128-86ad-5c9eab25c78d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.62344, - "y": -2642.518359 - }, - "endPoint": { - "x": 314.540335, - "y": -2642.295339 - } - } - }, - { - "id": "e6d2ea4f-76f8-535c-b817-908f838d6872", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.540335, - "y": -2642.295339 - }, - "endPoint": { - "x": 314.321491, - "y": -2642.011044 - } - } - }, - { - "id": "0680bb47-5a04-5692-b0ba-05c8447b4d38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.321491, - "y": -2642.011044 - }, - "endPoint": { - "x": 314.225151, - "y": -2641.840434 - } - } - }, - { - "id": "e1c73482-49be-562c-989f-90c767379f5a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.225151, - "y": -2641.840434 - }, - "endPoint": { - "x": 313.98435, - "y": -2641.818578 - } - } - }, - { - "id": "d671c609-7c89-5b1a-b31f-8e2e2475bb66", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.98435, - "y": -2641.818578 - }, - "endPoint": { - "x": 313.866259, - "y": -2641.787969 - } - } - }, - { - "id": "8eb39e46-8684-551a-b497-22b4349c1ff5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.866259, - "y": -2641.787969 - }, - "endPoint": { - "x": 313.800595, - "y": -2641.726694 - } - } - }, - { - "id": "3addcb98-6d26-5c0e-947f-e997d76a85ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.800595, - "y": -2641.726694 - }, - "endPoint": { - "x": 313.502955, - "y": -2641.726694 - } - } - }, - { - "id": "4f21a0e5-6640-59b9-8f9a-9c4735a5f53f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.502955, - "y": -2641.726694 - }, - "endPoint": { - "x": 313.47669, - "y": -2641.805476 - } - } - }, - { - "id": "a36e013e-c167-547b-a715-47c6294b6f9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.47669, - "y": -2641.805476 - }, - "endPoint": { - "x": 313.174638, - "y": -2641.822927 - } - } - }, - { - "id": "aec11e90-f69a-5999-8127-fff1edc977da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.174638, - "y": -2641.822927 - }, - "endPoint": { - "x": 312.35169, - "y": -2641.840434 - } - } - }, - { - "id": "8ceab158-9099-5531-9643-5134d814c4a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.35169, - "y": -2641.840434 - }, - "endPoint": { - "x": 311.983975, - "y": -2641.814174 - } - } - }, - { - "id": "bb24a7c8-0498-5ce5-883c-83ae77ad7af3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.983975, - "y": -2641.814174 - }, - "endPoint": { - "x": 311.90087, - "y": -2641.735448 - } - } - }, - { - "id": "a4a39ea1-88bd-5ff7-9fec-58aafa112fe4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.90087, - "y": -2641.735448 - }, - "endPoint": { - "x": 311.769543, - "y": -2641.626112 - } - } - }, - { - "id": "94cb592f-5f1f-5e27-9e86-0e08fa648edd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.769543, - "y": -2641.626112 - }, - "endPoint": { - "x": 311.667252, - "y": -2641.541385 - } - } - }, - { - "id": "09bce487-aadd-5def-9a1a-e3b2afda1dd6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.667252, - "y": -2641.541385 - }, - "endPoint": { - "x": 311.632265, - "y": -2641.458255 - } - } - }, - { - "id": "12334326-f003-58ff-84f9-cdd66bf28f19", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.632265, - "y": -2641.458255 - }, - "endPoint": { - "x": 311.575323, - "y": -2641.217728 - } - } - }, - { - "id": "883fdd80-700e-5dd5-af04-0ea267103b9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.575323, - "y": -2641.217728 - }, - "endPoint": { - "x": 311.557881, - "y": -2641.016508 - } - } - }, - { - "id": "2266c006-c746-5e47-ac26-51dd2e2afc19", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.557881, - "y": -2641.016508 - }, - "endPoint": { - "x": 311.627854, - "y": -2640.535398 - } - } - }, - { - "id": "d555294f-d408-5f52-a6d0-4bf483de9718", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.627854, - "y": -2640.535398 - }, - "endPoint": { - "x": 311.820227, - "y": -2640.252755 - } - } - }, - { - "id": "e8f07335-31eb-5c3e-87b8-d3601cb9cc54", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.820227, - "y": -2640.252755 - }, - "endPoint": { - "x": 312.135309, - "y": -2640.099707 - } - } - }, - { - "id": "35c23568-6d91-5012-9557-a8e257e7e1f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.135309, - "y": -2640.099707 - }, - "endPoint": { - "x": 312.481171, - "y": -2640.095303 - } - } - }, - { - "id": "0586e510-3806-5ed8-a993-76b33a347d79", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.481171, - "y": -2640.095303 - }, - "endPoint": { - "x": 312.505179, - "y": -2640.043278 - } - } - }, - { - "id": "00db8850-eee7-54ec-bdd5-23c16edc75cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.505179, - "y": -2640.043278 - }, - "endPoint": { - "x": 312.459009, - "y": -2639.989436 - } - } - }, - { - "id": "b7095d43-2cce-55e2-9381-342d1f1b79e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.459009, - "y": -2639.989436 - }, - "endPoint": { - "x": 312.174297, - "y": -2639.877953 - } - } - }, - { - "id": "0451edd5-e179-5eaf-8b36-acb5b9bba589", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.174297, - "y": -2639.877953 - }, - "endPoint": { - "x": 311.912566, - "y": -2639.697214 - } - } - }, - { - "id": "a48ad587-30f8-59d3-a263-822d594824d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.912566, - "y": -2639.697214 - }, - "endPoint": { - "x": 311.808736, - "y": -2639.501114 - } - } - }, - { - "id": "23c97f4b-671a-5dbb-a57e-4452509b7b4d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.808736, - "y": -2639.501114 - }, - "endPoint": { - "x": 311.777443, - "y": -2638.895144 - } - } - }, - { - "id": "3a865be2-7a0e-5d5b-8fb6-02ae35b4090e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.777443, - "y": -2638.895144 - }, - "endPoint": { - "x": 311.86219, - "y": -2638.422182 - } - } - }, - { - "id": "59a9b439-c254-560e-aff8-ae62f83ba612", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.86219, - "y": -2638.422182 - }, - "endPoint": { - "x": 311.958325, - "y": -2637.995409 - } - } - }, - { - "id": "79755353-1e6c-5db2-9ef5-bff8398e8889", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.958325, - "y": -2637.995409 - }, - "endPoint": { - "x": 312.305418, - "y": -2637.612514 - } - } - }, - { - "id": "3117f6ac-9a7f-5ea3-9292-b1e09b437089", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.305418, - "y": -2637.612514 - }, - "endPoint": { - "x": 312.632504, - "y": -2637.389494 - } - } - }, - { - "id": "4a487544-46e4-5c63-a967-57f481167619", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.632504, - "y": -2637.389494 - }, - "endPoint": { - "x": 312.794098, - "y": -2637.254944 - } - } - }, - { - "id": "0bc96392-1476-5b35-abb9-e9af330734fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.794098, - "y": -2637.254944 - }, - "endPoint": { - "x": 313.101998, - "y": -2637.239529 - } - } - }, - { - "id": "a0fd35f3-80d7-5f39-b2ba-1e13a2ed8900", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.101998, - "y": -2637.239529 - }, - "endPoint": { - "x": 313.198133, - "y": -2637.158821 - } - } - }, - { - "id": "8ccc2d23-7f06-5734-88b8-a828d0d6c69f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.198133, - "y": -2637.158821 - }, - "endPoint": { - "x": 313.613762, - "y": -2637.135754 - } - } - }, - { - "id": "0fab34b2-7c37-5e6d-911e-75d0fb8e76f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.613762, - "y": -2637.135754 - }, - "endPoint": { - "x": 314.025493, - "y": -2637.139552 - } - } - }, - { - "id": "6329c2cc-9976-585e-8962-a1c6b2bc2363", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.025493, - "y": -2637.139552 - }, - "endPoint": { - "x": 314.115883, - "y": -2637.139277 - } - } - } - ] - }, - { - "id": "d8bd4381-50e1-5e45-9dd6-434b6d3d915a", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "39530f98-cea7-5b43-aca3-6950130bd0b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.259384, - "y": -2639.073351 - }, - "endPoint": { - "x": 316.131237, - "y": -2638.890464 - } - } - }, - { - "id": "90365c8c-ed3c-5e35-9c98-885768129fde", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.131237, - "y": -2638.890464 - }, - "endPoint": { - "x": 315.942968, - "y": -2638.741545 - } - } - }, - { - "id": "7152a68d-2834-5aa3-a8b1-9beca51a8782", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.942968, - "y": -2638.741545 - }, - "endPoint": { - "x": 315.739001, - "y": -2638.710165 - } - } - }, - { - "id": "ab26e03d-4468-5220-8fe0-d0032643d4c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.739001, - "y": -2638.710165 - }, - "endPoint": { - "x": 315.576894, - "y": -2638.817298 - } - } - }, - { - "id": "1e6e47f2-855a-5140-92dc-967d586849e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.576894, - "y": -2638.817298 - }, - "endPoint": { - "x": 315.472346, - "y": -2638.960987 - } - } - }, - { - "id": "0b7121c0-ba9f-54ff-9430-a10c8e8d9349", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.472346, - "y": -2638.960987 - }, - "endPoint": { - "x": 315.359897, - "y": -2639.151691 - } - } - }, - { - "id": "18976411-04a1-53d0-981f-b506f2310553", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.359897, - "y": -2639.151691 - }, - "endPoint": { - "x": 315.323269, - "y": -2639.318943 - } - } - }, - { - "id": "e0f77f87-fdb7-5d43-a187-459b44bcea7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.323269, - "y": -2639.318943 - }, - "endPoint": { - "x": 315.341634, - "y": -2639.475679 - } - } - }, - { - "id": "0eb495df-1c80-5885-9eb2-dc71046bf1f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.341634, - "y": -2639.475679 - }, - "endPoint": { - "x": 315.446183, - "y": -2639.621956 - } - } - }, - { - "id": "f133a8e3-93a8-53e3-a559-d8c994e39493", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.446183, - "y": -2639.621956 - }, - "endPoint": { - "x": 315.60829, - "y": -2639.82312 - } - } - }, - { - "id": "3906ca5b-e58b-57c1-82d7-567c84bd659b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.60829, - "y": -2639.82312 - }, - "endPoint": { - "x": 315.799227, - "y": -2639.930254 - } - } - }, - { - "id": "65df7777-64cf-53fa-8b04-03ab561b5875", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.799227, - "y": -2639.930254 - }, - "endPoint": { - "x": 315.963796, - "y": -2639.953872 - } - } - }, - { - "id": "0ee12806-2218-5b75-a7f1-89e1a02f1cf7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.963796, - "y": -2639.953872 - }, - "endPoint": { - "x": 316.129083, - "y": -2639.863309 - } - } - }, - { - "id": "b8f52878-7515-5ca7-814f-258fdd1eb640", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.129083, - "y": -2639.863309 - }, - "endPoint": { - "x": 316.257024, - "y": -2639.671559 - } - } - }, - { - "id": "f6bf0e8c-6a3b-574a-9193-de698652c69f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.257024, - "y": -2639.671559 - }, - "endPoint": { - "x": 316.272414, - "y": -2639.350268 - } - } - }, - { - "id": "59839688-9f61-53cf-a144-7191f79c36ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.272414, - "y": -2639.350268 - }, - "endPoint": { - "x": 316.259384, - "y": -2639.073351 - } - } - } - ] - }, - { - "id": "7d1174c9-2094-5f90-9de3-620b74c8ec95", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "8d671a55-ecfc-5e60-84fb-51e787247277", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.581957, - "y": -2639.594925 - }, - "endPoint": { - "x": 313.332949, - "y": -2639.870741 - } - } - }, - { - "id": "21d5ab10-e40f-5be0-b66f-e9eb85f0f054", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.332949, - "y": -2639.870741 - }, - "endPoint": { - "x": 313.29591, - "y": -2639.889019 - } - } - }, - { - "id": "55fe9add-bdab-5686-8c5f-b2c64ce7ab35", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.29591, - "y": -2639.889019 - }, - "endPoint": { - "x": 313.286676, - "y": -2639.935484 - } - } - }, - { - "id": "d9ac85a1-54a9-58de-8e71-42d4b83d7ffc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.286676, - "y": -2639.935484 - }, - "endPoint": { - "x": 313.29037, - "y": -2639.985637 - } - } - }, - { - "id": "30ec5c74-4b75-5c9b-b46c-7d7fad259093", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.29037, - "y": -2639.985637 - }, - "endPoint": { - "x": 313.338386, - "y": -2640.016742 - } - } - }, - { - "id": "d9716821-07ce-5c42-bf1e-19d646e40eb9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.338386, - "y": -2640.016742 - }, - "endPoint": { - "x": 313.544098, - "y": -2640.000557 - } - } - }, - { - "id": "1e6ea90a-f889-5fbe-bf5a-8ceff29c9c21", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.544098, - "y": -2640.000557 - }, - "endPoint": { - "x": 313.820089, - "y": -2639.957285 - } - } - }, - { - "id": "39673780-35c3-564a-a760-903eab99c1c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.820089, - "y": -2639.957285 - }, - "endPoint": { - "x": 313.912121, - "y": -2639.865346 - } - } - }, - { - "id": "38be304b-bf3a-559c-a494-438a9d127ae8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.912121, - "y": -2639.865346 - }, - "endPoint": { - "x": 314.025698, - "y": -2639.740981 - } - } - }, - { - "id": "d75ce879-70a0-5cb6-98df-a2296b6d7ab1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.025698, - "y": -2639.740981 - }, - "endPoint": { - "x": 314.144816, - "y": -2639.622011 - } - } - }, - { - "id": "f5aab575-bd84-5842-b8ce-a3ce7d24cbd1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.144816, - "y": -2639.622011 - }, - "endPoint": { - "x": 314.19355, - "y": -2639.4868 - } - } - }, - { - "id": "78b31a09-147a-551c-9966-4c9a9f55bc0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.19355, - "y": -2639.4868 - }, - "endPoint": { - "x": 314.177237, - "y": -2639.254256 - } - } - }, - { - "id": "f044d44a-4af8-5e93-85cc-bc6eab4c0b94", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.177237, - "y": -2639.254256 - }, - "endPoint": { - "x": 314.155588, - "y": -2639.108254 - } - } - }, - { - "id": "0a029bbc-a75d-5e44-a727-8415de44b129", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.155588, - "y": -2639.108254 - }, - "endPoint": { - "x": 314.074433, - "y": -2638.99468 - } - } - }, - { - "id": "d99da450-2418-5ad4-8198-533caa8f10b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.074433, - "y": -2638.99468 - }, - "endPoint": { - "x": 314.00405, - "y": -2638.832438 - } - } - }, - { - "id": "971518c0-3f83-513d-85ec-a60e52925265", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.00405, - "y": -2638.832438 - }, - "endPoint": { - "x": 313.841738, - "y": -2638.751345 - } - } - }, - { - "id": "db41f8c1-6264-5a07-bac9-c2bc28cb0001", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.841738, - "y": -2638.751345 - }, - "endPoint": { - "x": 313.738933, - "y": -2638.805407 - } - } - }, - { - "id": "a99bb88b-7b2c-5a76-8109-e32f23857fdc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.738933, - "y": -2638.805407 - }, - "endPoint": { - "x": 313.711847, - "y": -2638.956803 - } - } - }, - { - "id": "38717a0d-bff7-5e66-9e16-55d7ffa2225b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.711847, - "y": -2638.956803 - }, - "endPoint": { - "x": 313.700972, - "y": -2639.329954 - } - } - }, - { - "id": "55212454-519a-5dca-9ccb-8cfd57efe5be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.700972, - "y": -2639.329954 - }, - "endPoint": { - "x": 313.581957, - "y": -2639.594925 - } - } - } - ] - }, - { - "id": "b3a13776-3a9a-53f1-a99f-5564a3c81f84", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "8234d8d3-79b5-573a-a109-da272d109f21", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.916805, - "y": -2641.307189 - }, - "endPoint": { - "x": 315.732127, - "y": -2641.37061 - } - } - }, - { - "id": "f4f1284f-32f3-5cf4-bd6f-8f3a617bcaa0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.732127, - "y": -2641.37061 - }, - "endPoint": { - "x": 315.634042, - "y": -2641.459962 - } - } - }, - { - "id": "2cf4c2af-624d-5508-a7d4-c9830d859b13", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.634042, - "y": -2641.459962 - }, - "endPoint": { - "x": 315.631169, - "y": -2641.581079 - } - } - }, - { - "id": "863ca2eb-62aa-5282-aac4-40915ecdbee7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.631169, - "y": -2641.581079 - }, - "endPoint": { - "x": 315.691703, - "y": -2641.624296 - } - } - }, - { - "id": "d5e83182-a2af-5956-8759-74a825e77d33", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.691703, - "y": -2641.624296 - }, - "endPoint": { - "x": 315.795636, - "y": -2641.690635 - } - } - }, - { - "id": "48c34f9c-5f2b-5b7a-952c-57bc75f5f466", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.795636, - "y": -2641.690635 - }, - "endPoint": { - "x": 315.902339, - "y": -2641.785767 - } - } - }, - { - "id": "812f4998-f166-512e-9f29-97d08ba66b50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.902339, - "y": -2641.785767 - }, - "endPoint": { - "x": 316.026381, - "y": -2641.791547 - } - } - }, - { - "id": "d7009c4a-5940-5655-8ff3-970329905f67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.026381, - "y": -2641.791547 - }, - "endPoint": { - "x": 316.179356, - "y": -2641.771343 - } - } - }, - { - "id": "ade03f14-a1a2-5f78-8909-9f1d2b3afa89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.179356, - "y": -2641.771343 - }, - "endPoint": { - "x": 316.280314, - "y": -2641.696415 - } - } - }, - { - "id": "c749e4a4-d3b1-5bf4-a7bd-dc7eff512fdd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.280314, - "y": -2641.696415 - }, - "endPoint": { - "x": 316.280314, - "y": -2641.526301 - } - } - }, - { - "id": "466561b6-5cbd-5816-a0de-748e5208df2e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.280314, - "y": -2641.526301 - }, - "endPoint": { - "x": 316.274568, - "y": -2641.382117 - } - } - }, - { - "id": "e5da970e-3daf-5b69-a3dd-04f82f3900e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.274568, - "y": -2641.382117 - }, - "endPoint": { - "x": 316.170738, - "y": -2641.321613 - } - } - }, - { - "id": "7bc211fc-635b-5013-ae04-c9d9028cb304", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.170738, - "y": -2641.321613 - }, - "endPoint": { - "x": 316.084144, - "y": -2641.286985 - } - } - }, - { - "id": "2e4d05ce-447f-551b-93a6-a42c4ce8ff19", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.084144, - "y": -2641.286985 - }, - "endPoint": { - "x": 315.916805, - "y": -2641.307189 - } - } - } - ] - }, - { - "id": "f5b007f0-a05c-5c4e-8da9-303e08e8f5bf", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "30a2ef3f-cba1-5069-9a98-ab81aeed0911", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.115883, - "y": -2637.139277 - }, - "endPoint": { - "x": 314.362633, - "y": -2636.988651 - } - } - }, - { - "id": "27d4dfbe-69a0-57da-866c-7ca9cfd5ca0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.362633, - "y": -2636.988651 - }, - "endPoint": { - "x": 314.590917, - "y": -2636.72368 - } - } - }, - { - "id": "b6881b03-3e35-5c66-a5a2-35aed92acf5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.590917, - "y": -2636.72368 - }, - "endPoint": { - "x": 314.795704, - "y": -2636.360219 - } - } - }, - { - "id": "70c7d5d9-e1a7-5429-9993-e4900d894765", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.795704, - "y": -2636.360219 - }, - "endPoint": { - "x": 314.993823, - "y": -2636.118756 - } - } - }, - { - "id": "793d1250-d53a-5a88-b0e5-f6199ea47c9a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.993823, - "y": -2636.118756 - }, - "endPoint": { - "x": 315.255554, - "y": -2635.961084 - } - } - }, - { - "id": "d32e968c-6884-5e56-b6b8-6d71bcf1e829", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.255554, - "y": -2635.961084 - }, - "endPoint": { - "x": 315.534213, - "y": -2635.833635 - } - } - }, - { - "id": "eb3ffae7-90dd-52df-a935-7d609061005e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.534213, - "y": -2635.833635 - }, - "endPoint": { - "x": 315.77922, - "y": -2635.84371 - } - } - }, - { - "id": "a1d2cf4d-3230-5a6b-8529-dd0eb3d00819", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.77922, - "y": -2635.84371 - }, - "endPoint": { - "x": 316.067934, - "y": -2635.964442 - } - } - }, - { - "id": "67d89669-6474-5459-9898-a2ccb516914f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.067934, - "y": -2635.964442 - }, - "endPoint": { - "x": 316.366702, - "y": -2636.195885 - } - } - }, - { - "id": "dd55a2dc-32d2-5a85-be65-d25265047744", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.366702, - "y": -2636.195885 - }, - "endPoint": { - "x": 316.58965, - "y": -2636.461462 - } - } - }, - { - "id": "f5db5d0e-eb8e-59b8-99db-26375a00133b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.58965, - "y": -2636.461462 - }, - "endPoint": { - "x": 316.710512, - "y": -2636.723075 - } - } - }, - { - "id": "53aef254-7c2c-567d-bd3f-8c160f744414", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.710512, - "y": -2636.723075 - }, - "endPoint": { - "x": 316.831374, - "y": -2636.934369 - } - } - }, - { - "id": "db33f7bb-83f2-500a-9b51-ffd64eebc2bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.831374, - "y": -2636.934369 - }, - "endPoint": { - "x": 317.103262, - "y": -2637.045026 - } - } - }, - { - "id": "3234100e-5905-5481-8dc6-2b32a919154a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.103262, - "y": -2637.045026 - }, - "endPoint": { - "x": 317.50268, - "y": -2637.071892 - } - } - }, - { - "id": "eb63f6d6-1cdd-56b6-a449-a83ed49e6028", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.50268, - "y": -2637.071892 - }, - "endPoint": { - "x": 317.757844, - "y": -2637.128927 - } - } - }, - { - "id": "0b0aa07e-49ca-54fd-ab5b-777e6ee29896", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.757844, - "y": -2637.128927 - }, - "endPoint": { - "x": 318.246011, - "y": -2637.115549 - } - } - }, - { - "id": "5219c47d-8d21-51b9-b030-7e3afc116123", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.246011, - "y": -2637.115549 - }, - "endPoint": { - "x": 318.450799, - "y": -2636.988101 - } - } - }, - { - "id": "310cfd63-6591-5965-bfd9-1dc79ebd6712", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.450799, - "y": -2636.988101 - }, - "endPoint": { - "x": 318.498712, - "y": -2636.958702 - } - } - }, - { - "id": "969a3307-e8f3-5859-8254-030613a832e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.498712, - "y": -2636.958702 - }, - "endPoint": { - "x": 318.723302, - "y": -2637.109108 - } - } - }, - { - "id": "3c1e7fb8-2719-5dbc-afcc-233caa10143d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.723302, - "y": -2637.109108 - }, - "endPoint": { - "x": 319.109998, - "y": -2637.500096 - } - } - }, - { - "id": "962b9d5d-55d8-50db-bea1-8d9a85aba610", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.109998, - "y": -2637.500096 - }, - "endPoint": { - "x": 319.659929, - "y": -2637.952688 - } - } - }, - { - "id": "3aa4bb0b-7ee2-5f05-936f-ffd35cc5bcfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.659929, - "y": -2637.952688 - }, - "endPoint": { - "x": 319.938486, - "y": -2638.302055 - } - } - }, - { - "id": "98fff4d3-d122-5891-ac2a-307bd297b896", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.938486, - "y": -2638.302055 - }, - "endPoint": { - "x": 319.964341, - "y": -2638.339547 - } - } - }, - { - "id": "dbb0bfee-b387-5603-ae14-64b982945b6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.964341, - "y": -2638.339547 - }, - "endPoint": { - "x": 319.820292, - "y": -2638.319617 - } - } - }, - { - "id": "5cf013b1-a2cc-5b09-8428-f6170b315ed7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.820292, - "y": -2638.319617 - }, - "endPoint": { - "x": 319.736161, - "y": -2638.311084 - } - } - }, - { - "id": "c12f3e20-4cde-5d63-ae7f-2a7cb5b5abeb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.736161, - "y": -2638.311084 - }, - "endPoint": { - "x": 319.633561, - "y": -2638.313947 - } - } - }, - { - "id": "ee5336c1-7124-5002-9c0d-2c1f6b784217", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.633561, - "y": -2638.313947 - }, - "endPoint": { - "x": 319.550867, - "y": -2638.336739 - } - } - }, - { - "id": "1cfa6bce-c937-5863-9cc6-5cec968d726c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.550867, - "y": -2638.336739 - }, - "endPoint": { - "x": 319.536605, - "y": -2638.382323 - } - } - }, - { - "id": "cb1365f4-5b9d-527c-8cce-281520468531", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.536605, - "y": -2638.382323 - }, - "endPoint": { - "x": 319.556509, - "y": -2638.439303 - } - } - }, - { - "id": "2287f642-4de5-51db-b3bd-4729054b9ede", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.556509, - "y": -2638.439303 - }, - "endPoint": { - "x": 319.562255, - "y": -2638.500522 - } - } - }, - { - "id": "654b8929-dc0b-5c14-bc44-7d74238bee9a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.562255, - "y": -2638.500522 - }, - "endPoint": { - "x": 319.530449, - "y": -2638.628466 - } - } - }, - { - "id": "0473f054-9f1a-5a77-9fa3-f50d5ff6d76f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.530449, - "y": -2638.628466 - }, - "endPoint": { - "x": 319.525114, - "y": -2638.75184 - } - } - }, - { - "id": "cfa4ff60-a01e-530c-873d-44e38e792be0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.525114, - "y": -2638.75184 - }, - "endPoint": { - "x": 319.537631, - "y": -2638.8609 - } - } - }, - { - "id": "28b62850-089d-514e-b17a-ae4b4472e56c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.537631, - "y": -2638.8609 - }, - "endPoint": { - "x": 319.544813, - "y": -2638.972934 - } - } - }, - { - "id": "fe34e698-e464-5530-83c1-56522e60c3b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.544813, - "y": -2638.972934 - }, - "endPoint": { - "x": 319.568001, - "y": -2639.123119 - } - } - }, - { - "id": "8d397882-ad40-525b-a113-c06b43a76abf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.568001, - "y": -2639.123119 - }, - "endPoint": { - "x": 319.55733, - "y": -2639.257283 - } - } - }, - { - "id": "21d35eaf-6688-56b7-90d0-fb659e896648", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.55733, - "y": -2639.257283 - }, - "endPoint": { - "x": 319.51075, - "y": -2639.402128 - } - } - }, - { - "id": "dd4dbbe0-b87b-5060-8c97-67c570ff1ef7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.51075, - "y": -2639.402128 - }, - "endPoint": { - "x": 319.39943, - "y": -2639.545652 - } - } - }, - { - "id": "dbcb20d4-7495-5450-b5ed-ed5845526bbd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.39943, - "y": -2639.545652 - }, - "endPoint": { - "x": 319.283185, - "y": -2639.652951 - } - } - }, - { - "id": "9215f2fc-81d4-5fd3-91e0-1d263a26a44c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.283185, - "y": -2639.652951 - }, - "endPoint": { - "x": 319.139957, - "y": -2639.72986 - } - } - }, - { - "id": "19289dcb-0b9b-5bf4-b626-92c953d763e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.139957, - "y": -2639.72986 - }, - "endPoint": { - "x": 319.102406, - "y": -2639.778142 - } - } - }, - { - "id": "f2975499-0406-5724-b7ff-9f5788a56a7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.102406, - "y": -2639.778142 - }, - "endPoint": { - "x": 319.060853, - "y": -2639.823671 - } - } - }, - { - "id": "9250c2cd-4221-531e-a7f8-6ca0ec322b81", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.060853, - "y": -2639.823671 - }, - "endPoint": { - "x": 318.770908, - "y": -2639.837985 - } - } - }, - { - "id": "3cda1906-b813-5d7b-9411-28986319a047", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.770908, - "y": -2639.837985 - }, - "endPoint": { - "x": 318.395087, - "y": -2639.837985 - } - } - }, - { - "id": "96d6f018-abad-5117-ac6a-5c3acca51973", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.395087, - "y": -2639.837985 - }, - "endPoint": { - "x": 318.259143, - "y": -2639.741421 - } - } - }, - { - "id": "9c53b11d-a157-580e-8fc8-204d143e4fcd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.259143, - "y": -2639.741421 - }, - "endPoint": { - "x": 318.214308, - "y": -2639.575106 - } - } - }, - { - "id": "b13ef06a-2ad6-5f84-9462-43a28a5da27a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.214308, - "y": -2639.575106 - }, - "endPoint": { - "x": 318.230108, - "y": -2639.443253 - } - } - }, - { - "id": "97d0cd04-86af-568b-a434-753d96e970c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.230108, - "y": -2639.443253 - }, - "endPoint": { - "x": 318.20692, - "y": -2639.303803 - } - } - }, - { - "id": "abfba636-2e6b-5e26-8966-1666e8c06bff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.20692, - "y": -2639.303803 - }, - "endPoint": { - "x": 318.149568, - "y": -2639.219737 - } - } - }, - { - "id": "6c8e8f95-5b38-5ac4-afdb-37bac3e6cdd8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.149568, - "y": -2639.219737 - }, - "endPoint": { - "x": 318.122789, - "y": -2639.142828 - } - } - }, - { - "id": "61aaab50-3fd4-5c9e-9aec-26b66df55e2e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.122789, - "y": -2639.142828 - }, - "endPoint": { - "x": 318.110272, - "y": -2638.862112 - } - } - }, - { - "id": "28d4a279-b129-54c5-bcd7-410431a778bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.110272, - "y": -2638.862112 - }, - "endPoint": { - "x": 318.029732, - "y": -2638.733342 - } - } - }, - { - "id": "2ad761c5-2adc-506b-9147-6af09fdb422a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.029732, - "y": -2638.733342 - }, - "endPoint": { - "x": 317.947345, - "y": -2638.6332 - } - } - }, - { - "id": "c5451d89-c440-5ddd-b1d3-ce78e95d53d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.947345, - "y": -2638.6332 - }, - "endPoint": { - "x": 317.875833, - "y": -2638.572367 - } - } - }, - { - "id": "4ee50f6f-3d6d-51e3-90b8-a5f78e9c7ae8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.875833, - "y": -2638.572367 - }, - "endPoint": { - "x": 317.828637, - "y": -2638.569999 - } - } - }, - { - "id": "504a15e8-9210-5c96-bfc3-66874db864b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.828637, - "y": -2638.569999 - }, - "endPoint": { - "x": 317.726654, - "y": -2638.612886 - } - } - }, - { - "id": "ff29fa6d-ba44-501c-952a-a504804bb62a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.726654, - "y": -2638.612886 - }, - "endPoint": { - "x": 317.622824, - "y": -2638.696952 - } - } - }, - { - "id": "7c78657b-097f-5c4c-ae41-b4c606c07284", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.622824, - "y": -2638.696952 - }, - "endPoint": { - "x": 317.570908, - "y": -2638.786358 - } - } - }, - { - "id": "14a6459e-2ea3-5ebc-8db5-7b8b5c07061b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.570908, - "y": -2638.786358 - }, - "endPoint": { - "x": 317.556647, - "y": -2638.965171 - } - } - }, - { - "id": "321586f8-929b-5f17-a1c9-582eb9e0cc8d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.556647, - "y": -2638.965171 - }, - "endPoint": { - "x": 317.513658, - "y": -2639.054578 - } - } - }, - { - "id": "2f0b6b8e-6be8-5ec2-bd63-f591dfa0f985", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.513658, - "y": -2639.054578 - }, - "endPoint": { - "x": 317.567317, - "y": -2639.169033 - } - } - }, - { - "id": "08cba5d2-157c-5062-aa8d-da30804d1532", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.567317, - "y": -2639.169033 - }, - "endPoint": { - "x": 317.567317, - "y": -2639.28448 - } - } - }, - { - "id": "37dac915-d30f-53cc-bfe1-adfabd429548", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.567317, - "y": -2639.28448 - }, - "endPoint": { - "x": 317.569062, - "y": -2639.500839 - } - } - }, - { - "id": "0647507c-bc91-5d6d-bb2e-f18bf3d25b6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.569062, - "y": -2639.500839 - }, - "endPoint": { - "x": 317.597687, - "y": -2639.643922 - } - } - }, - { - "id": "265006d8-c598-557b-9c7f-d809e8cb4cc3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.597687, - "y": -2639.643922 - }, - "endPoint": { - "x": 317.683562, - "y": -2639.695782 - } - } - }, - { - "id": "9cd1a1a5-be0d-5260-90c9-167fc1fa500d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.683562, - "y": -2639.695782 - }, - "endPoint": { - "x": 317.758767, - "y": -2639.854335 - } - } - }, - { - "id": "c84c27c4-8542-51ae-a094-d5173d1f7a37", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.758767, - "y": -2639.854335 - }, - "endPoint": { - "x": 317.916257, - "y": -2639.938402 - } - } - }, - { - "id": "e4bb8d4c-8ea4-5a89-a1f7-cd3f58b2ddaf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.916257, - "y": -2639.938402 - }, - "endPoint": { - "x": 318.169985, - "y": -2639.940604 - } - } - }, - { - "id": "7958ed80-9903-5620-a5f1-457f6e2cf679", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.169985, - "y": -2639.940604 - }, - "endPoint": { - "x": 318.391599, - "y": -2639.926675 - } - } - }, - { - "id": "0fbd5c8c-7808-582e-8193-f27b7f816a3f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.391599, - "y": -2639.926675 - }, - "endPoint": { - "x": 318.692214, - "y": -2639.937521 - } - } - }, - { - "id": "f01b208c-ba92-5424-b66d-e502eab62431", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.692214, - "y": -2639.937521 - }, - "endPoint": { - "x": 319.122207, - "y": -2639.952991 - } - } - }, - { - "id": "fb67522f-0f57-56ae-b384-1f606f6f614e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.122207, - "y": -2639.952991 - }, - "endPoint": { - "x": 319.503363, - "y": -2640.007218 - } - } - }, - { - "id": "aa6ac79b-6cb6-5546-91df-44bd82889d3e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.503363, - "y": -2640.007218 - }, - "endPoint": { - "x": 319.853637, - "y": -2640.083081 - } - } - }, - { - "id": "c3f6e540-2cc2-5adb-b4fb-8c2b95ded029", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.853637, - "y": -2640.083081 - }, - "endPoint": { - "x": 320.08274, - "y": -2640.261123 - } - } - }, - { - "id": "b77818b4-432d-5872-a5ac-209b20766ee8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.08274, - "y": -2640.261123 - }, - "endPoint": { - "x": 320.257262, - "y": -2640.514809 - } - } - }, - { - "id": "9f8f0e87-0dab-5b38-996c-35d665607bee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.257262, - "y": -2640.514809 - }, - "endPoint": { - "x": 320.265264, - "y": -2640.827896 - } - } - }, - { - "id": "e46f2c52-f686-5ba6-8930-9c2c74021c41", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.265264, - "y": -2640.827896 - }, - "endPoint": { - "x": 320.281065, - "y": -2641.041888 - } - } - }, - { - "id": "354b40fd-d5a2-514a-b84d-eeb367e4d312", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.281065, - "y": -2641.041888 - }, - "endPoint": { - "x": 320.185853, - "y": -2641.25588 - } - } - }, - { - "id": "22bfa58b-5a69-5d69-80e9-82c5a0324174", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.185853, - "y": -2641.25588 - }, - "endPoint": { - "x": 320.094642, - "y": -2641.39065 - } - } - }, - { - "id": "1f52412d-aa33-59c1-a30a-f532e7a5bd46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.094642, - "y": -2641.39065 - }, - "endPoint": { - "x": 319.884416, - "y": -2641.505546 - } - } - }, - { - "id": "94267c90-abbc-525f-a41e-9bc7442fddb8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.884416, - "y": -2641.505546 - }, - "endPoint": { - "x": 319.499772, - "y": -2641.54122 - } - } - }, - { - "id": "89e7b491-52f6-502c-b618-1b41914b7d04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.499772, - "y": -2641.54122 - }, - "endPoint": { - "x": 319.059519, - "y": -2641.553112 - } - } - }, - { - "id": "891fc486-d88e-584f-8895-d5e87547b5f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.059519, - "y": -2641.553112 - }, - "endPoint": { - "x": 318.559759, - "y": -2641.521401 - } - } - }, - { - "id": "6c4dadd6-6f66-578d-a6be-6246f3b20b4a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.559759, - "y": -2641.521401 - }, - "endPoint": { - "x": 318.416941, - "y": -2641.461944 - } - } - }, - { - "id": "5f997e21-07c1-5bb0-8962-45631b2bb542", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.416941, - "y": -2641.461944 - }, - "endPoint": { - "x": 318.119506, - "y": -2641.446088 - } - } - }, - { - "id": "b461fa80-45d1-5de3-aca7-66e6508177bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.119506, - "y": -2641.446088 - }, - "endPoint": { - "x": 317.897379, - "y": -2641.461944 - } - } - }, - { - "id": "d5bc82dd-8aaf-5285-a456-be6f6198d8bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.897379, - "y": -2641.461944 - }, - "endPoint": { - "x": 317.725731, - "y": -2641.698067 - } - } - }, - { - "id": "6143f1e4-f2a1-57ad-b5e7-5e016310614f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.725731, - "y": -2641.698067 - }, - "endPoint": { - "x": 317.678125, - "y": -2641.816982 - } - } - }, - { - "id": "871a43ae-59d4-5a4c-9043-abf99c623c4f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.678125, - "y": -2641.816982 - }, - "endPoint": { - "x": 317.598815, - "y": -2641.924005 - } - } - }, - { - "id": "08cacd35-db67-5c31-a4de-a8665ea23d2d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.598815, - "y": -2641.924005 - }, - "endPoint": { - "x": 317.444096, - "y": -2642.102322 - } - } - }, - { - "id": "bebb8aac-1455-5d31-aba9-01f615e907c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.444096, - "y": -2642.102322 - }, - "endPoint": { - "x": 317.348884, - "y": -2642.201418 - } - } - }, - { - "id": "a005fc82-2a78-5610-9342-8783c6aaf56f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.348884, - "y": -2642.201418 - }, - "endPoint": { - "x": 317.333084, - "y": -2642.407482 - } - } - }, - { - "id": "b0884f5e-d0ef-5bcc-b594-bf807b1db609", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.333084, - "y": -2642.407482 - }, - "endPoint": { - "x": 317.392591, - "y": -2642.554089 - } - } - }, - { - "id": "757335a1-50b1-5284-af8e-ecf32e44d85e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.392591, - "y": -2642.554089 - }, - "endPoint": { - "x": 317.499602, - "y": -2642.621474 - } - } - }, - { - "id": "5a2f48e3-a6dc-514d-85ae-59a1534a9836", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.499602, - "y": -2642.621474 - }, - "endPoint": { - "x": 317.832844, - "y": -2642.633366 - } - } - }, - { - "id": "8268c2aa-6432-500a-9c05-cc87b77a7526", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.832844, - "y": -2642.633366 - }, - "endPoint": { - "x": 318.364308, - "y": -2642.637329 - } - } - }, - { - "id": "a1f24ad8-b54f-5df1-9eae-a26fa4eacba4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.364308, - "y": -2642.637329 - }, - "endPoint": { - "x": 318.570532, - "y": -2642.633366 - } - } - }, - { - "id": "9aa9910a-1600-5993-8b5c-c3dd1a662c46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.570532, - "y": -2642.633366 - }, - "endPoint": { - "x": 318.72125, - "y": -2642.51847 - } - } - }, - { - "id": "357e939e-9e18-5600-a27e-3050140b8105", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.72125, - "y": -2642.51847 - }, - "endPoint": { - "x": 318.963179, - "y": -2642.447121 - } - } - }, - { - "id": "b1d3e8a5-c977-564e-add6-03a39381d007", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.963179, - "y": -2642.447121 - }, - "endPoint": { - "x": 319.198028, - "y": -2642.403684 - } - } - }, - { - "id": "2b13a96a-bae2-5522-9a76-d7de6a8ae2a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.198028, - "y": -2642.403684 - }, - "endPoint": { - "x": 319.475661, - "y": -2642.407647 - } - } - }, - { - "id": "f4caaccb-8ede-5d47-be5e-d6f9d6a472af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.475661, - "y": -2642.407647 - }, - "endPoint": { - "x": 319.793001, - "y": -2642.39972 - } - } - }, - { - "id": "3257797b-e8ce-5255-a925-90e75ecbc3be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.793001, - "y": -2642.39972 - }, - "endPoint": { - "x": 319.931817, - "y": -2642.387828 - } - } - }, - { - "id": "3f7342bd-4893-562b-a479-577a5e49f96f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.931817, - "y": -2642.387828 - }, - "endPoint": { - "x": 319.991325, - "y": -2642.463141 - } - } - }, - { - "id": "0e3e7af5-7793-5f44-b24a-09ee6e0d3629", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.991325, - "y": -2642.463141 - }, - "endPoint": { - "x": 320.122241, - "y": -2642.498816 - } - } - }, - { - "id": "d323ffdc-036b-58c1-83d4-70489726be19", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.122241, - "y": -2642.498816 - }, - "endPoint": { - "x": 320.20945, - "y": -2642.502779 - } - } - }, - { - "id": "0fd89ee0-5e53-5a2e-8f89-8f097e9372ff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.20945, - "y": -2642.502779 - }, - "endPoint": { - "x": 320.264957, - "y": -2642.558273 - } - } - }, - { - "id": "4b09d2fe-e9af-5713-b2fd-7f8f0b63b359", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.264957, - "y": -2642.558273 - }, - "endPoint": { - "x": 320.304662, - "y": -2642.669205 - } - } - }, - { - "id": "c84182e5-c805-5b4c-a8f9-afe7e684e273", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.304662, - "y": -2642.669205 - }, - "endPoint": { - "x": 320.368069, - "y": -2642.744518 - } - } - }, - { - "id": "0c6444d0-175f-5e82-8452-26685943ee36", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.368069, - "y": -2642.744518 - }, - "endPoint": { - "x": 320.397309, - "y": -2643.08794 - } - } - }, - { - "id": "c86fe709-e77e-5182-9e68-0376d57828db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.397309, - "y": -2643.08794 - }, - "endPoint": { - "x": 320.407056, - "y": -2643.317346 - } - } - }, - { - "id": "360e5dee-7180-57e8-a860-fe450585c837", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.407056, - "y": -2643.317346 - }, - "endPoint": { - "x": 320.399156, - "y": -2643.694406 - } - } - }, - { - "id": "3438f0d3-5913-5e93-a0e6-21ebec71602c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.399156, - "y": -2643.694406 - }, - "endPoint": { - "x": 320.191496, - "y": -2644.166102 - } - } - }, - { - "id": "8d14d685-029e-59fc-82ca-364c72e6d564", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.191496, - "y": -2644.166102 - }, - "endPoint": { - "x": 319.858767, - "y": -2644.502862 - } - } - }, - { - "id": "2c9d82e5-5196-57d6-8ffc-f08bf869ff28", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.858767, - "y": -2644.502862 - }, - "endPoint": { - "x": 319.52614, - "y": -2644.599095 - } - } - }, - { - "id": "a0bdf768-cdd9-584e-a79d-560225ea4486", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.52614, - "y": -2644.599095 - }, - "endPoint": { - "x": 319.324738, - "y": -2644.647211 - } - } - }, - { - "id": "6bdc18a0-6aaa-5cce-bb89-3319321998c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.324738, - "y": -2644.647211 - }, - "endPoint": { - "x": 318.856373, - "y": -2644.699677 - } - } - }, - { - "id": "8ce0c3f7-497d-59ed-9139-ca810381a687", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.856373, - "y": -2644.699677 - }, - "endPoint": { - "x": 318.676927, - "y": -2644.73904 - } - } - }, - { - "id": "268be169-f2bd-5195-8b17-186fa8451c4b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.676927, - "y": -2644.73904 - }, - "endPoint": { - "x": 317.770874, - "y": -2644.577239 - } - } - }, - { - "id": "9a1098ed-f624-57b9-94ae-cadb08baa841", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.770874, - "y": -2644.577239 - }, - "endPoint": { - "x": 317.363761, - "y": -2644.502862 - } - } - }, - { - "id": "a79e6292-3d39-59da-8e6a-2da80f9d1674", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.363761, - "y": -2644.502862 - }, - "endPoint": { - "x": 316.831374, - "y": -2644.301147 - } - } - }, - { - "id": "e5ab04ec-22d6-5f57-b7f1-77d4806d4ec6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.831374, - "y": -2644.301147 - }, - "endPoint": { - "x": 316.603706, - "y": -2644.22677 - } - } - }, - { - "id": "966dba1c-92f7-5212-b0ae-a47766f9fcae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.603706, - "y": -2644.22677 - }, - "endPoint": { - "x": 316.393583, - "y": -2644.051811 - } - } - }, - { - "id": "4a39798c-bf2e-5988-82e6-e96b5a5bc8b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.393583, - "y": -2644.051811 - }, - "endPoint": { - "x": 316.218549, - "y": -2643.872503 - } - } - }, - { - "id": "882c4224-ad31-5f5f-93de-9d5b2669791b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.218549, - "y": -2643.872503 - }, - "endPoint": { - "x": 316.082811, - "y": -2643.863749 - } - } - }, - { - "id": "b84a52e3-f464-5a56-8334-f65cfd0d44c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.082811, - "y": -2643.863749 - }, - "endPoint": { - "x": 315.920909, - "y": -2643.959982 - } - } - }, - { - "id": "1084b746-a06f-52f1-b2d3-5b74e16f1e4b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.920909, - "y": -2643.959982 - }, - "endPoint": { - "x": 315.658255, - "y": -2644.152448 - } - } - }, - { - "id": "7406cee4-4624-511e-a89c-cf3fd6827fdb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.658255, - "y": -2644.152448 - }, - "endPoint": { - "x": 315.417558, - "y": -2644.222421 - } - } - }, - { - "id": "2a3b6f87-9b75-54f0-8df7-fac8c3de0821", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.417558, - "y": -2644.222421 - }, - "endPoint": { - "x": 315.211744, - "y": -2644.336106 - } - } - }, - { - "id": "003799f6-6cc2-516e-a882-e86feaf0a211", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.211744, - "y": -2644.336106 - }, - "endPoint": { - "x": 314.949193, - "y": -2644.458599 - } - } - }, - { - "id": "836d5160-3351-5633-8e49-4bdbb5201883", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.949193, - "y": -2644.458599 - }, - "endPoint": { - "x": 314.59461, - "y": -2644.633558 - } - } - }, - { - "id": "c3c484eb-96a4-5235-8b0d-bd9ef64ff86a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.59461, - "y": -2644.633558 - }, - "endPoint": { - "x": 314.318824, - "y": -2644.725387 - } - } - }, - { - "id": "1ce96268-dd9f-50be-aeb6-a23afc594ca1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.318824, - "y": -2644.725387 - }, - "endPoint": { - "x": 314.174364, - "y": -2644.804113 - } - } - }, - { - "id": "4aa32729-f20a-562c-ae4f-369c91770ceb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.174364, - "y": -2644.804113 - }, - "endPoint": { - "x": 313.671013, - "y": -2644.825969 - } - } - }, - { - "id": "660b0a29-c907-53a2-a354-0d45c39d6aeb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.671013, - "y": -2644.825969 - }, - "endPoint": { - "x": 313.059522, - "y": -2644.796516 - } - } - }, - { - "id": "3124535c-e72d-5082-b219-c7a0901c99a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.059522, - "y": -2644.796516 - }, - "endPoint": { - "x": 312.696218, - "y": -2644.757153 - } - } - }, - { - "id": "d08c0123-9168-5412-8aa1-a564f61de3b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.696218, - "y": -2644.757153 - }, - "endPoint": { - "x": 312.402887, - "y": -2644.542831 - } - } - }, - { - "id": "4c7921e1-2a12-5e70-abad-cb479ecbdcd9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.402887, - "y": -2644.542831 - }, - "endPoint": { - "x": 312.07457, - "y": -2644.381029 - } - } - }, - { - "id": "5f610739-e243-5816-b8a8-c85397877263", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.07457, - "y": -2644.381029 - }, - "endPoint": { - "x": 311.794475, - "y": -2643.982995 - } - } - }, - { - "id": "fbe928f0-3931-5e02-baba-7bea3f6d899d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.794475, - "y": -2643.982995 - }, - "endPoint": { - "x": 311.662635, - "y": -2643.80187 - } - } - }, - { - "id": "db2615d4-0a59-5717-af16-4bdfbf4b8714", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.662635, - "y": -2643.80187 - }, - "endPoint": { - "x": 311.658223, - "y": -2643.360123 - } - } - }, - { - "id": "c41ce53c-a752-5757-9c87-ab0860bfc896", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.658223, - "y": -2643.360123 - }, - "endPoint": { - "x": 311.737019, - "y": -2643.193917 - } - } - }, - { - "id": "688eeb7d-a7e4-50fc-bb59-9b07cffe42a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.737019, - "y": -2643.193917 - }, - "endPoint": { - "x": 311.776417, - "y": -2643.018958 - } - } - }, - { - "id": "2d22d718-5915-5042-acbe-5bc5b01dd5e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.776417, - "y": -2643.018958 - }, - "endPoint": { - "x": 312.008394, - "y": -2642.721561 - } - } - }, - { - "id": "9d06421d-4a8b-582c-acac-670bd6dfc297", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.008394, - "y": -2642.721561 - }, - "endPoint": { - "x": 312.266636, - "y": -2642.494081 - } - } - }, - { - "id": "03d01d09-9d75-5eed-adb2-87e6f2caeecb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.266636, - "y": -2642.494081 - }, - "endPoint": { - "x": 312.695603, - "y": -2642.432862 - } - } - }, - { - "id": "09376fa4-c917-54bc-93b2-702b36be2d51", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.695603, - "y": -2642.432862 - }, - "endPoint": { - "x": 312.995192, - "y": -2642.461545 - } - } - }, - { - "id": "80550cf2-09eb-5350-b584-bdb88b0e7b1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.995192, - "y": -2642.461545 - }, - "endPoint": { - "x": 313.415336, - "y": -2642.465894 - } - } - }, - { - "id": "dfe338b5-c05f-5970-b023-6571a8299029", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.415336, - "y": -2642.465894 - }, - "endPoint": { - "x": 313.564207, - "y": -2642.48775 - } - } - }, - { - "id": "75bc2914-50a7-58dc-99fe-97602fc14542", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.564207, - "y": -2642.48775 - }, - "endPoint": { - "x": 313.68671, - "y": -2642.583983 - } - } - }, - { - "id": "c5ae1f2b-d1ad-5edc-b62d-236880bb258a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.68671, - "y": -2642.583983 - }, - "endPoint": { - "x": 313.752374, - "y": -2642.614592 - } - } - }, - { - "id": "3149be26-c9b0-5b07-8814-cf8e697364ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.752374, - "y": -2642.614592 - }, - "endPoint": { - "x": 314.015028, - "y": -2642.618997 - } - } - }, - { - "id": "3e0c4c22-8bb4-57eb-8368-1ff0aa9b4233", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.015028, - "y": -2642.618997 - }, - "endPoint": { - "x": 314.443995, - "y": -2642.623346 - } - } - }, - { - "id": "bc860a36-910e-564e-b45e-643eb16b17dc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.443995, - "y": -2642.623346 - }, - "endPoint": { - "x": 314.592866, - "y": -2642.632099 - } - } - }, - { - "id": "2833e30b-8c87-50e4-a825-0b064fc3040a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.592866, - "y": -2642.632099 - }, - "endPoint": { - "x": 314.62344, - "y": -2642.518359 - } - } - }, - { - "id": "af20c6d2-62aa-58fe-92df-ef131627e439", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.62344, - "y": -2642.518359 - }, - "endPoint": { - "x": 314.540335, - "y": -2642.295339 - } - } - }, - { - "id": "bf3dadbc-e20b-5ad9-b333-cb9402582c32", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.540335, - "y": -2642.295339 - }, - "endPoint": { - "x": 314.321491, - "y": -2642.011044 - } - } - }, - { - "id": "db555265-34d8-5ad5-9845-4430859e5a40", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.321491, - "y": -2642.011044 - }, - "endPoint": { - "x": 314.225151, - "y": -2641.840434 - } - } - }, - { - "id": "dce1d436-3547-5b06-8b51-ae3296421932", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.225151, - "y": -2641.840434 - }, - "endPoint": { - "x": 313.98435, - "y": -2641.818578 - } - } - }, - { - "id": "3bb0335e-69ee-51c5-b5df-9bec5b125131", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.98435, - "y": -2641.818578 - }, - "endPoint": { - "x": 313.866259, - "y": -2641.787969 - } - } - }, - { - "id": "fa0abba0-6d1c-5acf-8247-bdf62d12f4d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.866259, - "y": -2641.787969 - }, - "endPoint": { - "x": 313.800595, - "y": -2641.726694 - } - } - }, - { - "id": "51f3759e-a31c-5bd0-840f-71330e901f71", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.800595, - "y": -2641.726694 - }, - "endPoint": { - "x": 313.502955, - "y": -2641.726694 - } - } - }, - { - "id": "b511c799-b569-5a1b-879f-65c79d13d064", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.502955, - "y": -2641.726694 - }, - "endPoint": { - "x": 313.47669, - "y": -2641.805476 - } - } - }, - { - "id": "f8975b8f-0d7e-5137-8ac9-d526ff1b5f6c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.47669, - "y": -2641.805476 - }, - "endPoint": { - "x": 313.174638, - "y": -2641.822927 - } - } - }, - { - "id": "24411965-295c-5737-b36e-9cf7bd78c462", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.174638, - "y": -2641.822927 - }, - "endPoint": { - "x": 312.35169, - "y": -2641.840434 - } - } - }, - { - "id": "802b0e68-0a23-5e94-8836-821c1db63fa2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.35169, - "y": -2641.840434 - }, - "endPoint": { - "x": 311.983975, - "y": -2641.814174 - } - } - }, - { - "id": "aabe8300-b75e-5f15-bef9-c0dd4ac7e91a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.983975, - "y": -2641.814174 - }, - "endPoint": { - "x": 311.90087, - "y": -2641.735448 - } - } - }, - { - "id": "713daa35-4738-5e45-9345-bd6380c737b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.90087, - "y": -2641.735448 - }, - "endPoint": { - "x": 311.769543, - "y": -2641.626112 - } - } - }, - { - "id": "3a4a00ac-2447-5295-bd9a-67b262571317", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.769543, - "y": -2641.626112 - }, - "endPoint": { - "x": 311.667252, - "y": -2641.541385 - } - } - }, - { - "id": "7da8633a-72d6-5824-9b5c-5590fcc54703", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.667252, - "y": -2641.541385 - }, - "endPoint": { - "x": 311.632265, - "y": -2641.458255 - } - } - }, - { - "id": "8d8971aa-ae3e-5301-af45-5d77a2ce6342", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.632265, - "y": -2641.458255 - }, - "endPoint": { - "x": 311.575323, - "y": -2641.217728 - } - } - }, - { - "id": "a89783d0-67d3-5ab7-8970-f9407ea87053", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.575323, - "y": -2641.217728 - }, - "endPoint": { - "x": 311.557881, - "y": -2641.016508 - } - } - }, - { - "id": "2609020d-f6fd-5cda-868f-8e8561a3cf27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.557881, - "y": -2641.016508 - }, - "endPoint": { - "x": 311.627854, - "y": -2640.535398 - } - } - }, - { - "id": "fadd8750-d9a8-5382-aa16-f4fc68f98465", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.627854, - "y": -2640.535398 - }, - "endPoint": { - "x": 311.820227, - "y": -2640.252755 - } - } - }, - { - "id": "b1833382-3ff1-5891-8262-5e8b2a2182f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.820227, - "y": -2640.252755 - }, - "endPoint": { - "x": 312.135309, - "y": -2640.099707 - } - } - }, - { - "id": "8156f5d0-b637-5852-92f5-eeaab03a7b60", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.135309, - "y": -2640.099707 - }, - "endPoint": { - "x": 312.481171, - "y": -2640.095303 - } - } - }, - { - "id": "f922e657-222f-5918-a041-55dd2737ec50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.481171, - "y": -2640.095303 - }, - "endPoint": { - "x": 312.505179, - "y": -2640.043278 - } - } - }, - { - "id": "9b5a3066-fb6b-57d7-8a4c-2bf786d4403a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.505179, - "y": -2640.043278 - }, - "endPoint": { - "x": 312.459009, - "y": -2639.989436 - } - } - }, - { - "id": "5f010d6b-d3e7-5da6-80ba-effc1c9c3228", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.459009, - "y": -2639.989436 - }, - "endPoint": { - "x": 312.174297, - "y": -2639.877953 - } - } - }, - { - "id": "92d95270-70c1-5324-aa22-45dcd0bca64b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.174297, - "y": -2639.877953 - }, - "endPoint": { - "x": 311.912566, - "y": -2639.697214 - } - } - }, - { - "id": "2dd4e337-7408-52ef-b70f-d697002478c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.912566, - "y": -2639.697214 - }, - "endPoint": { - "x": 311.808736, - "y": -2639.501114 - } - } - }, - { - "id": "38079e98-9f19-5be3-bc60-f280b925d602", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.808736, - "y": -2639.501114 - }, - "endPoint": { - "x": 311.777443, - "y": -2638.895144 - } - } - }, - { - "id": "2ed13123-fab8-5b63-812e-854a1b808a1e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.777443, - "y": -2638.895144 - }, - "endPoint": { - "x": 311.86219, - "y": -2638.422182 - } - } - }, - { - "id": "0672cef5-d8e0-5862-8780-f83dc1bf9b78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.86219, - "y": -2638.422182 - }, - "endPoint": { - "x": 311.958325, - "y": -2637.995409 - } - } - }, - { - "id": "08ec9ca8-6619-5e6a-b9f1-40408ae9d83d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.958325, - "y": -2637.995409 - }, - "endPoint": { - "x": 312.305418, - "y": -2637.612514 - } - } - }, - { - "id": "005d9091-1964-5d88-a202-bf147b6fe8dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.305418, - "y": -2637.612514 - }, - "endPoint": { - "x": 312.632504, - "y": -2637.389494 - } - } - }, - { - "id": "8896c7fd-4d5b-5d4f-a1a3-622e3b28db17", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.632504, - "y": -2637.389494 - }, - "endPoint": { - "x": 312.794098, - "y": -2637.254944 - } - } - }, - { - "id": "bc76694d-c4ae-540a-8ced-f0e0b91cecd3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.794098, - "y": -2637.254944 - }, - "endPoint": { - "x": 313.101998, - "y": -2637.239529 - } - } - }, - { - "id": "69b28cf8-146c-568f-beeb-dec78cc8b781", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.101998, - "y": -2637.239529 - }, - "endPoint": { - "x": 313.198133, - "y": -2637.158821 - } - } - }, - { - "id": "62255204-7549-537d-bc5a-513144d23b16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.198133, - "y": -2637.158821 - }, - "endPoint": { - "x": 313.613762, - "y": -2637.135754 - } - } - }, - { - "id": "e0a522a1-fb03-53dd-bade-ff5a9e373af1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.613762, - "y": -2637.135754 - }, - "endPoint": { - "x": 314.025493, - "y": -2637.139552 - } - } - }, - { - "id": "63b93eb2-9941-5eb1-919b-7aebb1a0f5f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.025493, - "y": -2637.139552 - }, - "endPoint": { - "x": 314.115883, - "y": -2637.139277 - } - } - } - ] - }, - { - "id": "f13263d6-a7f4-5071-8ebb-37f363e4bd5e", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "d628c52a-6f34-563b-a346-2cc312842169", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.332949, - "y": -2639.870741 - }, - "endPoint": { - "x": 313.581957, - "y": -2639.594925 - } - } - }, - { - "id": "8a4e84f7-4978-5bac-b425-21c2e38eb78a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.581957, - "y": -2639.594925 - }, - "endPoint": { - "x": 313.700972, - "y": -2639.329954 - } - } - }, - { - "id": "7eb2cda6-050b-56be-afbf-ea3136724314", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.700972, - "y": -2639.329954 - }, - "endPoint": { - "x": 313.711847, - "y": -2638.956803 - } - } - }, - { - "id": "8bfd9a4a-51d9-5a8e-a603-8c9186e7590f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.711847, - "y": -2638.956803 - }, - "endPoint": { - "x": 313.738933, - "y": -2638.805407 - } - } - }, - { - "id": "c7626a75-f28c-5ce1-b38f-3fb851a6f931", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.738933, - "y": -2638.805407 - }, - "endPoint": { - "x": 313.841738, - "y": -2638.751345 - } - } - }, - { - "id": "3deaad33-cfad-5264-be31-a24af59db113", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.841738, - "y": -2638.751345 - }, - "endPoint": { - "x": 314.00405, - "y": -2638.832438 - } - } - }, - { - "id": "8c0768ea-afe0-5ade-a0da-ab11d000dd39", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.00405, - "y": -2638.832438 - }, - "endPoint": { - "x": 314.074433, - "y": -2638.99468 - } - } - }, - { - "id": "968dbff9-e40b-5c28-a20a-1d63dbc693d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.074433, - "y": -2638.99468 - }, - "endPoint": { - "x": 314.155588, - "y": -2639.108254 - } - } - }, - { - "id": "9ab496ec-f135-5add-9c39-5e30cf6ca164", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.155588, - "y": -2639.108254 - }, - "endPoint": { - "x": 314.177237, - "y": -2639.254256 - } - } - }, - { - "id": "3a00a338-5488-5947-b216-9dcc24c0ea5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.177237, - "y": -2639.254256 - }, - "endPoint": { - "x": 314.19355, - "y": -2639.4868 - } - } - }, - { - "id": "20248960-370e-588f-8d83-31e6411e584c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.19355, - "y": -2639.4868 - }, - "endPoint": { - "x": 314.144816, - "y": -2639.622011 - } - } - }, - { - "id": "8ad664d4-7250-5346-bdf2-b3c368508c26", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.144816, - "y": -2639.622011 - }, - "endPoint": { - "x": 314.025698, - "y": -2639.740981 - } - } - }, - { - "id": "f66db291-90c1-5c70-98fb-b69147d11641", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.025698, - "y": -2639.740981 - }, - "endPoint": { - "x": 313.912121, - "y": -2639.865346 - } - } - }, - { - "id": "3fd2000f-899e-567e-be61-f2b00d9287e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.912121, - "y": -2639.865346 - }, - "endPoint": { - "x": 313.820089, - "y": -2639.957285 - } - } - }, - { - "id": "1ba89a2e-285a-5320-ba54-bbd5e2a29578", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.820089, - "y": -2639.957285 - }, - "endPoint": { - "x": 313.544098, - "y": -2640.000557 - } - } - }, - { - "id": "542756c5-e72d-56b0-82a4-75605d2361f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.544098, - "y": -2640.000557 - }, - "endPoint": { - "x": 313.338386, - "y": -2640.016742 - } - } - }, - { - "id": "7d1a3bc6-3427-5141-b0c3-de8a5a7510a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.338386, - "y": -2640.016742 - }, - "endPoint": { - "x": 313.29037, - "y": -2639.985637 - } - } - }, - { - "id": "c7553358-5105-5d5f-9b50-21949f5bea7e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.29037, - "y": -2639.985637 - }, - "endPoint": { - "x": 313.286676, - "y": -2639.935484 - } - } - }, - { - "id": "d6df28b2-d7e5-5b2d-8600-6c053cef2355", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.286676, - "y": -2639.935484 - }, - "endPoint": { - "x": 313.29591, - "y": -2639.889019 - } - } - }, - { - "id": "958b3e8d-e9b7-5a4f-b97f-146558a9523f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.29591, - "y": -2639.889019 - }, - "endPoint": { - "x": 313.332949, - "y": -2639.870741 - } - } - } - ] - }, - { - "id": "9ec1e16b-0b35-5592-a821-b25cc98a2b79", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "959fde0c-fa69-5ce6-92d2-d0d8780b12b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.963796, - "y": -2639.953872 - }, - "endPoint": { - "x": 316.129083, - "y": -2639.863309 - } - } - }, - { - "id": "2c057ad5-27da-5563-a478-7770ccd50451", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.129083, - "y": -2639.863309 - }, - "endPoint": { - "x": 316.257024, - "y": -2639.671559 - } - } - }, - { - "id": "401a0fcb-e3b5-53cc-afb6-46ca3981a509", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.257024, - "y": -2639.671559 - }, - "endPoint": { - "x": 316.272414, - "y": -2639.350268 - } - } - }, - { - "id": "bbc7175a-7777-593a-9ba6-b1c60f40b6a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.272414, - "y": -2639.350268 - }, - "endPoint": { - "x": 316.259384, - "y": -2639.073351 - } - } - }, - { - "id": "cdc58407-5eaa-5d18-9cd4-88d4333997f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.259384, - "y": -2639.073351 - }, - "endPoint": { - "x": 316.131237, - "y": -2638.890464 - } - } - }, - { - "id": "4af789c3-ba8d-5a88-b8eb-8c6cb6c3fc25", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.131237, - "y": -2638.890464 - }, - "endPoint": { - "x": 315.942968, - "y": -2638.741545 - } - } - }, - { - "id": "a0160700-0115-5531-94f1-9aaa1167453b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.942968, - "y": -2638.741545 - }, - "endPoint": { - "x": 315.739001, - "y": -2638.710165 - } - } - }, - { - "id": "487d6b63-fca3-564b-a6c8-a29fe2e36a43", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.739001, - "y": -2638.710165 - }, - "endPoint": { - "x": 315.576894, - "y": -2638.817298 - } - } - }, - { - "id": "c008c476-32cb-5b28-8b1e-9aabd5d747be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.576894, - "y": -2638.817298 - }, - "endPoint": { - "x": 315.472346, - "y": -2638.960987 - } - } - }, - { - "id": "0b44fab0-1806-5383-bad1-c0cfa5c275d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.472346, - "y": -2638.960987 - }, - "endPoint": { - "x": 315.359897, - "y": -2639.151691 - } - } - }, - { - "id": "6a2f71e8-6821-5d16-b5bd-4e80cdfc6968", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.359897, - "y": -2639.151691 - }, - "endPoint": { - "x": 315.323269, - "y": -2639.318943 - } - } - }, - { - "id": "b7876053-bd03-5f04-9049-0ff3814ea8af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.323269, - "y": -2639.318943 - }, - "endPoint": { - "x": 315.341634, - "y": -2639.475679 - } - } - }, - { - "id": "39780d91-e972-5197-b0ee-ce307d9393a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.341634, - "y": -2639.475679 - }, - "endPoint": { - "x": 315.446183, - "y": -2639.621956 - } - } - }, - { - "id": "1e4ab876-bdd9-50b9-af33-b5faa6540ad4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.446183, - "y": -2639.621956 - }, - "endPoint": { - "x": 315.60829, - "y": -2639.82312 - } - } - }, - { - "id": "5a00a0f5-ebf4-51c8-add8-7f8d989ea482", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.60829, - "y": -2639.82312 - }, - "endPoint": { - "x": 315.799227, - "y": -2639.930254 - } - } - }, - { - "id": "accbf16f-d6a7-54e5-8c66-0a9bfbfc0574", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.799227, - "y": -2639.930254 - }, - "endPoint": { - "x": 315.963796, - "y": -2639.953872 - } - } - } - ] - }, - { - "id": "e3a1fa37-6b0e-5c4c-af1a-a4e8e4e6b53a", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "3f8ae6f9-2941-56ba-b915-0838b3f51eae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.902339, - "y": -2641.785767 - }, - "endPoint": { - "x": 315.795636, - "y": -2641.690635 - } - } - }, - { - "id": "4ab013d5-1261-5d68-94fd-950ee44f1ca4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.795636, - "y": -2641.690635 - }, - "endPoint": { - "x": 315.691703, - "y": -2641.624296 - } - } - }, - { - "id": "2e05315f-ac4a-5157-a045-971a26591df9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.691703, - "y": -2641.624296 - }, - "endPoint": { - "x": 315.631169, - "y": -2641.581079 - } - } - }, - { - "id": "3e06f879-6a3d-5a59-a4e7-f3f63268d55d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.631169, - "y": -2641.581079 - }, - "endPoint": { - "x": 315.634042, - "y": -2641.459962 - } - } - }, - { - "id": "28496d1e-dcf3-50e1-a0ae-cb4ce18c1f90", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.634042, - "y": -2641.459962 - }, - "endPoint": { - "x": 315.732127, - "y": -2641.37061 - } - } - }, - { - "id": "1aedaedb-ae94-5a8a-980e-b11f5afa7925", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.732127, - "y": -2641.37061 - }, - "endPoint": { - "x": 315.916805, - "y": -2641.307189 - } - } - }, - { - "id": "bddac710-598a-5d25-9d84-281f21678b70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.916805, - "y": -2641.307189 - }, - "endPoint": { - "x": 316.084144, - "y": -2641.286985 - } - } - }, - { - "id": "91d58591-c6c6-5376-91e3-722afed33287", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.084144, - "y": -2641.286985 - }, - "endPoint": { - "x": 316.170738, - "y": -2641.321613 - } - } - }, - { - "id": "285c8bb0-b1f2-5d1e-8050-a318deeba7ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.170738, - "y": -2641.321613 - }, - "endPoint": { - "x": 316.274568, - "y": -2641.382117 - } - } - }, - { - "id": "785d907d-dd8c-5787-97a0-99a382cb17cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.274568, - "y": -2641.382117 - }, - "endPoint": { - "x": 316.280314, - "y": -2641.526301 - } - } - }, - { - "id": "8c81062b-eeef-5ee4-b917-6011e36a075e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.280314, - "y": -2641.526301 - }, - "endPoint": { - "x": 316.280314, - "y": -2641.696415 - } - } - }, - { - "id": "381a54f5-0664-545f-802c-1687e10936b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.280314, - "y": -2641.696415 - }, - "endPoint": { - "x": 316.179356, - "y": -2641.771343 - } - } - }, - { - "id": "36efe9ef-d775-56e4-9ca6-d308a680a42f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.179356, - "y": -2641.771343 - }, - "endPoint": { - "x": 316.026381, - "y": -2641.791547 - } - } - }, - { - "id": "7c8a15f6-9274-5c5c-bdfa-67a80b2302ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.026381, - "y": -2641.791547 - }, - "endPoint": { - "x": 315.902339, - "y": -2641.785767 - } - } - } - ] - }, - { - "id": "c18a8c76-9cbc-52e5-8ea8-a22f771fc7c9", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "360af4a5-e2d2-555d-a45b-fef2507ea9ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.40285, - "y": -2646.414474 - }, - "endPoint": { - "x": 320.259519, - "y": -2646.217604 - } - } - }, - { - "id": "1f7702ef-4538-5c1c-90f3-f053f310268d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.259519, - "y": -2646.217604 - }, - "endPoint": { - "x": 320.098336, - "y": -2646.092303 - } - } - }, - { - "id": "58dca544-6ebd-5b5a-b80c-dc0deff0bc19", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.098336, - "y": -2646.092303 - }, - "endPoint": { - "x": 319.856509, - "y": -2645.980435 - } - } - }, - { - "id": "96b4d28b-8e0d-599f-a322-f6218bbbe76b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.856509, - "y": -2645.980435 - }, - "endPoint": { - "x": 319.65049, - "y": -2645.890918 - } - } - }, - { - "id": "8a15e3ec-1345-5dbd-b383-b964032cdb77", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.65049, - "y": -2645.890918 - }, - "endPoint": { - "x": 319.220497, - "y": -2645.90881 - } - } - }, - { - "id": "97054a02-6629-543a-b0e8-abb0fed798aa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.220497, - "y": -2645.90881 - }, - "endPoint": { - "x": 318.911571, - "y": -2645.949109 - } - } - }, - { - "id": "0aa1e69c-34ed-59c8-a5e4-6828fd48be4d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.911571, - "y": -2645.949109 - }, - "endPoint": { - "x": 318.777987, - "y": -2645.995739 - } - } - }, - { - "id": "dbd24781-35c4-5335-8ed6-850136be3252", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.777987, - "y": -2645.995739 - }, - "endPoint": { - "x": 318.619574, - "y": -2646.049526 - } - } - }, - { - "id": "7b4c4cab-4011-5ad3-845f-3554c466fb50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.619574, - "y": -2646.049526 - }, - "endPoint": { - "x": 318.45952, - "y": -2646.018807 - } - } - }, - { - "id": "0909c03d-fc30-5c04-9a74-cde7a6dac7d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.45952, - "y": -2646.018807 - }, - "endPoint": { - "x": 318.271558, - "y": -2645.656226 - } - } - }, - { - "id": "43e401c3-b0f2-5719-be7b-0c18d365f0b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.271558, - "y": -2645.656226 - }, - "endPoint": { - "x": 318.129869, - "y": -2645.400504 - } - } - }, - { - "id": "446d0a9b-be6b-5a46-91c5-7d7c2c39c67f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.129869, - "y": -2645.400504 - }, - "endPoint": { - "x": 317.901483, - "y": -2645.211672 - } - } - }, - { - "id": "70d30bec-4070-5fa6-a036-f07209cd3eb0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.901483, - "y": -2645.211672 - }, - "endPoint": { - "x": 317.708494, - "y": -2645.129092 - } - } - }, - { - "id": "c4c2b1c6-ff5d-5fbf-850d-5873b189cc92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.708494, - "y": -2645.129092 - }, - "endPoint": { - "x": 317.610101, - "y": -2645.113347 - } - } - }, - { - "id": "dff61cde-b0fd-5d64-8130-b56c705f1342", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.610101, - "y": -2645.113347 - }, - "endPoint": { - "x": 317.515608, - "y": -2645.042493 - } - } - }, - { - "id": "12c71ac3-693c-5dbd-bce0-011da5c6081b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.515608, - "y": -2645.042493 - }, - "endPoint": { - "x": 317.090437, - "y": -2645.046457 - } - } - }, - { - "id": "c299c981-8611-590b-ad0c-62ea69ef163b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.090437, - "y": -2645.046457 - }, - "endPoint": { - "x": 316.834452, - "y": -2645.097602 - } - } - }, - { - "id": "b8b794a5-c3dd-5b7c-be61-b90fbb967160", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.834452, - "y": -2645.097602 - }, - "endPoint": { - "x": 316.710615, - "y": -2645.224004 - } - } - }, - { - "id": "030de0aa-68b9-5a87-a319-0f9d3c84b3a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.710615, - "y": -2645.224004 - }, - "endPoint": { - "x": 316.647619, - "y": -2645.389218 - } - } - }, - { - "id": "8647db9a-1b15-5dc2-935c-b23b61f7c963", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.647619, - "y": -2645.389218 - }, - "endPoint": { - "x": 316.375936, - "y": -2645.656722 - } - } - }, - { - "id": "3aa9d33b-9fdb-5e2d-8b3c-1760ef19f52a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.375936, - "y": -2645.656722 - }, - "endPoint": { - "x": 316.308939, - "y": -2645.888881 - } - } - }, - { - "id": "f0fcb8c3-f298-5724-a386-eb7059f5a177", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.308939, - "y": -2645.888881 - }, - "endPoint": { - "x": 316.076655, - "y": -2645.963588 - } - } - }, - { - "id": "9672806d-cb25-5cae-8c79-bcc2014c0c7b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.076655, - "y": -2645.963588 - }, - "endPoint": { - "x": 315.72238, - "y": -2645.951807 - } - } - }, - { - "id": "c8bf5828-4514-596d-b1ed-1c52b67e509c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.72238, - "y": -2645.951807 - }, - "endPoint": { - "x": 315.616087, - "y": -2645.904571 - } - } - }, - { - "id": "91b953b5-9383-5c46-b7a5-723ac52ba8e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.616087, - "y": -2645.904571 - }, - "endPoint": { - "x": 315.470396, - "y": -2645.943934 - } - } - }, - { - "id": "ce478b85-5478-5776-a7e8-60bd87b813db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.470396, - "y": -2645.943934 - }, - "endPoint": { - "x": 315.245909, - "y": -2646.002951 - } - } - }, - { - "id": "24b231a5-f7fb-5419-85af-67b79ecc1c5f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.245909, - "y": -2646.002951 - }, - "endPoint": { - "x": 314.934931, - "y": -2645.940026 - } - } - }, - { - "id": "56bc3d0e-4310-5f5a-9405-a450c05773fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.934931, - "y": -2645.940026 - }, - "endPoint": { - "x": 314.802886, - "y": -2645.848582 - } - } - }, - { - "id": "0db4684e-583e-5ffe-ae98-5e3fbcc1cc39", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.802886, - "y": -2645.848582 - }, - "endPoint": { - "x": 314.747791, - "y": -2645.636187 - } - } - }, - { - "id": "3ec8f08d-d8ce-580d-8d4e-fd51d3618339", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.747791, - "y": -2645.636187 - }, - "endPoint": { - "x": 314.61, - "y": -2645.368628 - } - } - }, - { - "id": "f922cf62-af0a-5a77-80c0-a99d2bcbb51d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.61, - "y": -2645.368628 - }, - "endPoint": { - "x": 314.499706, - "y": -2645.179796 - } - } - }, - { - "id": "34349f33-49cb-5542-ad62-ea131ee982d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.499706, - "y": -2645.179796 - }, - "endPoint": { - "x": 314.358017, - "y": -2645.132615 - } - } - }, - { - "id": "1706054a-9f75-535c-a9a2-d8ee4526eb8e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.358017, - "y": -2645.132615 - }, - "endPoint": { - "x": 314.094234, - "y": -2645.108998 - } - } - }, - { - "id": "75bbd6e2-75ab-545c-b8e6-30fb91f6aeac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.094234, - "y": -2645.108998 - }, - "endPoint": { - "x": 313.806751, - "y": -2645.179796 - } - } - }, - { - "id": "af677164-2697-5027-a90b-b47855632e73", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.806751, - "y": -2645.179796 - }, - "endPoint": { - "x": 313.586266, - "y": -2645.376501 - } - } - }, - { - "id": "c5f4436f-c80b-513a-a9aa-afe8cecec50f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.586266, - "y": -2645.376501 - }, - "endPoint": { - "x": 313.381581, - "y": -2645.596824 - } - } - }, - { - "id": "ccdd666c-27a5-5616-8b5e-352a0aa0af65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.381581, - "y": -2645.596824 - }, - "endPoint": { - "x": 313.294987, - "y": -2645.703022 - } - } - }, - { - "id": "bf6085ef-f562-59a5-a3dc-03d54015db06", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.294987, - "y": -2645.703022 - }, - "endPoint": { - "x": 313.290986, - "y": -2645.813183 - } - } - }, - { - "id": "c14553db-a348-5f5d-90e4-759a29ac4765", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.290986, - "y": -2645.813183 - }, - "endPoint": { - "x": 313.153195, - "y": -2645.942998 - } - } - }, - { - "id": "589bc455-ef63-5a7d-81d0-333da7f2ac69", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.153195, - "y": -2645.942998 - }, - "endPoint": { - "x": 313.121697, - "y": -2646.143667 - } - } - }, - { - "id": "a557a60d-bcef-5075-9de3-37ce75387334", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.121697, - "y": -2646.143667 - }, - "endPoint": { - "x": 312.991806, - "y": -2646.379735 - } - } - }, - { - "id": "57e9068f-f978-5275-b001-b64554ebba78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.991806, - "y": -2646.379735 - }, - "endPoint": { - "x": 312.569714, - "y": -2646.723763 - } - } - }, - { - "id": "3098dc86-57aa-5e8e-91e7-2b6ed985f326", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.569714, - "y": -2646.723763 - }, - "endPoint": { - "x": 312.455521, - "y": -2646.877196 - } - } - }, - { - "id": "01eab543-a09d-5bd9-bee7-578fdc9ecc5b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.455521, - "y": -2646.877196 - }, - "endPoint": { - "x": 312.156342, - "y": -2646.955922 - } - } - }, - { - "id": "f69c5087-ac6f-56c5-9e58-50a39720574a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.156342, - "y": -2646.955922 - }, - "endPoint": { - "x": 312.061848, - "y": -2647.050338 - } - } - }, - { - "id": "4781b500-fc8e-52b5-8cfe-0f0cdc14a19f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.061848, - "y": -2647.050338 - }, - "endPoint": { - "x": 311.994851, - "y": -2647.258825 - } - } - }, - { - "id": "6607c792-3f6e-51b4-b3fb-a7d8d6f0564c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.994851, - "y": -2647.258825 - }, - "endPoint": { - "x": 311.908257, - "y": -2647.428003 - } - } - }, - { - "id": "a1113166-1a4c-54f0-8fee-c04844dcce04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.908257, - "y": -2647.428003 - }, - "endPoint": { - "x": 311.790165, - "y": -2647.510638 - } - } - }, - { - "id": "24e5557a-87f8-5e53-82b1-9594077dfdf9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.790165, - "y": -2647.510638 - }, - "endPoint": { - "x": 311.764721, - "y": -2647.702058 - } - } - }, - { - "id": "e598adc3-b743-5f1b-a34b-24ab573476a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.764721, - "y": -2647.702058 - }, - "endPoint": { - "x": 311.715268, - "y": -2647.835397 - } - } - }, - { - "id": "3f4e0d2a-edc6-5006-9e26-7ac26afca664", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.715268, - "y": -2647.835397 - }, - "endPoint": { - "x": 311.646116, - "y": -2647.998354 - } - } - }, - { - "id": "41accaa8-acff-5b15-b90a-b367af9ffa8f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.646116, - "y": -2647.998354 - }, - "endPoint": { - "x": 311.626315, - "y": -2648.111984 - } - } - }, - { - "id": "519ed8d6-f331-5486-8cc6-a15a5d8e4584", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.626315, - "y": -2648.111984 - }, - "endPoint": { - "x": 311.710343, - "y": -2648.20084 - } - } - }, - { - "id": "d575f07c-94fe-510f-88b3-ca271f9c2599", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.710343, - "y": -2648.20084 - }, - "endPoint": { - "x": 311.720193, - "y": -2648.368752 - } - } - }, - { - "id": "0696a21e-de83-5009-94a2-57301a9e0467", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.720193, - "y": -2648.368752 - }, - "endPoint": { - "x": 311.833873, - "y": -2648.541619 - } - } - }, - { - "id": "e26d9631-1679-504b-a535-8891dfcffe0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.833873, - "y": -2648.541619 - }, - "endPoint": { - "x": 312.076109, - "y": -2648.650239 - } - } - }, - { - "id": "7e5a953a-00db-59d8-af37-ce41e7fa9a98", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.076109, - "y": -2648.650239 - }, - "endPoint": { - "x": 312.402272, - "y": -2648.684813 - } - } - }, - { - "id": "4b6a8ce2-8693-5e4c-890f-dafac01bc396", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.402272, - "y": -2648.684813 - }, - "endPoint": { - "x": 312.575254, - "y": -2648.674958 - } - } - }, - { - "id": "fd15a709-5750-5d73-8feb-ba79c5b79c10", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.575254, - "y": -2648.674958 - }, - "endPoint": { - "x": 312.743311, - "y": -2648.566283 - } - } - }, - { - "id": "8c4ca995-f808-5e77-8527-8e30f9a59f89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.743311, - "y": -2648.566283 - }, - "endPoint": { - "x": 312.916293, - "y": -2648.576193 - } - } - }, - { - "id": "d58e4d14-4864-554c-9119-a3b7547819a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.916293, - "y": -2648.576193 - }, - "endPoint": { - "x": 312.936095, - "y": -2648.650239 - } - } - }, - { - "id": "64df5bd4-b1af-55fb-a9a4-4bc93da2f381", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.936095, - "y": -2648.650239 - }, - "endPoint": { - "x": 312.871765, - "y": -2648.768769 - } - } - }, - { - "id": "36364634-98bc-5437-b8d2-9b6d76239c53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.871765, - "y": -2648.768769 - }, - "endPoint": { - "x": 312.545603, - "y": -2648.852725 - } - } - }, - { - "id": "ff016cea-5f5b-517f-8b24-ff25824ee05d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.545603, - "y": -2648.852725 - }, - "endPoint": { - "x": 312.451725, - "y": -2649.020637 - } - } - }, - { - "id": "0b535356-4040-560d-b41f-33b9dcb39eaa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.451725, - "y": -2649.020637 - }, - "endPoint": { - "x": 312.22929, - "y": -2649.139167 - } - } - }, - { - "id": "9961bb1e-26da-5c53-bf48-2a860d17651c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.22929, - "y": -2649.139167 - }, - "endPoint": { - "x": 312.090883, - "y": -2649.341652 - } - } - }, - { - "id": "da74e360-6853-5325-811e-298dacfc74d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.090883, - "y": -2649.341652 - }, - "endPoint": { - "x": 311.947552, - "y": -2649.598476 - } - } - }, - { - "id": "6a5f082e-ad38-5bc4-b702-f81ea0b52a67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.947552, - "y": -2649.598476 - }, - "endPoint": { - "x": 311.878503, - "y": -2649.88277 - } - } - }, - { - "id": "5c0145bd-11b6-5722-8190-d74e82fb2553", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.878503, - "y": -2649.88277 - }, - "endPoint": { - "x": 311.809351, - "y": -2650.134639 - } - } - }, - { - "id": "e12056e6-de6e-5659-a4c4-3c4c69dc2179", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.809351, - "y": -2650.134639 - }, - "endPoint": { - "x": 311.873578, - "y": -2650.445799 - } - } - }, - { - "id": "72301ac5-bd0b-5ec4-bae8-878438625146", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.873578, - "y": -2650.445799 - }, - "endPoint": { - "x": 311.962532, - "y": -2650.712477 - } - } - }, - { - "id": "7d4f80c6-f9ee-5601-bf9e-f6c0b0a7883c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.962532, - "y": -2650.712477 - }, - "endPoint": { - "x": 312.209591, - "y": -2650.87048 - } - } - }, - { - "id": "a54bb2fa-3821-5de8-9ca2-d3a76fdbee8b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.209591, - "y": -2650.87048 - }, - "endPoint": { - "x": 312.471629, - "y": -2650.944581 - } - } - }, - { - "id": "7f182cd5-7574-5e1b-aa15-8090e8e71efc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.471629, - "y": -2650.944581 - }, - "endPoint": { - "x": 312.679187, - "y": -2650.885289 - } - } - }, - { - "id": "335c628f-a8e0-56fc-8b7e-241602757e3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.679187, - "y": -2650.885289 - }, - "endPoint": { - "x": 312.816362, - "y": -2650.821868 - } - } - }, - { - "id": "c417fa5a-a27a-5a2b-8a10-0fc0272ab8d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.816362, - "y": -2650.821868 - }, - "endPoint": { - "x": 312.986061, - "y": -2650.809756 - } - } - }, - { - "id": "a8ca7dfe-410c-5fa6-8b9e-d4d3be466a79", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.986061, - "y": -2650.809756 - }, - "endPoint": { - "x": 313.124262, - "y": -2650.82429 - } - } - }, - { - "id": "63c28e66-fb98-5963-9731-3b23b3ff90c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.124262, - "y": -2650.82429 - }, - "endPoint": { - "x": 313.179973, - "y": -2650.858203 - } - } - }, - { - "id": "0a0df619-1d72-5899-8da8-b742619189d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.179973, - "y": -2650.858203 - }, - "endPoint": { - "x": 313.179973, - "y": -2650.942985 - } - } - }, - { - "id": "458de0ac-6d59-54df-a266-09a4791063d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.179973, - "y": -2650.942985 - }, - "endPoint": { - "x": 313.10959, - "y": -2651.146847 - } - } - }, - { - "id": "57b96933-0bfb-5cea-ad17-b65741cfee5a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.10959, - "y": -2651.146847 - }, - "endPoint": { - "x": 313.074604, - "y": -2651.297968 - } - } - }, - { - "id": "9d8b0147-5fb9-580f-bb8d-91d465128d7e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.074604, - "y": -2651.297968 - }, - "endPoint": { - "x": 312.966054, - "y": -2651.390952 - } - } - }, - { - "id": "6ab566e0-2186-5982-ba97-36bb423da483", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.966054, - "y": -2651.390952 - }, - "endPoint": { - "x": 312.927272, - "y": -2651.487846 - } - } - }, - { - "id": "608943ec-3fbf-51c0-94ac-92201b50132c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.927272, - "y": -2651.487846 - }, - "endPoint": { - "x": 312.896287, - "y": -2651.728098 - } - } - }, - { - "id": "eaaa4998-7c02-57d5-81f0-d3af13642081", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.896287, - "y": -2651.728098 - }, - "endPoint": { - "x": 312.72946, - "y": -2651.828846 - } - } - }, - { - "id": "e5aef3e4-40e3-5aad-91e2-e049d9c2136f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.72946, - "y": -2651.828846 - }, - "endPoint": { - "x": 312.604803, - "y": -2652.056215 - } - } - }, - { - "id": "d68311b5-9914-55f6-a811-33d6f22365bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.604803, - "y": -2652.056215 - }, - "endPoint": { - "x": 312.531034, - "y": -2652.253801 - } - } - }, - { - "id": "27ba4efe-bf5f-5ad5-9df6-18496b8a4abf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.531034, - "y": -2652.253801 - }, - "endPoint": { - "x": 312.310035, - "y": -2652.486346 - } - } - }, - { - "id": "954eed05-50b0-58f9-8de3-b67ec790bf1c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.310035, - "y": -2652.486346 - }, - "endPoint": { - "x": 312.201485, - "y": -2652.703311 - } - } - }, - { - "id": "d03b7f09-1dae-56b2-88b2-208218827494", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.201485, - "y": -2652.703311 - }, - "endPoint": { - "x": 312.193688, - "y": -2653.114117 - } - } - }, - { - "id": "5e84946c-a1b2-5bd4-8dcd-09139c057315", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.193688, - "y": -2653.114117 - }, - "endPoint": { - "x": 312.275151, - "y": -2653.214865 - } - } - }, - { - "id": "de2dbc1d-a449-5d67-8c0b-9aab34b9a130", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.275151, - "y": -2653.214865 - }, - "endPoint": { - "x": 312.395295, - "y": -2653.404743 - } - } - }, - { - "id": "1e7ff7c0-3998-5fc1-a058-96cc9b3355e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.395295, - "y": -2653.404743 - }, - "endPoint": { - "x": 312.539549, - "y": -2653.662117 - } - } - }, - { - "id": "e898b56a-6139-553b-953d-d32d5b8f1915", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.539549, - "y": -2653.662117 - }, - "endPoint": { - "x": 312.8692, - "y": -2653.666026 - } - } - }, - { - "id": "0a7c953b-9554-5c57-b3ee-42f18686d560", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.8692, - "y": -2653.666026 - }, - "endPoint": { - "x": 313.17946, - "y": -2653.681496 - } - } - }, - { - "id": "3a230145-84f3-52ce-84ed-89255f7aff4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.17946, - "y": -2653.681496 - }, - "endPoint": { - "x": 313.33459, - "y": -2653.658263 - } - } - }, - { - "id": "e1feae44-3010-5c4f-b994-6e6f69477a4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.33459, - "y": -2653.658263 - }, - "endPoint": { - "x": 313.381068, - "y": -2653.565223 - } - } - }, - { - "id": "428787a5-6bc2-5ded-8c9f-ef26ff356790", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.381068, - "y": -2653.565223 - }, - "endPoint": { - "x": 313.485821, - "y": -2653.510996 - } - } - }, - { - "id": "3654c0f5-9c8e-5520-987d-2fd628965ce3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.485821, - "y": -2653.510996 - }, - "endPoint": { - "x": 313.606067, - "y": -2653.495471 - } - } - }, - { - "id": "ecbd7c30-8ca2-53b4-b199-7e0c56b782f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.606067, - "y": -2653.495471 - }, - "endPoint": { - "x": 313.726211, - "y": -2653.371491 - } - } - }, - { - "id": "d6994104-03c7-54e7-9917-408606988899", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.726211, - "y": -2653.371491 - }, - "endPoint": { - "x": 313.865848, - "y": -2653.193229 - } - } - }, - { - "id": "81e13d8b-2229-5766-85bb-8c7c9a14afc1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.865848, - "y": -2653.193229 - }, - "endPoint": { - "x": 313.958906, - "y": -2653.108007 - } - } - }, - { - "id": "26f7fb6e-05f3-5a9b-a7ef-3c4cfa68c9f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.958906, - "y": -2653.108007 - }, - "endPoint": { - "x": 314.133427, - "y": -2653.061487 - } - } - }, - { - "id": "e8edf680-4075-5a27-a87e-ff5a62100c2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.133427, - "y": -2653.061487 - }, - "endPoint": { - "x": 314.245876, - "y": -2653.088628 - } - } - }, - { - "id": "c89ae26e-f680-51eb-aacb-d72164cd7639", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.245876, - "y": -2653.088628 - }, - "endPoint": { - "x": 314.331238, - "y": -2653.166088 - } - } - }, - { - "id": "835a3edc-fd58-562c-8f83-2dfe10fc40f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.331238, - "y": -2653.166088 - }, - "endPoint": { - "x": 314.424296, - "y": -2653.34435 - } - } - }, - { - "id": "eda4516d-6c25-5b19-8a71-89f1903b1982", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.424296, - "y": -2653.34435 - }, - "endPoint": { - "x": 314.59225, - "y": -2653.41724 - } - } - }, - { - "id": "52951b0f-3c96-52ea-a089-f70b934824de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.59225, - "y": -2653.41724 - }, - "endPoint": { - "x": 314.867626, - "y": -2653.483084 - } - } - }, - { - "id": "5cb06c67-d151-5b78-8157-06482824a4c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.867626, - "y": -2653.483084 - }, - "endPoint": { - "x": 315.042148, - "y": -2653.506371 - } - } - }, - { - "id": "db7aa9f3-518f-5785-b327-19fa06d71e09", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.042148, - "y": -2653.506371 - }, - "endPoint": { - "x": 315.197277, - "y": -2653.378483 - } - } - }, - { - "id": "dc6a14dc-82a3-5e53-9797-b1b530c2c1d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.197277, - "y": -2653.378483 - }, - "endPoint": { - "x": 315.426074, - "y": -2653.235124 - } - } - }, - { - "id": "5228bafd-74ce-55c0-80af-8ab5b285feb4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.426074, - "y": -2653.235124 - }, - "endPoint": { - "x": 315.530725, - "y": -2653.072332 - } - } - }, - { - "id": "044076b1-e62a-5b37-94b5-c960a63b048c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.530725, - "y": -2653.072332 - }, - "endPoint": { - "x": 315.569507, - "y": -2652.932827 - } - } - }, - { - "id": "583b060c-bed9-521c-82e5-307a3f619505", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.569507, - "y": -2652.932827 - }, - "endPoint": { - "x": 315.639377, - "y": -2652.746858 - } - } - }, - { - "id": "8138cf23-f52a-5b2b-be85-5d6debd93811", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.639377, - "y": -2652.746858 - }, - "endPoint": { - "x": 315.769883, - "y": -2652.270317 - } - } - }, - { - "id": "003e0ea3-6455-589b-b99b-9519717dd0ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.769883, - "y": -2652.270317 - }, - "endPoint": { - "x": 315.857195, - "y": -2651.905149 - } - } - }, - { - "id": "f3439dfa-f2df-5462-bc37-6a6729897c0b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.857195, - "y": -2651.905149 - }, - "endPoint": { - "x": 315.84632, - "y": -2651.545487 - } - } - }, - { - "id": "e7a19959-e3e1-5a14-9123-62b1ce5b0a37", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.84632, - "y": -2651.545487 - }, - "endPoint": { - "x": 315.808153, - "y": -2651.114916 - } - } - }, - { - "id": "20bc59ce-4dc1-5b05-9377-6f03e1bb5302", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.808153, - "y": -2651.114916 - }, - "endPoint": { - "x": 315.726279, - "y": -2650.940507 - } - } - }, - { - "id": "e0226f02-5c5c-5612-af50-80fe44b6410e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.726279, - "y": -2650.940507 - }, - "endPoint": { - "x": 315.562633, - "y": -2650.875104 - } - } - }, - { - "id": "4b1f8ca0-3311-505c-9d18-b472cc765a4f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.562633, - "y": -2650.875104 - }, - "endPoint": { - "x": 315.311778, - "y": -2650.880554 - } - } - }, - { - "id": "2cf2c6c2-3617-5a4c-838b-3cb5c7124cc5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.311778, - "y": -2650.880554 - }, - "endPoint": { - "x": 315.071799, - "y": -2651.038612 - } - } - }, - { - "id": "9df09df0-3c07-50ee-a00d-cc51c1cc1295", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.071799, - "y": -2651.038612 - }, - "endPoint": { - "x": 314.864548, - "y": -2651.305675 - } - } - }, - { - "id": "53f63a0f-1473-5dd7-a925-fff1e74f152e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.864548, - "y": -2651.305675 - }, - "endPoint": { - "x": 314.711778, - "y": -2651.670788 - } - } - }, - { - "id": "1d744c5e-fa68-529b-a91a-2210c1421bda", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.711778, - "y": -2651.670788 - }, - "endPoint": { - "x": 314.602715, - "y": -2651.807044 - } - } - }, - { - "id": "2abd089c-662a-5655-bebe-c04f20c446e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.602715, - "y": -2651.807044 - }, - "endPoint": { - "x": 314.455486, - "y": -2652.014155 - } - } - }, - { - "id": "64972067-87da-51da-ab39-18cc3fe6dddd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.455486, - "y": -2652.014155 - }, - "endPoint": { - "x": 314.330007, - "y": -2652.074108 - } - } - }, - { - "id": "3727788a-ab81-58a4-b19d-dafd1bd5f4ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.330007, - "y": -2652.074108 - }, - "endPoint": { - "x": 314.174261, - "y": -2652.074328 - } - } - }, - { - "id": "9210f478-190b-50ed-bc20-8525d4e06be4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.174261, - "y": -2652.074328 - }, - "endPoint": { - "x": 314.110034, - "y": -2652.015531 - } - } - }, - { - "id": "26d8e8bf-6f0e-56e6-ac78-b593bb5586dc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.110034, - "y": -2652.015531 - }, - "endPoint": { - "x": 314.128707, - "y": -2651.724189 - } - } - }, - { - "id": "bf3b61af-fe64-5fa5-a737-d4e33e33798b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.128707, - "y": -2651.724189 - }, - "endPoint": { - "x": 314.139891, - "y": -2651.51284 - } - } - }, - { - "id": "81828691-2974-53df-8306-0ed51c76ff5a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.139891, - "y": -2651.51284 - }, - "endPoint": { - "x": 314.190267, - "y": -2651.355168 - } - } - }, - { - "id": "d54acb36-5d56-533b-bf53-abc4cb2b2df7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.190267, - "y": -2651.355168 - }, - "endPoint": { - "x": 314.170055, - "y": -2651.157197 - } - } - }, - { - "id": "b49b6677-640c-5966-baa4-20e5f8b006ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.170055, - "y": -2651.157197 - }, - "endPoint": { - "x": 314.109624, - "y": -2651.059863 - } - } - }, - { - "id": "69b3732d-7758-5381-8517-e0dde28becce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.109624, - "y": -2651.059863 - }, - "endPoint": { - "x": 314.139891, - "y": -2650.791423 - } - } - }, - { - "id": "f787a46a-ba1f-5751-bd8b-572739fab00c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.139891, - "y": -2650.791423 - }, - "endPoint": { - "x": 314.270807, - "y": -2650.630338 - } - } - }, - { - "id": "ca9a949a-8386-5814-8680-9e8d25ed2bb7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.270807, - "y": -2650.630338 - }, - "endPoint": { - "x": 314.408495, - "y": -2650.59681 - } - } - }, - { - "id": "9e2f87e0-eb00-59bb-8e45-69bf5b24bf23", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.408495, - "y": -2650.59681 - }, - "endPoint": { - "x": 314.549569, - "y": -2650.657203 - } - } - }, - { - "id": "8fec1303-3341-52e3-bf06-cdcc7512612f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.549569, - "y": -2650.657203 - }, - "endPoint": { - "x": 314.892045, - "y": -2650.687428 - } - } - }, - { - "id": "e8d1567c-0aa0-590e-853d-63b5f8b89f8f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.892045, - "y": -2650.687428 - }, - "endPoint": { - "x": 314.932674, - "y": -2650.602481 - } - } - }, - { - "id": "111fc8b9-8933-5493-a2e2-19fafe7dd153", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.932674, - "y": -2650.602481 - }, - "endPoint": { - "x": 314.966224, - "y": -2650.51858 - } - } - }, - { - "id": "125453af-cfef-5209-817e-509a919a3efc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.966224, - "y": -2650.51858 - }, - "endPoint": { - "x": 315.214719, - "y": -2650.471619 - } - } - }, - { - "id": "4a568dcf-3a48-5bd9-afde-8e7f2d077b1c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.214719, - "y": -2650.471619 - }, - "endPoint": { - "x": 315.469986, - "y": -2650.448111 - } - } - }, - { - "id": "2d20eca9-6148-5fa2-8ed5-5dfe99348294", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.469986, - "y": -2650.448111 - }, - "endPoint": { - "x": 315.647893, - "y": -2650.448111 - } - } - }, - { - "id": "07122dfd-d9a7-5948-bee1-5414194ca867", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.647893, - "y": -2650.448111 - }, - "endPoint": { - "x": 315.785581, - "y": -2650.51858 - } - } - }, - { - "id": "8b69f60f-cb88-5c12-91af-1376fd187669", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.785581, - "y": -2650.51858 - }, - "endPoint": { - "x": 315.940095, - "y": -2650.582331 - } - } - }, - { - "id": "8212d9c4-5b1c-5378-9bd9-77649d6b5b52", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.940095, - "y": -2650.582331 - }, - "endPoint": { - "x": 316.087838, - "y": -2650.729984 - } - } - }, - { - "id": "5cf87efa-e672-5cbc-a79e-68dd31ef2769", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.087838, - "y": -2650.729984 - }, - "endPoint": { - "x": 316.202031, - "y": -2650.971557 - } - } - }, - { - "id": "35bf2d2c-88cd-5749-b371-ae6d271c89ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.202031, - "y": -2650.971557 - }, - "endPoint": { - "x": 316.218754, - "y": -2651.246713 - } - } - }, - { - "id": "4272693e-21ef-509d-be70-05764949a50b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.218754, - "y": -2651.246713 - }, - "endPoint": { - "x": 316.212085, - "y": -2651.427948 - } - } - }, - { - "id": "082238c5-baa0-5614-9e21-4e69d81fb361", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.212085, - "y": -2651.427948 - }, - "endPoint": { - "x": 316.222858, - "y": -2651.551488 - } - } - }, - { - "id": "6d13bdfd-f1ea-55a7-afe5-4d8ba79e7af5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.222858, - "y": -2651.551488 - }, - "endPoint": { - "x": 316.235478, - "y": -2651.808421 - } - } - }, - { - "id": "3e0e7f32-1fd4-5b4e-916d-def49a2050f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.235478, - "y": -2651.808421 - }, - "endPoint": { - "x": 316.307195, - "y": -2651.960092 - } - } - }, - { - "id": "17a638a8-6a2d-54ca-8950-e3910d52079c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.307195, - "y": -2651.960092 - }, - "endPoint": { - "x": 316.399945, - "y": -2652.010631 - } - } - }, - { - "id": "d6c24c7b-8650-57e2-bcd8-375a258449da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.399945, - "y": -2652.010631 - }, - "endPoint": { - "x": 316.416771, - "y": -2652.393912 - } - } - }, - { - "id": "84caf7a9-db8b-5146-b0a5-4320add7f9f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.416771, - "y": -2652.393912 - }, - "endPoint": { - "x": 316.42939, - "y": -2652.655084 - } - } - }, - { - "id": "8e650ceb-3844-547c-9549-5e6ca8c33eb8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.42939, - "y": -2652.655084 - }, - "endPoint": { - "x": 316.539172, - "y": -2652.87838 - } - } - }, - { - "id": "411cca3d-1497-5a18-b4dc-4906cfd93083", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.539172, - "y": -2652.87838 - }, - "endPoint": { - "x": 316.855382, - "y": -2653.084774 - } - } - }, - { - "id": "cd7bd7e1-39a4-5fa9-95c6-7002361b268a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.855382, - "y": -2653.084774 - }, - "endPoint": { - "x": 317.053501, - "y": -2653.240685 - } - } - }, - { - "id": "421e3865-b6fe-5548-befb-f165743d1ea8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.053501, - "y": -2653.240685 - }, - "endPoint": { - "x": 317.237666, - "y": -2653.359545 - } - } - }, - { - "id": "91791cd4-4565-51f6-a624-bbcbf759db7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.237666, - "y": -2653.359545 - }, - "endPoint": { - "x": 317.600252, - "y": -2653.397421 - } - } - }, - { - "id": "6703094e-7fb2-5679-811e-f604cbcbb22b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.600252, - "y": -2653.397421 - }, - "endPoint": { - "x": 317.654014, - "y": -2653.45264 - } - } - }, - { - "id": "386c8e0b-6cb9-55ce-b71a-5d4664ad823f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.654014, - "y": -2653.45264 - }, - "endPoint": { - "x": 317.683665, - "y": -2653.713316 - } - } - }, - { - "id": "2b6a7b63-7de8-558e-835c-8a3cb80068cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.683665, - "y": -2653.713316 - }, - "endPoint": { - "x": 317.778569, - "y": -2653.796282 - } - } - }, - { - "id": "a9566803-f3bf-509c-a1be-b3b4444e7dc8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.778569, - "y": -2653.796282 - }, - "endPoint": { - "x": 318.543446, - "y": -2653.292655 - } - } - }, - { - "id": "e0d622f5-69de-51ce-a005-ee51fcad88b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.543446, - "y": -2653.292655 - }, - "endPoint": { - "x": 319.563384, - "y": -2652.463168 - } - } - }, - { - "id": "6ee1ed39-5389-5141-9569-27f4d6e694aa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.563384, - "y": -2652.463168 - }, - "endPoint": { - "x": 320.126653, - "y": -2651.870686 - } - } - }, - { - "id": "d3b34bae-a9ae-55a6-9a92-535650a4d49e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.126653, - "y": -2651.870686 - }, - "endPoint": { - "x": 320.483185, - "y": -2651.293949 - } - } - }, - { - "id": "c4a02de8-9d8f-5669-b721-528433f45010", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.483185, - "y": -2651.293949 - }, - "endPoint": { - "x": 320.667043, - "y": -2650.908852 - } - } - }, - { - "id": "5337986d-02bd-5c08-9663-497f30aea625", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.667043, - "y": -2650.908852 - }, - "endPoint": { - "x": 320.453534, - "y": -2651.009544 - } - } - }, - { - "id": "e236fa5a-a22f-5796-af43-7efc335e6329", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.453534, - "y": -2651.009544 - }, - "endPoint": { - "x": 320.34088, - "y": -2651.133964 - } - } - }, - { - "id": "b2b2ce91-2aac-5876-aed7-90cb7e3c4aff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.34088, - "y": -2651.133964 - }, - "endPoint": { - "x": 320.151174, - "y": -2651.175474 - } - } - }, - { - "id": "ad907980-43d6-5665-beeb-f89fd29888e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.151174, - "y": -2651.175474 - }, - "endPoint": { - "x": 320.026619, - "y": -2651.086563 - } - } - }, - { - "id": "5f5b0de2-f554-578e-b2c9-3f787c12bd83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.026619, - "y": -2651.086563 - }, - "endPoint": { - "x": 319.943616, - "y": -2650.902906 - } - } - }, - { - "id": "a3e49fdb-27ba-5de5-90dc-6d124ecd2d58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.943616, - "y": -2650.902906 - }, - "endPoint": { - "x": 319.659006, - "y": -2650.760703 - } - } - }, - { - "id": "c8928138-c2ba-5b14-892b-3295bae747bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.659006, - "y": -2650.760703 - }, - "endPoint": { - "x": 319.380347, - "y": -2650.754813 - } - } - }, - { - "id": "15e0a5a7-b736-562e-87eb-ac819f2d62f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.380347, - "y": -2650.754813 - }, - "endPoint": { - "x": 319.303192, - "y": -2650.701466 - } - } - }, - { - "id": "7e0cc833-e3bd-5621-bc45-3932a011b954", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.303192, - "y": -2650.701466 - }, - "endPoint": { - "x": 319.172789, - "y": -2650.802159 - } - } - }, - { - "id": "24cada89-0036-5230-af00-5bca640a1513", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.172789, - "y": -2650.802159 - }, - "endPoint": { - "x": 319.036434, - "y": -2650.985871 - } - } - }, - { - "id": "fd80db72-0675-5c70-a052-52abba15a091", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.036434, - "y": -2650.985871 - }, - "endPoint": { - "x": 319.006783, - "y": -2651.151746 - } - } - }, - { - "id": "4bec5154-734b-51b3-97a2-5c7f815966d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.006783, - "y": -2651.151746 - }, - "endPoint": { - "x": 319.036434, - "y": -2651.347295 - } - } - }, - { - "id": "2ca662dc-9f76-58fc-91fb-b94598237103", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.036434, - "y": -2651.347295 - }, - "endPoint": { - "x": 319.22614, - "y": -2651.412423 - } - } - }, - { - "id": "d00eb418-8c06-5801-aea0-407932ab406c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.22614, - "y": -2651.412423 - }, - "endPoint": { - "x": 319.48705, - "y": -2651.471715 - } - } - }, - { - "id": "72db7a73-53a5-5cda-a29b-4a04c25b5696", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.48705, - "y": -2651.471715 - }, - "endPoint": { - "x": 319.670805, - "y": -2651.513171 - } - } - }, - { - "id": "758f92d3-557d-5dbc-9f24-1b4d084e1e63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.670805, - "y": -2651.513171 - }, - "endPoint": { - "x": 319.78941, - "y": -2651.548735 - } - } - }, - { - "id": "a6c4950d-008f-59ae-a60c-4ad3f006b02a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.78941, - "y": -2651.548735 - }, - "endPoint": { - "x": 319.801311, - "y": -2651.708664 - } - } - }, - { - "id": "b63f22dc-7f82-57d5-ac1c-c7f8da0cce89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.801311, - "y": -2651.708664 - }, - "endPoint": { - "x": 319.801311, - "y": -2651.910104 - } - } - }, - { - "id": "da8c5636-33c7-5701-bf98-bd76d72fa882", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.801311, - "y": -2651.910104 - }, - "endPoint": { - "x": 319.759758, - "y": -2652.064198 - } - } - }, - { - "id": "147b2e51-2c22-5388-a318-c78017962d11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.759758, - "y": -2652.064198 - }, - "endPoint": { - "x": 319.51075, - "y": -2652.052306 - } - } - }, - { - "id": "258258fb-0f80-5c9e-9cc7-4ee4f21a3993", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.51075, - "y": -2652.052306 - }, - "endPoint": { - "x": 319.326893, - "y": -2651.987179 - } - } - }, - { - "id": "51ecbef8-1138-5531-b32e-94100f367b42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.326893, - "y": -2651.987179 - }, - "endPoint": { - "x": 319.178739, - "y": -2652.004906 - } - } - }, - { - "id": "981a087f-dcc5-5882-ad2e-747d824ae6de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.178739, - "y": -2652.004906 - }, - "endPoint": { - "x": 319.012631, - "y": -2652.105653 - } - } - }, - { - "id": "1b40a91a-f7ba-5485-a353-0d38e70276d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.012631, - "y": -2652.105653 - }, - "endPoint": { - "x": 318.805176, - "y": -2652.111599 - } - } - }, - { - "id": "64cef651-bfdc-5472-b3b3-936bab6bd750", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.805176, - "y": -2652.111599 - }, - "endPoint": { - "x": 318.597618, - "y": -2652.111599 - } - } - }, - { - "id": "cde68f27-ef75-5028-a131-27f895cd4c60", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.597618, - "y": -2652.111599 - }, - "endPoint": { - "x": 318.449362, - "y": -2652.188618 - } - } - }, - { - "id": "40ccc721-eb74-56da-8784-da48308cf60b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.449362, - "y": -2652.188618 - }, - "endPoint": { - "x": 318.277406, - "y": -2652.200455 - } - } - }, - { - "id": "e5b664f2-550e-5470-9ebc-af71b2e43a58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.277406, - "y": -2652.200455 - }, - "endPoint": { - "x": 318.058049, - "y": -2652.170836 - } - } - }, - { - "id": "a97d419b-10b6-570c-b83d-b5c56ea55929", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.058049, - "y": -2652.170836 - }, - "endPoint": { - "x": 317.986845, - "y": -2652.070089 - } - } - }, - { - "id": "15767592-e2ff-5f7f-84f6-ff1422a348fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.986845, - "y": -2652.070089 - }, - "endPoint": { - "x": 317.785238, - "y": -2652.058252 - } - } - }, - { - "id": "768d33e7-531a-5bf2-80b8-bc328f0080ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.785238, - "y": -2652.058252 - }, - "endPoint": { - "x": 317.637085, - "y": -2652.153054 - } - } - }, - { - "id": "f9e83084-9067-5977-b7af-59fa4e38a171", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.637085, - "y": -2652.153054 - }, - "endPoint": { - "x": 317.595532, - "y": -2652.111599 - } - } - }, - { - "id": "6789d8ca-e2b4-57d0-a0bd-c67aabfb3453", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.595532, - "y": -2652.111599 - }, - "endPoint": { - "x": 317.607434, - "y": -2651.999015 - } - } - }, - { - "id": "e3f43921-09e3-59b0-b203-a1cb536e9575", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.607434, - "y": -2651.999015 - }, - "endPoint": { - "x": 317.49478, - "y": -2651.880485 - } - } - }, - { - "id": "ad67509a-8ca6-540e-b632-188002187282", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.49478, - "y": -2651.880485 - }, - "endPoint": { - "x": 317.423576, - "y": -2651.827194 - } - } - }, - { - "id": "9d345683-5cf3-5037-8b74-3cfea3188fed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.423576, - "y": -2651.827194 - }, - "endPoint": { - "x": 317.387974, - "y": -2651.79163 - } - } - }, - { - "id": "d77963a0-c8e1-50dc-858c-1762649eb8fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.387974, - "y": -2651.79163 - }, - "endPoint": { - "x": 317.269472, - "y": -2651.767957 - } - } - }, - { - "id": "91395490-f439-529d-9637-b59879dd2ac0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.269472, - "y": -2651.767957 - }, - "endPoint": { - "x": 317.144917, - "y": -2651.602026 - } - } - }, - { - "id": "df14709e-12d9-555e-a380-8ffca7ec6e3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.144917, - "y": -2651.602026 - }, - "endPoint": { - "x": 317.050013, - "y": -2651.483552 - } - } - }, - { - "id": "34792b82-7c48-52b8-9e3e-8bd234793073", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.050013, - "y": -2651.483552 - }, - "endPoint": { - "x": 317.026312, - "y": -2651.270221 - } - } - }, - { - "id": "a49b708c-6c8c-5665-8107-0ec67643d2be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.026312, - "y": -2651.270221 - }, - "endPoint": { - "x": 317.085615, - "y": -2651.133964 - } - } - }, - { - "id": "61fb4626-6a31-5c67-8442-0d51dfb23343", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.085615, - "y": -2651.133964 - }, - "endPoint": { - "x": 317.032263, - "y": -2650.950307 - } - } - }, - { - "id": "ebe663f4-1fb1-5174-b6f6-1133b7c84b65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.032263, - "y": -2650.950307 - }, - "endPoint": { - "x": 317.079664, - "y": -2650.68963 - } - } - }, - { - "id": "af641c71-9d46-59f3-91f8-d8c2362e8bc8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.079664, - "y": -2650.68963 - }, - "endPoint": { - "x": 317.293173, - "y": -2650.511863 - } - } - }, - { - "id": "929edb25-cf8c-5724-93b9-2992663899ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.293173, - "y": -2650.511863 - }, - "endPoint": { - "x": 317.51253, - "y": -2650.434844 - } - } - }, - { - "id": "ad75c323-d19f-5e59-8f2a-40e40d6b3eea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.51253, - "y": -2650.434844 - }, - "endPoint": { - "x": 317.625183, - "y": -2650.48819 - } - } - }, - { - "id": "4abe3cc6-10b3-559f-8309-ac09572ac61a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.625183, - "y": -2650.48819 - }, - "endPoint": { - "x": 317.601483, - "y": -2650.577046 - } - } - }, - { - "id": "090a4fa7-9a68-5661-90d8-30a086ac3482", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.601483, - "y": -2650.577046 - }, - "endPoint": { - "x": 317.447276, - "y": -2650.68963 - } - } - }, - { - "id": "1371f78b-6ef7-57c9-bb57-94f27d735064", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.447276, - "y": -2650.68963 - }, - "endPoint": { - "x": 317.376175, - "y": -2650.914742 - } - } - }, - { - "id": "4101512d-0822-5527-b18f-d41f0f68a76a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.376175, - "y": -2650.914742 - }, - "endPoint": { - "x": 317.393925, - "y": -2651.276167 - } - } - }, - { - "id": "ca93a705-3c48-5598-be63-69a8180940b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.393925, - "y": -2651.276167 - }, - "endPoint": { - "x": 317.506579, - "y": -2651.447988 - } - } - }, - { - "id": "523beb49-cc66-5897-87fd-571a13f01fe8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.506579, - "y": -2651.447988 - }, - "endPoint": { - "x": 317.761538, - "y": -2651.530953 - } - } - }, - { - "id": "a3123126-35b0-5dd8-8c4d-043bc0ba70f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.761538, - "y": -2651.530953 - }, - "endPoint": { - "x": 318.034349, - "y": -2651.519116 - } - } - }, - { - "id": "da3b237b-6a36-5400-aae1-cd295ef2ce21", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.034349, - "y": -2651.519116 - }, - "endPoint": { - "x": 318.170703, - "y": -2651.382805 - } - } - }, - { - "id": "6542cf62-2a8a-5622-8493-8df80ca9032e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.170703, - "y": -2651.382805 - }, - "endPoint": { - "x": 318.324909, - "y": -2651.299894 - } - } - }, - { - "id": "294b6f13-fa50-5185-a17b-cd21cccdd96e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.324909, - "y": -2651.299894 - }, - "endPoint": { - "x": 318.443411, - "y": -2651.258384 - } - } - }, - { - "id": "0d8923a3-f4a2-570b-8a2a-a0814ebd81b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.443411, - "y": -2651.258384 - }, - "endPoint": { - "x": 318.473063, - "y": -2651.104346 - } - } - }, - { - "id": "f941f513-ce85-5b09-bb25-70bad15083d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.473063, - "y": -2651.104346 - }, - "endPoint": { - "x": 318.473063, - "y": -2650.89696 - } - } - }, - { - "id": "6c484d40-fd66-5516-863c-d50f4b2f243b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.473063, - "y": -2650.89696 - }, - "endPoint": { - "x": 318.41376, - "y": -2650.802159 - } - } - }, - { - "id": "204694ec-a1fd-5940-8ca1-c31194341582", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.41376, - "y": -2650.802159 - }, - "endPoint": { - "x": 318.277406, - "y": -2650.701466 - } - } - }, - { - "id": "8d1f0d43-1455-5d12-b769-11609301258f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.277406, - "y": -2650.701466 - }, - "endPoint": { - "x": 318.158801, - "y": -2650.56521 - } - } - }, - { - "id": "a4eb8dbc-dd05-55ed-b1f2-3f40c280bf38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.158801, - "y": -2650.56521 - }, - "endPoint": { - "x": 318.194403, - "y": -2650.482244 - } - } - }, - { - "id": "e8bcbe3f-7d25-5479-97bc-204c4d0e209f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.194403, - "y": -2650.482244 - }, - "endPoint": { - "x": 318.289308, - "y": -2650.440789 - } - } - }, - { - "id": "d9be5018-052f-54c9-95aa-ef2fea2eea55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.289308, - "y": -2650.440789 - }, - "endPoint": { - "x": 318.490915, - "y": -2650.423007 - } - } - }, - { - "id": "418b8cdb-2913-57f4-a7e9-712b0ec534f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.490915, - "y": -2650.423007 - }, - "endPoint": { - "x": 318.585716, - "y": -2650.369661 - } - } - }, - { - "id": "dd4bad85-235b-551c-8bab-64ad495cc7d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.585716, - "y": -2650.369661 - }, - "endPoint": { - "x": 318.704321, - "y": -2650.334151 - } - } - }, - { - "id": "502ca635-8843-5402-95ea-052ea66313b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.704321, - "y": -2650.334151 - }, - "endPoint": { - "x": 318.793275, - "y": -2650.393389 - } - } - }, - { - "id": "799ee382-e0ae-55d5-99b5-3d24b622593c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.793275, - "y": -2650.393389 - }, - "endPoint": { - "x": 318.894129, - "y": -2650.334151 - } - } - }, - { - "id": "37cb3158-e625-5343-b3a8-a2dd61a4dd8b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.894129, - "y": -2650.334151 - }, - "endPoint": { - "x": 319.042283, - "y": -2650.36377 - } - } - }, - { - "id": "362deeb7-0ca6-583b-82d8-3871ff7c5f7a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.042283, - "y": -2650.36377 - }, - "endPoint": { - "x": 319.273541, - "y": -2650.428898 - } - } - }, - { - "id": "a8525d42-f0ae-5adf-90ee-76184398074f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.273541, - "y": -2650.428898 - }, - "endPoint": { - "x": 319.564102, - "y": -2650.423007 - } - } - }, - { - "id": "8edebb70-98b7-5c00-82e3-ad89bf4e9393", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.564102, - "y": -2650.423007 - }, - "endPoint": { - "x": 319.872412, - "y": -2650.393389 - } - } - }, - { - "id": "28f021db-fe03-590a-b0a3-176121bae2b0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.872412, - "y": -2650.393389 - }, - "endPoint": { - "x": 320.002918, - "y": -2650.304478 - } - } - }, - { - "id": "b7289802-3eb6-5082-8b5e-cf9740d493c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.002918, - "y": -2650.304478 - }, - "endPoint": { - "x": 320.127371, - "y": -2650.263023 - } - } - }, - { - "id": "4089be2c-55d7-5f6c-9747-e5f3e207c67c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.127371, - "y": -2650.263023 - }, - "endPoint": { - "x": 320.281578, - "y": -2650.233404 - } - } - }, - { - "id": "62f0e9cf-0566-5a70-b20b-f3e213f0f255", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.281578, - "y": -2650.233404 - }, - "endPoint": { - "x": 320.34088, - "y": -2650.073419 - } - } - }, - { - "id": "02d1a8bf-817b-5850-bb19-488f5351c4fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.34088, - "y": -2650.073419 - }, - "endPoint": { - "x": 320.346831, - "y": -2649.931217 - } - } - }, - { - "id": "ff6de3a6-4bdf-5396-b49f-15d94179cf14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.346831, - "y": -2649.931217 - }, - "endPoint": { - "x": 320.28681, - "y": -2649.904571 - } - } - }, - { - "id": "ac3cc3fe-af18-5932-8bf0-94e045ad4c2e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.28681, - "y": -2649.904571 - }, - "endPoint": { - "x": 320.197857, - "y": -2649.815715 - } - } - }, - { - "id": "5d91f6cf-9238-5078-8fce-4f01b8212241", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.197857, - "y": -2649.815715 - }, - "endPoint": { - "x": 320.168308, - "y": -2649.661677 - } - } - }, - { - "id": "257892ec-4014-56aa-bdcd-9e779f759240", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.168308, - "y": -2649.661677 - }, - "endPoint": { - "x": 320.073404, - "y": -2649.602384 - } - } - }, - { - "id": "bca5dc01-5329-5fb1-a02e-974aa324bbc8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.073404, - "y": -2649.602384 - }, - "endPoint": { - "x": 319.93705, - "y": -2649.632003 - } - } - }, - { - "id": "3e12f274-a6d7-5831-8a3d-4908eb7ca750", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.93705, - "y": -2649.632003 - }, - "endPoint": { - "x": 319.747241, - "y": -2649.637949 - } - } - }, - { - "id": "507db7c6-c098-5d9e-aea3-3f51c210b3cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.747241, - "y": -2649.637949 - }, - "endPoint": { - "x": 319.515983, - "y": -2649.549093 - } - } - }, - { - "id": "027ad353-9d59-5fd1-8cbf-856333a44a8d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.515983, - "y": -2649.549093 - }, - "endPoint": { - "x": 319.344027, - "y": -2649.566875 - } - } - }, - { - "id": "aa272998-7744-5b15-a131-9f5d09a917cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.344027, - "y": -2649.566875 - }, - "endPoint": { - "x": 319.284724, - "y": -2649.649785 - } - } - }, - { - "id": "e4b3200d-11c9-5ffa-bf2d-62eaf58bcdc5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.284724, - "y": -2649.649785 - }, - "endPoint": { - "x": 319.089068, - "y": -2649.596494 - } - } - }, - { - "id": "8f8f2804-eb33-5d42-984c-fd72db300e39", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.089068, - "y": -2649.596494 - }, - "endPoint": { - "x": 318.875662, - "y": -2649.549093 - } - } - }, - { - "id": "8d17fd2c-52f2-5c29-ab34-dbed2b9161cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.875662, - "y": -2649.549093 - }, - "endPoint": { - "x": 318.632502, - "y": -2649.554983 - } - } - }, - { - "id": "6d852340-393f-5bb4-9710-674bd185ec14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.632502, - "y": -2649.554983 - }, - "endPoint": { - "x": 318.425046, - "y": -2649.602384 - } - } - }, - { - "id": "3acf2a24-4136-581b-95b9-380f07fb35dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.425046, - "y": -2649.602384 - }, - "endPoint": { - "x": 318.116633, - "y": -2649.661677 - } - } - }, - { - "id": "5a47bc62-7939-5cec-8504-cb5fb6be707a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.116633, - "y": -2649.661677 - }, - "endPoint": { - "x": 317.96848, - "y": -2649.572766 - } - } - }, - { - "id": "00cf5b66-da17-5fc7-a65d-1a3ff33fe6f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.96848, - "y": -2649.572766 - }, - "endPoint": { - "x": 317.760922, - "y": -2649.560929 - } - } - }, - { - "id": "40b9e5ba-4005-5c8d-a740-0fe5381f3060", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.760922, - "y": -2649.560929 - }, - "endPoint": { - "x": 317.559315, - "y": -2649.632003 - } - } - }, - { - "id": "4b40582e-8448-5b45-a8c4-a1ebd4c8a33f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.559315, - "y": -2649.632003 - }, - "endPoint": { - "x": 317.500012, - "y": -2649.786097 - } - } - }, - { - "id": "e1b84f80-240c-546f-9ae7-2bdfee3cf0d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.500012, - "y": -2649.786097 - }, - "endPoint": { - "x": 316.978193, - "y": -2649.803824 - } - } - }, - { - "id": "8220dd95-6890-5acf-b935-a69d13f77b1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.978193, - "y": -2649.803824 - }, - "endPoint": { - "x": 316.770635, - "y": -2649.768315 - } - } - }, - { - "id": "2c575710-9cd1-544e-81d5-a77a872eaf00", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.770635, - "y": -2649.768315 - }, - "endPoint": { - "x": 316.626176, - "y": -2649.737485 - } - } - }, - { - "id": "210b21ea-fcd3-52c9-ba8e-cd2e99659ac4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.626176, - "y": -2649.737485 - }, - "endPoint": { - "x": 316.410102, - "y": -2649.661622 - } - } - }, - { - "id": "8ef05e5b-f974-5fec-bc1e-910c96963257", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.410102, - "y": -2649.661622 - }, - "endPoint": { - "x": 316.042079, - "y": -2649.626608 - } - } - }, - { - "id": "b393229d-4f16-50e5-ab50-c4ca9173c840", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.042079, - "y": -2649.626608 - }, - "endPoint": { - "x": 315.901928, - "y": -2649.766663 - } - } - }, - { - "id": "f923dac7-29ef-59ec-b3f0-4baee263fa05", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.901928, - "y": -2649.766663 - }, - "endPoint": { - "x": 315.849398, - "y": -2649.725814 - } - } - }, - { - "id": "8d9fc14e-2a36-56ff-9f36-530857b57f88", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.849398, - "y": -2649.725814 - }, - "endPoint": { - "x": 315.738385, - "y": -2649.725814 - } - } - }, - { - "id": "4bafccb8-024f-540e-8221-37e091a98a9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.738385, - "y": -2649.725814 - }, - "endPoint": { - "x": 315.563146, - "y": -2649.801677 - } - } - }, - { - "id": "4f097209-7fcb-54e6-8683-ddce34f9763b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.563146, - "y": -2649.801677 - }, - "endPoint": { - "x": 315.452236, - "y": -2649.78417 - } - } - }, - { - "id": "03c1ba29-2e9d-5340-8a2e-3aad2fe4590e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.452236, - "y": -2649.78417 - }, - "endPoint": { - "x": 315.417147, - "y": -2649.719978 - } - } - }, - { - "id": "c0a90349-f230-5ccd-91d1-b94109fc937b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.417147, - "y": -2649.719978 - }, - "endPoint": { - "x": 315.281306, - "y": -2649.749046 - } - } - }, - { - "id": "85eff0d8-f9e0-54bf-befa-6ea08f865b78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.281306, - "y": -2649.749046 - }, - "endPoint": { - "x": 314.984384, - "y": -2649.714968 - } - } - }, - { - "id": "1c9a1fda-2b08-576f-82ae-f731ed519699", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.984384, - "y": -2649.714968 - }, - "endPoint": { - "x": 314.511607, - "y": -2649.866089 - } - } - }, - { - "id": "f7e68fc9-7195-5c40-be13-b98eeaa87fc5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.511607, - "y": -2649.866089 - }, - "endPoint": { - "x": 314.474261, - "y": -2649.955771 - } - } - }, - { - "id": "bdfd2447-9190-5825-aed4-a7467b0d57fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.474261, - "y": -2649.955771 - }, - "endPoint": { - "x": 314.409419, - "y": -2650.068575 - } - } - }, - { - "id": "019162eb-30ac-5dcb-bdf3-90ca69db4a9b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.409419, - "y": -2650.068575 - }, - "endPoint": { - "x": 314.251416, - "y": -2650.093954 - } - } - }, - { - "id": "625d14e8-cf3e-5e88-9f04-d3536851ca60", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.251416, - "y": -2650.093954 - }, - "endPoint": { - "x": 314.115883, - "y": -2650.00653 - } - } - }, - { - "id": "8aab6edf-05db-5694-93ad-04ff5cf54b45", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.115883, - "y": -2650.00653 - }, - "endPoint": { - "x": 314.090541, - "y": -2649.851445 - } - } - }, - { - "id": "e8b29a47-8c5f-52bb-a0f2-851a7e2a3e1c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.090541, - "y": -2649.851445 - }, - "endPoint": { - "x": 314.101826, - "y": -2649.671036 - } - } - }, - { - "id": "2c81fce9-3e48-5b0e-bee6-ded86f4544e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.101826, - "y": -2649.671036 - }, - "endPoint": { - "x": 314.2034, - "y": -2649.465192 - } - } - }, - { - "id": "ee7abc11-44d8-5412-a63e-083a21b49e20", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.2034, - "y": -2649.465192 - }, - "endPoint": { - "x": 314.33883, - "y": -2649.327008 - } - } - }, - { - "id": "25f3670e-5c60-56e1-a0ff-71e823f1f693", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.33883, - "y": -2649.327008 - }, - "endPoint": { - "x": 314.468618, - "y": -2649.259348 - } - } - }, - { - "id": "4b214c3b-8245-5a52-8386-d1c8eaf2a62a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.468618, - "y": -2649.259348 - }, - "endPoint": { - "x": 314.668995, - "y": -2649.298821 - } - } - }, - { - "id": "2b2fc534-7693-5d2d-a524-842cabf96032", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.668995, - "y": -2649.298821 - }, - "endPoint": { - "x": 314.798782, - "y": -2649.363674 - } - } - }, - { - "id": "1bf39e71-05fd-51ba-9d60-10db7230c042", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.798782, - "y": -2649.363674 - }, - "endPoint": { - "x": 315.112018, - "y": -2649.318585 - } - } - }, - { - "id": "b47d9a65-36a8-555c-90aa-57609e0cb14a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.112018, - "y": -2649.318585 - }, - "endPoint": { - "x": 315.385649, - "y": -2649.321393 - } - } - }, - { - "id": "6eb8936d-b061-527a-93f5-8dde85c67167", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.385649, - "y": -2649.321393 - }, - "endPoint": { - "x": 315.66318, - "y": -2649.315117 - } - } - }, - { - "id": "379b7686-23e7-5806-aa6f-807e1c8bde86", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.66318, - "y": -2649.315117 - }, - "endPoint": { - "x": 316.092045, - "y": -2649.306639 - } - } - }, - { - "id": "5879af00-5150-5790-b211-f52ead609242", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.092045, - "y": -2649.306639 - }, - "endPoint": { - "x": 316.834144, - "y": -2649.26155 - } - } - }, - { - "id": "5177cd4e-5044-54fe-bdae-9e1da2de996a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.834144, - "y": -2649.26155 - }, - "endPoint": { - "x": 317.451175, - "y": -2649.295518 - } - } - }, - { - "id": "18acd500-aecd-5b16-9ddc-8c194a3dd448", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.451175, - "y": -2649.295518 - }, - "endPoint": { - "x": 318.300491, - "y": -2649.346277 - } - } - }, - { - "id": "7052ea0c-e271-55d0-a9d9-fc45ab329779", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.300491, - "y": -2649.346277 - }, - "endPoint": { - "x": 318.777372, - "y": -2649.303996 - } - } - }, - { - "id": "384f9c45-ec96-5537-b414-66e9f639e7ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.777372, - "y": -2649.303996 - }, - "endPoint": { - "x": 319.262666, - "y": -2649.256045 - } - } - }, - { - "id": "da3cb2d2-ee33-5de5-bfd2-4b3ec3c3dc16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.262666, - "y": -2649.256045 - }, - "endPoint": { - "x": 319.563794, - "y": -2649.264303 - } - } - }, - { - "id": "8643355b-6276-5c66-9b28-f2b0cb1d0668", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.563794, - "y": -2649.264303 - }, - "endPoint": { - "x": 319.961673, - "y": -2649.086701 - } - } - }, - { - "id": "49135057-f84d-5bc0-ae09-e7d654f3a7ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.961673, - "y": -2649.086701 - }, - "endPoint": { - "x": 320.212426, - "y": -2648.865442 - } - } - }, - { - "id": "efd24901-359a-5a8c-a9b8-29609adb5d74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.212426, - "y": -2648.865442 - }, - "endPoint": { - "x": 320.291427, - "y": -2648.701879 - } - } - }, - { - "id": "2ec97ab5-55cd-5b75-b87d-70e6112fd439", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.291427, - "y": -2648.701879 - }, - "endPoint": { - "x": 320.280141, - "y": -2648.501706 - } - } - }, - { - "id": "756b1617-43fe-5657-ba0c-cf29bebb5056", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.280141, - "y": -2648.501706 - }, - "endPoint": { - "x": 320.373301, - "y": -2648.369193 - } - } - }, - { - "id": "bb470a1b-a018-506e-8fa7-5eedbf7e2e48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.373301, - "y": -2648.369193 - }, - "endPoint": { - "x": 320.311126, - "y": -2648.053408 - } - } - }, - { - "id": "5c55cdf3-57a2-5186-8121-c49301d8d545", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.311126, - "y": -2648.053408 - }, - "endPoint": { - "x": 320.229047, - "y": -2647.9166 - } - } - }, - { - "id": "8a9dcaf4-083a-5f79-a92d-751572faf43a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.229047, - "y": -2647.9166 - }, - "endPoint": { - "x": 320.23469, - "y": -2647.795373 - } - } - }, - { - "id": "2bed1954-4142-5848-85c5-d69a77043e66", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.23469, - "y": -2647.795373 - }, - "endPoint": { - "x": 320.099259, - "y": -2647.648767 - } - } - }, - { - "id": "0ebff0a8-f9e1-5d29-acb5-90ae97497e6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.099259, - "y": -2647.648767 - }, - "endPoint": { - "x": 319.907399, - "y": -2647.479588 - } - } - }, - { - "id": "4e03f828-9d3a-5c2e-9ee0-1e457e4ade97", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.907399, - "y": -2647.479588 - }, - "endPoint": { - "x": 319.678808, - "y": -2647.406257 - } - } - }, - { - "id": "159c8138-5a92-57d2-a10a-2047e545bd45", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.678808, - "y": -2647.406257 - }, - "endPoint": { - "x": 319.2048, - "y": -2647.383685 - } - } - }, - { - "id": "93928278-6303-59bd-aa2b-56f1d97ab2c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.2048, - "y": -2647.383685 - }, - "endPoint": { - "x": 319.122926, - "y": -2647.392164 - } - } - }, - { - "id": "75a6fdfc-8c5c-5076-bcf5-763db0d97d41", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.122926, - "y": -2647.392164 - }, - "endPoint": { - "x": 319.066496, - "y": -2647.510583 - } - } - }, - { - "id": "145b6f00-8d3f-55b3-941f-d7216f73f103", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.066496, - "y": -2647.510583 - }, - "endPoint": { - "x": 319.026995, - "y": -2647.555672 - } - } - }, - { - "id": "00a7fa52-f154-5f6b-b490-4e38f4385b88", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.026995, - "y": -2647.555672 - }, - "endPoint": { - "x": 318.891565, - "y": -2647.535963 - } - } - }, - { - "id": "a5d637f2-f492-5c5c-aa30-9853ccf79e91", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.891565, - "y": -2647.535963 - }, - "endPoint": { - "x": 318.756134, - "y": -2647.431637 - } - } - }, - { - "id": "0faee8f5-d620-5ac3-ae85-7620daa80aca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.756134, - "y": -2647.431637 - }, - "endPoint": { - "x": 318.441975, - "y": -2647.417268 - } - } - }, - { - "id": "dd547316-2272-52c5-b2c3-a7ca3beac046", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.441975, - "y": -2647.417268 - }, - "endPoint": { - "x": 318.185272, - "y": -2647.41446 - } - } - }, - { - "id": "efd605e2-142e-5874-b74b-d03b3ed9f9de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.185272, - "y": -2647.41446 - }, - "endPoint": { - "x": 318.134485, - "y": -2647.341129 - } - } - }, - { - "id": "55c96547-cec3-50cd-a4ef-6b04bc2eb3b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.134485, - "y": -2647.341129 - }, - "endPoint": { - "x": 318.114684, - "y": -2647.203001 - } - } - }, - { - "id": "83504d9e-9003-5a89-82c4-a31ae2bc8d3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.114684, - "y": -2647.203001 - }, - "endPoint": { - "x": 318.241702, - "y": -2647.124055 - } - } - }, - { - "id": "ac774923-d510-54e1-a8dc-de98bcc0d5de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.241702, - "y": -2647.124055 - }, - "endPoint": { - "x": 318.484349, - "y": -2647.070488 - } - } - }, - { - "id": "333568e1-c3e9-5178-ab3d-5cf87446d507", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.484349, - "y": -2647.070488 - }, - "endPoint": { - "x": 318.71571, - "y": -2647.059202 - } - } - }, - { - "id": "7f25b809-492e-58aa-a01a-d4b57e535c3d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.71571, - "y": -2647.059202 - }, - "endPoint": { - "x": 318.769677, - "y": -2647.004149 - } - } - }, - { - "id": "c32d1625-7de7-5d81-823b-e7cdaca733e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.769677, - "y": -2647.004149 - }, - "endPoint": { - "x": 318.859964, - "y": -2646.888537 - } - } - }, - { - "id": "0983a8c8-ac1d-5c04-8a4d-dec635dcca35", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.859964, - "y": -2646.888537 - }, - "endPoint": { - "x": 318.919266, - "y": -2646.837778 - } - } - }, - { - "id": "b3064cc0-7df8-58ac-b192-c021b0be2eb4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.919266, - "y": -2646.837778 - }, - "endPoint": { - "x": 319.034895, - "y": -2646.956197 - } - } - }, - { - "id": "ec7c3614-6ee1-55be-89c0-b44a888a5802", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.034895, - "y": -2646.956197 - }, - "endPoint": { - "x": 319.153397, - "y": -2647.032336 - } - } - }, - { - "id": "fe25b5d2-6349-5e45-a793-531d5a2e972f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.153397, - "y": -2647.032336 - }, - "endPoint": { - "x": 319.317043, - "y": -2647.085903 - } - } - }, - { - "id": "d10bc79b-6658-50fd-9779-664128ae7d65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.317043, - "y": -2647.085903 - }, - "endPoint": { - "x": 319.492077, - "y": -2647.080232 - } - } - }, - { - "id": "de6f22ec-ef27-5202-9099-1c717ba149ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.492077, - "y": -2647.080232 - }, - "endPoint": { - "x": 319.647207, - "y": -2647.052045 - } - } - }, - { - "id": "60166ca4-cb09-529d-8c59-8d8cdfa160c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.647207, - "y": -2647.052045 - }, - "endPoint": { - "x": 319.714923, - "y": -2647.08871 - } - } - }, - { - "id": "71098547-d401-58ce-b1bf-a8426686bb62", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.714923, - "y": -2647.08871 - }, - "endPoint": { - "x": 320.039444, - "y": -2646.959005 - } - } - }, - { - "id": "79ebdc09-6769-5222-9cc9-c18b7611b1a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.039444, - "y": -2646.959005 - }, - "endPoint": { - "x": 320.253876, - "y": -2646.792689 - } - } - }, - { - "id": "5c8e121a-bbbe-517f-95fa-a19bb4bf7723", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.253876, - "y": -2646.792689 - }, - "endPoint": { - "x": 320.358322, - "y": -2646.657314 - } - } - }, - { - "id": "c478d781-e017-52e5-af97-2e26ae7570ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.358322, - "y": -2646.657314 - }, - "endPoint": { - "x": 320.386536, - "y": -2646.555851 - } - } - }, - { - "id": "d471ebc7-9b39-576e-a8b1-8bb43d33e946", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.386536, - "y": -2646.555851 - }, - "endPoint": { - "x": 320.403465, - "y": -2646.465618 - } - } - }, - { - "id": "ab9d6a4f-0447-5d04-85e0-8161ea6b796b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.403465, - "y": -2646.465618 - }, - "endPoint": { - "x": 320.40285, - "y": -2646.414474 - } - } - } - ] - }, - { - "id": "1fb2e076-c4d5-5771-a449-75119c469111", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "f860598c-3e44-5443-ab5c-503c828763e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.46229, - "y": -2648.460526 - }, - "endPoint": { - "x": 318.541188, - "y": -2648.534903 - } - } - }, - { - "id": "03310947-7076-5c60-acdf-40c863f18207", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.541188, - "y": -2648.534903 - }, - "endPoint": { - "x": 318.803945, - "y": -2648.543656 - } - } - }, - { - "id": "7cb44216-2132-5cdc-ada0-d9deaecc03f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.803945, - "y": -2648.543656 - }, - "endPoint": { - "x": 318.913418, - "y": -2648.499889 - } - } - }, - { - "id": "3357a4dc-f573-506d-9cc2-cd10a6ec3e35", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.913418, - "y": -2648.499889 - }, - "endPoint": { - "x": 319.00545, - "y": -2648.337978 - } - } - }, - { - "id": "1f9af42e-2a6f-5aa6-94f6-7f5f2d4a6f7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.00545, - "y": -2648.337978 - }, - "endPoint": { - "x": 318.992317, - "y": -2648.162908 - } - } - }, - { - "id": "892cb766-fb8d-5529-a7b3-bee8febfd84e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.992317, - "y": -2648.162908 - }, - "endPoint": { - "x": 318.979184, - "y": -2648.027257 - } - } - }, - { - "id": "99a7d2fb-89c4-58bb-beca-ce928b4eaee6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.979184, - "y": -2648.027257 - }, - "endPoint": { - "x": 318.869608, - "y": -2648.000997 - } - } - }, - { - "id": "04002eea-6eaa-5301-97a3-fa61a6ad051d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.869608, - "y": -2648.000997 - }, - "endPoint": { - "x": 318.782091, - "y": -2647.904709 - } - } - }, - { - "id": "56ab2f0e-c917-5f86-b287-00ad47c74765", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.782091, - "y": -2647.904709 - }, - "endPoint": { - "x": 318.624396, - "y": -2647.882853 - } - } - }, - { - "id": "5b9233d9-3620-54f2-a3f1-54be41fba218", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.624396, - "y": -2647.882853 - }, - "endPoint": { - "x": 318.479834, - "y": -2647.887202 - } - } - }, - { - "id": "4ff9f399-5aa7-5fac-b93f-30926236dee5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.479834, - "y": -2647.887202 - }, - "endPoint": { - "x": 318.440436, - "y": -2647.965983 - } - } - }, - { - "id": "6de202a3-00a8-5225-affe-b89ec5a878d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.440436, - "y": -2647.965983 - }, - "endPoint": { - "x": 318.304697, - "y": -2648.075374 - } - } - }, - { - "id": "a2f20d4d-ca07-50ec-8018-e846e4490c99", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.304697, - "y": -2648.075374 - }, - "endPoint": { - "x": 318.287153, - "y": -2648.189169 - } - } - }, - { - "id": "6d41f87d-dba2-577e-9a20-1c4f5c22966c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.287153, - "y": -2648.189169 - }, - "endPoint": { - "x": 318.291565, - "y": -2648.298615 - } - } - }, - { - "id": "90eeb540-73f2-5186-a8a4-136b644a97c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.291565, - "y": -2648.298615 - }, - "endPoint": { - "x": 318.330963, - "y": -2648.408005 - } - } - }, - { - "id": "8ef1b4b9-06cd-57c6-97be-7c48392c7a1b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.330963, - "y": -2648.408005 - }, - "endPoint": { - "x": 318.46229, - "y": -2648.460526 - } - } - } - ] - }, - { - "id": "306b064b-d257-5d97-bd13-1f37e2ffca2c", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "00c402ba-e1cf-540d-b968-2448000af2cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.257878, - "y": -2648.053518 - }, - "endPoint": { - "x": 317.214069, - "y": -2648.044764 - } - } - }, - { - "id": "780eabd5-570f-52b5-8628-3f17972b1223", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.214069, - "y": -2648.044764 - }, - "endPoint": { - "x": 317.091463, - "y": -2648.127895 - } - } - }, - { - "id": "855f9614-93c2-58fd-8bd4-2e4a79006232", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.091463, - "y": -2648.127895 - }, - "endPoint": { - "x": 317.030211, - "y": -2648.281108 - } - } - }, - { - "id": "6f09a4bc-0cc6-5542-a760-3334f3f49aa9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.030211, - "y": -2648.281108 - }, - "endPoint": { - "x": 317.07833, - "y": -2648.447368 - } - } - }, - { - "id": "8cd2d3d4-755f-5a3d-8d1d-5f7250acf2fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.07833, - "y": -2648.447368 - }, - "endPoint": { - "x": 317.275423, - "y": -2648.548061 - } - } - }, - { - "id": "6529f34d-f2bf-555b-bbc7-c33fb9da7e87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.275423, - "y": -2648.548061 - }, - "endPoint": { - "x": 317.468104, - "y": -2648.574321 - } - } - }, - { - "id": "7e70c496-9223-54c5-b55e-fc4f9db928cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.468104, - "y": -2648.574321 - }, - "endPoint": { - "x": 317.599534, - "y": -2648.49554 - } - } - }, - { - "id": "ee75457c-3700-527d-9bd1-006f1787fc74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.599534, - "y": -2648.49554 - }, - "endPoint": { - "x": 317.691462, - "y": -2648.368587 - } - } - }, - { - "id": "266b20c1-8b73-5a52-ba5d-b97c654b8dea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.691462, - "y": -2648.368587 - }, - "endPoint": { - "x": 317.700286, - "y": -2648.206676 - } - } - }, - { - "id": "0683e1f7-fa02-5e7a-a8ec-cb23a79543d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.700286, - "y": -2648.206676 - }, - "endPoint": { - "x": 317.617078, - "y": -2648.018504 - } - } - }, - { - "id": "3eeb2dbf-c403-5ef7-a599-b2c88e1cb895", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.617078, - "y": -2648.018504 - }, - "endPoint": { - "x": 317.44625, - "y": -2647.98349 - } - } - }, - { - "id": "4d24b88f-cb8e-5229-b892-308f6e5a58f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.44625, - "y": -2647.98349 - }, - "endPoint": { - "x": 317.297277, - "y": -2648.00975 - } - } - }, - { - "id": "e491e712-4193-5507-aebd-c6cf0add42a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.297277, - "y": -2648.00975 - }, - "endPoint": { - "x": 317.257878, - "y": -2648.053518 - } - } - } - ] - }, - { - "id": "d8286d18-a597-5e93-863f-5777aa2bb713", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "e8391127-4f14-50ca-af40-9db8e6b55a0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.977544, - "y": -2648.12283 - }, - "endPoint": { - "x": 315.819849, - "y": -2648.140337 - } - } - }, - { - "id": "33a9b20f-cb2a-5657-bd0a-fe3762153fed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.819849, - "y": -2648.140337 - }, - "endPoint": { - "x": 315.710376, - "y": -2648.26283 - } - } - }, - { - "id": "42de2a70-02dd-587a-926c-b7999878161e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.710376, - "y": -2648.26283 - }, - "endPoint": { - "x": 315.635889, - "y": -2648.363522 - } - } - }, - { - "id": "cce0f755-c769-5887-a6d6-df6a9cb1249a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.635889, - "y": -2648.363522 - }, - "endPoint": { - "x": 315.754186, - "y": -2648.54729 - } - } - }, - { - "id": "b8f01d6f-2a55-5a5c-beba-c7714f15a28d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.754186, - "y": -2648.54729 - }, - "endPoint": { - "x": 316.043207, - "y": -2648.556043 - } - } - }, - { - "id": "3da2d90a-d7ec-56c7-95a7-60280cf54c48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.043207, - "y": -2648.556043 - }, - "endPoint": { - "x": 316.214035, - "y": -2648.494769 - } - } - }, - { - "id": "3d6bfefd-decf-5fa5-8844-cc0953742f38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.214035, - "y": -2648.494769 - }, - "endPoint": { - "x": 316.297243, - "y": -2648.446653 - } - } - }, - { - "id": "9a7595c3-d541-577c-a41b-1e19daf2086d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.297243, - "y": -2648.446653 - }, - "endPoint": { - "x": 316.376039, - "y": -2648.341611 - } - } - }, - { - "id": "93014058-9c00-5873-9cfd-866ffa4a0626", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.376039, - "y": -2648.341611 - }, - "endPoint": { - "x": 316.336641, - "y": -2648.214713 - } - } - }, - { - "id": "752d9959-54e5-574f-b2c0-42522a239e8b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.336641, - "y": -2648.214713 - }, - "endPoint": { - "x": 316.19649, - "y": -2648.144686 - } - } - }, - { - "id": "af7b6607-8d1d-5612-b38e-45318939940f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.19649, - "y": -2648.144686 - }, - "endPoint": { - "x": 315.977544, - "y": -2648.12283 - } - } - } - ] - }, - { - "id": "9228c419-5d90-5b7b-9e3f-aa769a0ae656", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "20ff2479-49d6-5ac7-9c3f-977eb87fd4b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.794986, - "y": -2647.680808 - }, - "endPoint": { - "x": 314.91318, - "y": -2647.672054 - } - } - }, - { - "id": "bf8c1c1a-2a84-5845-84ed-890d4f599d8c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.91318, - "y": -2647.672054 - }, - "endPoint": { - "x": 315.040198, - "y": -2647.571417 - } - } - }, - { - "id": "6af5fb21-fe0a-5591-9007-e682f5227c73", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.040198, - "y": -2647.571417 - }, - "endPoint": { - "x": 315.206717, - "y": -2647.545157 - } - } - }, - { - "id": "cf09dabe-5b5e-5235-83f1-390c694dd9da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.206717, - "y": -2647.545157 - }, - "endPoint": { - "x": 315.40381, - "y": -2647.575766 - } - } - }, - { - "id": "ff58eb5d-ff98-55d0-bec0-de9f2208f6d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.40381, - "y": -2647.575766 - }, - "endPoint": { - "x": 315.767318, - "y": -2647.58452 - } - } - }, - { - "id": "5585fdbc-8d29-5422-93c7-63d05157967b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.767318, - "y": -2647.58452 - }, - "endPoint": { - "x": 315.959999, - "y": -2647.575766 - } - } - }, - { - "id": "5f461221-003b-5b15-be54-5cabfa050959", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.959999, - "y": -2647.575766 - }, - "endPoint": { - "x": 316.279698, - "y": -2647.575766 - } - } - }, - { - "id": "8ce3104b-ece2-5a7f-ac8e-c11ef894cfff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.279698, - "y": -2647.575766 - }, - "endPoint": { - "x": 316.437598, - "y": -2647.568829 - } - } - }, - { - "id": "7a4fd50b-3aa3-5533-aefe-b47f71b3b1e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.437598, - "y": -2647.568829 - }, - "endPoint": { - "x": 316.423337, - "y": -2647.199202 - } - } - }, - { - "id": "ea6e588c-9404-5353-bc12-dae2473704e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.423337, - "y": -2647.199202 - }, - "endPoint": { - "x": 316.123542, - "y": -2647.174208 - } - } - }, - { - "id": "c3729257-b4d7-5871-91b6-19fdbac738de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.123542, - "y": -2647.174208 - }, - "endPoint": { - "x": 315.683905, - "y": -2647.1812 - } - } - }, - { - "id": "a82238a6-d2b3-56a8-99cd-0d3546340092", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.683905, - "y": -2647.1812 - }, - "endPoint": { - "x": 315.279254, - "y": -2647.198597 - } - } - }, - { - "id": "69456c9c-df50-5cc3-8aaa-e28984bdbf6b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.279254, - "y": -2647.198597 - }, - "endPoint": { - "x": 314.895739, - "y": -2647.203772 - } - } - }, - { - "id": "0ebeaf3f-5d1d-5047-8c72-7ea660b41aba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.895739, - "y": -2647.203772 - }, - "endPoint": { - "x": 314.689822, - "y": -2647.155655 - } - } - }, - { - "id": "67045ff3-b838-5284-ba6d-4fef599ffd52", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.689822, - "y": -2647.155655 - }, - "endPoint": { - "x": 314.554083, - "y": -2647.138148 - } - } - }, - { - "id": "66036fe4-fc1e-56f0-98e0-b79e2cdaa2bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.554083, - "y": -2647.138148 - }, - "endPoint": { - "x": 314.427066, - "y": -2647.146902 - } - } - }, - { - "id": "4ccdcb37-e616-5a08-a5a8-11971688ddb7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.427066, - "y": -2647.146902 - }, - "endPoint": { - "x": 314.356991, - "y": -2647.225683 - } - } - }, - { - "id": "dd2d1071-cea3-582a-bd23-1a7eca0f659a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.356991, - "y": -2647.225683 - }, - "endPoint": { - "x": 314.34827, - "y": -2647.308813 - } - } - }, - { - "id": "d6f1cdd5-7861-526e-88fa-050862c18860", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.34827, - "y": -2647.308813 - }, - "endPoint": { - "x": 314.265062, - "y": -2647.361334 - } - } - }, - { - "id": "2581f639-dda2-59e8-8d4b-b7724a9c3a12", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.265062, - "y": -2647.361334 - }, - "endPoint": { - "x": 314.212428, - "y": -2647.440115 - } - } - }, - { - "id": "833e411f-9967-5f10-ab0a-22da074a37e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.212428, - "y": -2647.440115 - }, - "endPoint": { - "x": 314.278194, - "y": -2647.632636 - } - } - }, - { - "id": "0831b0d9-c36f-5c19-b3db-e4c4bfb25963", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.278194, - "y": -2647.632636 - }, - "endPoint": { - "x": 314.4008, - "y": -2647.702664 - } - } - }, - { - "id": "2fc918d3-114c-5120-93f6-694f72a85270", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.4008, - "y": -2647.702664 - }, - "endPoint": { - "x": 314.624159, - "y": -2647.733328 - } - } - }, - { - "id": "99745dd8-1bcd-5c6e-8004-df8a6cf04ff0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.624159, - "y": -2647.733328 - }, - "endPoint": { - "x": 314.794986, - "y": -2647.680808 - } - } - } - ] - }, - { - "id": "78e3e93c-4e1a-5aed-be28-bc0cee16a615", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "d1353566-9fd4-585e-85b2-976a8ec93141", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.40285, - "y": -2646.414474 - }, - "endPoint": { - "x": 320.259519, - "y": -2646.217604 - } - } - }, - { - "id": "49c6c9b4-187c-526f-8663-1b970ab8f28e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.259519, - "y": -2646.217604 - }, - "endPoint": { - "x": 320.098336, - "y": -2646.092303 - } - } - }, - { - "id": "1076ab7a-b969-5a08-b671-9969e3077aa2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.098336, - "y": -2646.092303 - }, - "endPoint": { - "x": 319.856509, - "y": -2645.980435 - } - } - }, - { - "id": "4503fa5b-f29c-5c94-ade4-7c6335b9da82", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.856509, - "y": -2645.980435 - }, - "endPoint": { - "x": 319.65049, - "y": -2645.890918 - } - } - }, - { - "id": "84a67f0e-6cc8-5547-94e3-b397cfee5a0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.65049, - "y": -2645.890918 - }, - "endPoint": { - "x": 319.220497, - "y": -2645.90881 - } - } - }, - { - "id": "b90727fd-d7d5-515b-b755-f6129a5719ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.220497, - "y": -2645.90881 - }, - "endPoint": { - "x": 318.911571, - "y": -2645.949109 - } - } - }, - { - "id": "316b6357-e54c-5255-812a-ba00398d2989", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.911571, - "y": -2645.949109 - }, - "endPoint": { - "x": 318.777987, - "y": -2645.995739 - } - } - }, - { - "id": "57ab5254-fd75-5898-8319-14cb9aeb5507", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.777987, - "y": -2645.995739 - }, - "endPoint": { - "x": 318.619574, - "y": -2646.049526 - } - } - }, - { - "id": "3f37ec46-b0af-5be0-bad8-dea341bbe37c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.619574, - "y": -2646.049526 - }, - "endPoint": { - "x": 318.45952, - "y": -2646.018807 - } - } - }, - { - "id": "7d04a72c-e2e0-54f3-8444-84a136c76f41", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.45952, - "y": -2646.018807 - }, - "endPoint": { - "x": 318.271558, - "y": -2645.656226 - } - } - }, - { - "id": "6e393e01-05cc-53a3-bf0d-33a74929fa9a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.271558, - "y": -2645.656226 - }, - "endPoint": { - "x": 318.129869, - "y": -2645.400504 - } - } - }, - { - "id": "cd622ecd-a3e9-5440-931e-451cb86a4a28", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.129869, - "y": -2645.400504 - }, - "endPoint": { - "x": 317.901483, - "y": -2645.211672 - } - } - }, - { - "id": "ae1cf150-f820-534e-8d87-44271ffa9873", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.901483, - "y": -2645.211672 - }, - "endPoint": { - "x": 317.708494, - "y": -2645.129092 - } - } - }, - { - "id": "b8da79b7-f6c7-5f76-b775-9b83ff22aa06", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.708494, - "y": -2645.129092 - }, - "endPoint": { - "x": 317.610101, - "y": -2645.113347 - } - } - }, - { - "id": "04054821-9298-5ce2-a4d9-e4a74a02e1f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.610101, - "y": -2645.113347 - }, - "endPoint": { - "x": 317.515608, - "y": -2645.042493 - } - } - }, - { - "id": "fd65c1e2-8e04-515f-b02f-1a2e975d0313", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.515608, - "y": -2645.042493 - }, - "endPoint": { - "x": 317.090437, - "y": -2645.046457 - } - } - }, - { - "id": "76ffb552-2541-5900-b93e-29278912ca7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.090437, - "y": -2645.046457 - }, - "endPoint": { - "x": 316.834452, - "y": -2645.097602 - } - } - }, - { - "id": "1e7893cf-880b-5acc-b87d-51fbe3dc2c87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.834452, - "y": -2645.097602 - }, - "endPoint": { - "x": 316.710615, - "y": -2645.224004 - } - } - }, - { - "id": "e0f1f483-f232-5a93-848f-fd2c2580de7a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.710615, - "y": -2645.224004 - }, - "endPoint": { - "x": 316.647619, - "y": -2645.389218 - } - } - }, - { - "id": "09aeaf82-0122-5d70-a662-71e141413e21", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.647619, - "y": -2645.389218 - }, - "endPoint": { - "x": 316.375936, - "y": -2645.656722 - } - } - }, - { - "id": "90f27787-7552-524a-82c7-d7ee2cb5496c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.375936, - "y": -2645.656722 - }, - "endPoint": { - "x": 316.308939, - "y": -2645.888881 - } - } - }, - { - "id": "4a370da4-df46-575c-b9b5-14e736433f82", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.308939, - "y": -2645.888881 - }, - "endPoint": { - "x": 316.076655, - "y": -2645.963588 - } - } - }, - { - "id": "8de0c538-267f-5288-89db-a5ac58222a4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.076655, - "y": -2645.963588 - }, - "endPoint": { - "x": 315.72238, - "y": -2645.951807 - } - } - }, - { - "id": "40c747e7-a1fc-5233-9edb-15f7a9cfd362", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.72238, - "y": -2645.951807 - }, - "endPoint": { - "x": 315.616087, - "y": -2645.904571 - } - } - }, - { - "id": "78900b03-cf2b-5484-8cb5-fa2064c08456", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.616087, - "y": -2645.904571 - }, - "endPoint": { - "x": 315.470396, - "y": -2645.943934 - } - } - }, - { - "id": "6fa908f6-1732-55ec-b8fe-603698d08271", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.470396, - "y": -2645.943934 - }, - "endPoint": { - "x": 315.245909, - "y": -2646.002951 - } - } - }, - { - "id": "a36eb98c-482d-5724-9ffe-995c6a2f208d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.245909, - "y": -2646.002951 - }, - "endPoint": { - "x": 314.934931, - "y": -2645.940026 - } - } - }, - { - "id": "ac88b0b2-ae04-52f2-aea7-2f38803ef525", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.934931, - "y": -2645.940026 - }, - "endPoint": { - "x": 314.802886, - "y": -2645.848582 - } - } - }, - { - "id": "c60d0eed-7dac-5a59-bbff-f97016a7820b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.802886, - "y": -2645.848582 - }, - "endPoint": { - "x": 314.747791, - "y": -2645.636187 - } - } - }, - { - "id": "6e1eb55f-83e5-5f26-ae0e-f0b32bff4a07", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.747791, - "y": -2645.636187 - }, - "endPoint": { - "x": 314.61, - "y": -2645.368628 - } - } - }, - { - "id": "6b3f2a2e-3aaa-5d9d-86cd-27a254154145", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.61, - "y": -2645.368628 - }, - "endPoint": { - "x": 314.499706, - "y": -2645.179796 - } - } - }, - { - "id": "a5fad667-4e2e-5b1d-804f-663afe6bff7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.499706, - "y": -2645.179796 - }, - "endPoint": { - "x": 314.358017, - "y": -2645.132615 - } - } - }, - { - "id": "b4c09a82-aefc-57a8-9acc-03dea27dd5ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.358017, - "y": -2645.132615 - }, - "endPoint": { - "x": 314.094234, - "y": -2645.108998 - } - } - }, - { - "id": "292dfa45-6d20-50a3-a98e-04cb8685dbf1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.094234, - "y": -2645.108998 - }, - "endPoint": { - "x": 313.806751, - "y": -2645.179796 - } - } - }, - { - "id": "b1bbf129-56d5-53ca-abce-66a3d56eefdb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.806751, - "y": -2645.179796 - }, - "endPoint": { - "x": 313.586266, - "y": -2645.376501 - } - } - }, - { - "id": "1629c740-7e5b-5be7-ad22-da6672a91a7e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.586266, - "y": -2645.376501 - }, - "endPoint": { - "x": 313.381581, - "y": -2645.596824 - } - } - }, - { - "id": "e707c386-9464-5148-b11a-8306513851a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.381581, - "y": -2645.596824 - }, - "endPoint": { - "x": 313.294987, - "y": -2645.703022 - } - } - }, - { - "id": "2fc4b4e3-9df6-586d-b6ad-7b90af523a46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.294987, - "y": -2645.703022 - }, - "endPoint": { - "x": 313.290986, - "y": -2645.813183 - } - } - }, - { - "id": "3165f708-0fb4-5ad6-889b-323e3e95a995", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.290986, - "y": -2645.813183 - }, - "endPoint": { - "x": 313.153195, - "y": -2645.942998 - } - } - }, - { - "id": "d6da19d1-c7f8-5d70-8110-a5d15d0bf3bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.153195, - "y": -2645.942998 - }, - "endPoint": { - "x": 313.121697, - "y": -2646.143667 - } - } - }, - { - "id": "64bfcb22-8fe2-5f42-a02f-80d45588c54d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.121697, - "y": -2646.143667 - }, - "endPoint": { - "x": 312.991806, - "y": -2646.379735 - } - } - }, - { - "id": "db0b3a65-47c4-5d9d-b2a4-8d514ec85aa9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.991806, - "y": -2646.379735 - }, - "endPoint": { - "x": 312.569714, - "y": -2646.723763 - } - } - }, - { - "id": "20d02632-15f6-5484-aa79-d25a986716ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.569714, - "y": -2646.723763 - }, - "endPoint": { - "x": 312.455521, - "y": -2646.877196 - } - } - }, - { - "id": "afa37a30-259f-5ace-b976-ad5e2732e514", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.455521, - "y": -2646.877196 - }, - "endPoint": { - "x": 312.156342, - "y": -2646.955922 - } - } - }, - { - "id": "74afcffc-8b59-576f-83b2-6c6037741496", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.156342, - "y": -2646.955922 - }, - "endPoint": { - "x": 312.061848, - "y": -2647.050338 - } - } - }, - { - "id": "3d717039-a02a-5b9b-860f-701f53c9fb64", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.061848, - "y": -2647.050338 - }, - "endPoint": { - "x": 311.994851, - "y": -2647.258825 - } - } - }, - { - "id": "354537ee-84df-540d-8121-360b79acc4e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.994851, - "y": -2647.258825 - }, - "endPoint": { - "x": 311.908257, - "y": -2647.428003 - } - } - }, - { - "id": "e63bc8e2-891e-5208-bee9-e6d14bf6d5f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.908257, - "y": -2647.428003 - }, - "endPoint": { - "x": 311.790165, - "y": -2647.510638 - } - } - }, - { - "id": "cbe7b79b-81b7-5726-b8ca-4bfbd25c00ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.790165, - "y": -2647.510638 - }, - "endPoint": { - "x": 311.764721, - "y": -2647.702058 - } - } - }, - { - "id": "75b40ac3-abec-5c2f-ba55-2e5a95b668b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.764721, - "y": -2647.702058 - }, - "endPoint": { - "x": 311.715268, - "y": -2647.835397 - } - } - }, - { - "id": "519f6462-9784-5c40-819c-b769af80ef64", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.715268, - "y": -2647.835397 - }, - "endPoint": { - "x": 311.646116, - "y": -2647.998354 - } - } - }, - { - "id": "aafa8494-3768-5454-b638-b9d618aa1d4b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.646116, - "y": -2647.998354 - }, - "endPoint": { - "x": 311.626315, - "y": -2648.111984 - } - } - }, - { - "id": "8b4afb5a-df1a-5bf6-b549-ab31d7ff080f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.626315, - "y": -2648.111984 - }, - "endPoint": { - "x": 311.710343, - "y": -2648.20084 - } - } - }, - { - "id": "6c9ea20b-cb7c-5c67-8ec6-83a50d1b0c0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.710343, - "y": -2648.20084 - }, - "endPoint": { - "x": 311.720193, - "y": -2648.368752 - } - } - }, - { - "id": "126a3178-1011-5302-96b7-09e95a3efae5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.720193, - "y": -2648.368752 - }, - "endPoint": { - "x": 311.833873, - "y": -2648.541619 - } - } - }, - { - "id": "2bfbaeae-9683-553b-b082-f1f794633ca3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.833873, - "y": -2648.541619 - }, - "endPoint": { - "x": 312.076109, - "y": -2648.650239 - } - } - }, - { - "id": "53e0361d-5527-50a7-9118-c6507b2d2ec6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.076109, - "y": -2648.650239 - }, - "endPoint": { - "x": 312.402272, - "y": -2648.684813 - } - } - }, - { - "id": "50939afc-490d-5b39-8400-122842e87e53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.402272, - "y": -2648.684813 - }, - "endPoint": { - "x": 312.575254, - "y": -2648.674958 - } - } - }, - { - "id": "30559f04-c388-5ae2-97fa-0d1af6bba10c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.575254, - "y": -2648.674958 - }, - "endPoint": { - "x": 312.743311, - "y": -2648.566283 - } - } - }, - { - "id": "9cb8746f-ec12-50b6-bf42-972b3391031d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.743311, - "y": -2648.566283 - }, - "endPoint": { - "x": 312.916293, - "y": -2648.576193 - } - } - }, - { - "id": "a9c095df-18bb-55c8-8a3a-190e67c6c4de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.916293, - "y": -2648.576193 - }, - "endPoint": { - "x": 312.936095, - "y": -2648.650239 - } - } - }, - { - "id": "2687c346-3003-55cd-9911-52fe2a05e874", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.936095, - "y": -2648.650239 - }, - "endPoint": { - "x": 312.871765, - "y": -2648.768769 - } - } - }, - { - "id": "3a20597e-8613-5643-b091-62f7a12df084", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.871765, - "y": -2648.768769 - }, - "endPoint": { - "x": 312.545603, - "y": -2648.852725 - } - } - }, - { - "id": "4041d2d7-801e-58e8-8b8a-6d146d7b831d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.545603, - "y": -2648.852725 - }, - "endPoint": { - "x": 312.451725, - "y": -2649.020637 - } - } - }, - { - "id": "a0e707c5-7221-5669-86b5-786b5b86f477", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.451725, - "y": -2649.020637 - }, - "endPoint": { - "x": 312.22929, - "y": -2649.139167 - } - } - }, - { - "id": "2b4bf384-faae-5432-ae10-d7bc7320a678", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.22929, - "y": -2649.139167 - }, - "endPoint": { - "x": 312.090883, - "y": -2649.341652 - } - } - }, - { - "id": "96763b2b-d569-5a7d-beae-89f61ada4779", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.090883, - "y": -2649.341652 - }, - "endPoint": { - "x": 311.947552, - "y": -2649.598476 - } - } - }, - { - "id": "ab61455f-b4ec-52be-9b12-e6ed3718d7da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.947552, - "y": -2649.598476 - }, - "endPoint": { - "x": 311.878503, - "y": -2649.88277 - } - } - }, - { - "id": "cec59f46-629f-520a-8a85-c71de5ebff65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.878503, - "y": -2649.88277 - }, - "endPoint": { - "x": 311.809351, - "y": -2650.134639 - } - } - }, - { - "id": "fb7b08e3-8bf5-5240-8b63-c0161d51e687", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.809351, - "y": -2650.134639 - }, - "endPoint": { - "x": 311.873578, - "y": -2650.445799 - } - } - }, - { - "id": "6cf1dd83-481c-5240-a367-fa758784868b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.873578, - "y": -2650.445799 - }, - "endPoint": { - "x": 311.962532, - "y": -2650.712477 - } - } - }, - { - "id": "b2f26820-e9a3-58b0-9f6a-52e506b2ab3a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.962532, - "y": -2650.712477 - }, - "endPoint": { - "x": 312.209591, - "y": -2650.87048 - } - } - }, - { - "id": "486fa076-347d-5970-93db-03eecf945a1b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.209591, - "y": -2650.87048 - }, - "endPoint": { - "x": 312.471629, - "y": -2650.944581 - } - } - }, - { - "id": "c7dc4e35-ef1c-56fb-be5f-ae74d6162bfe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.471629, - "y": -2650.944581 - }, - "endPoint": { - "x": 312.679187, - "y": -2650.885289 - } - } - }, - { - "id": "eaf1d33b-7823-5c8c-85c6-b1a84a7c752a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.679187, - "y": -2650.885289 - }, - "endPoint": { - "x": 312.816362, - "y": -2650.821868 - } - } - }, - { - "id": "c0e90c69-c746-57cc-b13f-6b7effbf3fa0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.816362, - "y": -2650.821868 - }, - "endPoint": { - "x": 312.986061, - "y": -2650.809756 - } - } - }, - { - "id": "a132e4ff-bcbe-5628-9a7a-c5c0c9fde042", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.986061, - "y": -2650.809756 - }, - "endPoint": { - "x": 313.124262, - "y": -2650.82429 - } - } - }, - { - "id": "f7b9b11c-7b5f-530a-917e-ef91c35811f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.124262, - "y": -2650.82429 - }, - "endPoint": { - "x": 313.179973, - "y": -2650.858203 - } - } - }, - { - "id": "cfffeb2c-aacd-5433-b454-e7b22fa84432", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.179973, - "y": -2650.858203 - }, - "endPoint": { - "x": 313.179973, - "y": -2650.942985 - } - } - }, - { - "id": "c113768d-e9f9-5c8d-9c04-0368d585cbdb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.179973, - "y": -2650.942985 - }, - "endPoint": { - "x": 313.10959, - "y": -2651.146847 - } - } - }, - { - "id": "c84007d3-47b5-54c4-b654-8faabd241374", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.10959, - "y": -2651.146847 - }, - "endPoint": { - "x": 313.074604, - "y": -2651.297968 - } - } - }, - { - "id": "75aef97f-47f0-52b0-b60d-a7b7c7c9265c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.074604, - "y": -2651.297968 - }, - "endPoint": { - "x": 312.966054, - "y": -2651.390952 - } - } - }, - { - "id": "215de16a-ce5c-54de-8924-b282fd1a713c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.966054, - "y": -2651.390952 - }, - "endPoint": { - "x": 312.927272, - "y": -2651.487846 - } - } - }, - { - "id": "2583562c-582f-525a-a9da-4ed8f04b0bb2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.927272, - "y": -2651.487846 - }, - "endPoint": { - "x": 312.896287, - "y": -2651.728098 - } - } - }, - { - "id": "4b3fd1a7-2396-5647-bd12-9b5525fd43e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.896287, - "y": -2651.728098 - }, - "endPoint": { - "x": 312.72946, - "y": -2651.828846 - } - } - }, - { - "id": "fd3434f9-c7ed-5874-898e-669f615a5456", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.72946, - "y": -2651.828846 - }, - "endPoint": { - "x": 312.604803, - "y": -2652.056215 - } - } - }, - { - "id": "064d6048-fd4b-5a50-a35b-87feb6d596a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.604803, - "y": -2652.056215 - }, - "endPoint": { - "x": 312.531034, - "y": -2652.253801 - } - } - }, - { - "id": "05b731cc-b3da-5783-888b-71d4134632e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.531034, - "y": -2652.253801 - }, - "endPoint": { - "x": 312.310035, - "y": -2652.486346 - } - } - }, - { - "id": "c7c6f840-f15b-562d-9aa4-a53b0ef6db37", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.310035, - "y": -2652.486346 - }, - "endPoint": { - "x": 312.201485, - "y": -2652.703311 - } - } - }, - { - "id": "5603a247-9b6d-534e-9869-e446786b37ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.201485, - "y": -2652.703311 - }, - "endPoint": { - "x": 312.193688, - "y": -2653.114117 - } - } - }, - { - "id": "71b8f690-52c6-5797-b28e-b5e2150ea6c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.193688, - "y": -2653.114117 - }, - "endPoint": { - "x": 312.275151, - "y": -2653.214865 - } - } - }, - { - "id": "009eef3c-ad61-58cb-9f12-e02256e92432", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.275151, - "y": -2653.214865 - }, - "endPoint": { - "x": 312.395295, - "y": -2653.404743 - } - } - }, - { - "id": "204a2d88-c1cc-5099-85b4-a8e5ebe27257", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.395295, - "y": -2653.404743 - }, - "endPoint": { - "x": 312.539549, - "y": -2653.662117 - } - } - }, - { - "id": "d9cadc1f-0eec-5b07-a444-912ce0d727d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.539549, - "y": -2653.662117 - }, - "endPoint": { - "x": 312.8692, - "y": -2653.666026 - } - } - }, - { - "id": "6911aaa3-b7db-5fe5-9c23-bb096e81f5d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.8692, - "y": -2653.666026 - }, - "endPoint": { - "x": 313.17946, - "y": -2653.681496 - } - } - }, - { - "id": "46707a61-21c4-52fe-b0dc-105c63da3e08", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.17946, - "y": -2653.681496 - }, - "endPoint": { - "x": 313.33459, - "y": -2653.658263 - } - } - }, - { - "id": "923c790b-1f5b-5bbb-97d2-ade864456c9b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.33459, - "y": -2653.658263 - }, - "endPoint": { - "x": 313.381068, - "y": -2653.565223 - } - } - }, - { - "id": "8266844a-0c42-5b0a-8499-ffa2a8d66fd8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.381068, - "y": -2653.565223 - }, - "endPoint": { - "x": 313.485821, - "y": -2653.510996 - } - } - }, - { - "id": "922e1559-a755-5b1c-9344-5579df61c397", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.485821, - "y": -2653.510996 - }, - "endPoint": { - "x": 313.606067, - "y": -2653.495471 - } - } - }, - { - "id": "e1f66eb0-3a42-59e2-88ae-e37199406cfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.606067, - "y": -2653.495471 - }, - "endPoint": { - "x": 313.726211, - "y": -2653.371491 - } - } - }, - { - "id": "44051aa7-2395-5801-b555-6aee7dd4d6c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.726211, - "y": -2653.371491 - }, - "endPoint": { - "x": 313.865848, - "y": -2653.193229 - } - } - }, - { - "id": "c6cd12aa-0f80-5b31-b095-98c175e89493", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.865848, - "y": -2653.193229 - }, - "endPoint": { - "x": 313.958906, - "y": -2653.108007 - } - } - }, - { - "id": "e700a50f-f826-5f44-b037-bd627708dc3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.958906, - "y": -2653.108007 - }, - "endPoint": { - "x": 314.133427, - "y": -2653.061487 - } - } - }, - { - "id": "3d922346-6fd3-5fb7-b1fc-47db2d1d6f70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.133427, - "y": -2653.061487 - }, - "endPoint": { - "x": 314.245876, - "y": -2653.088628 - } - } - }, - { - "id": "2756ff55-d98c-5a7d-9364-338cbbc83b86", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.245876, - "y": -2653.088628 - }, - "endPoint": { - "x": 314.331238, - "y": -2653.166088 - } - } - }, - { - "id": "a9ab15c9-6d88-5832-abfd-26c7fd0a0c83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.331238, - "y": -2653.166088 - }, - "endPoint": { - "x": 314.424296, - "y": -2653.34435 - } - } - }, - { - "id": "300bcda0-99cb-5310-ba09-67b9db38fcf1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.424296, - "y": -2653.34435 - }, - "endPoint": { - "x": 314.59225, - "y": -2653.41724 - } - } - }, - { - "id": "0cf55f4c-2db3-5d8e-bef9-e247a96afe0c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.59225, - "y": -2653.41724 - }, - "endPoint": { - "x": 314.867626, - "y": -2653.483084 - } - } - }, - { - "id": "05b5ff57-8592-5bc3-983c-ac74d9bfe4d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.867626, - "y": -2653.483084 - }, - "endPoint": { - "x": 315.042148, - "y": -2653.506371 - } - } - }, - { - "id": "1779dc17-a9e3-5f5d-927f-8d4e6d68b437", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.042148, - "y": -2653.506371 - }, - "endPoint": { - "x": 315.197277, - "y": -2653.378483 - } - } - }, - { - "id": "a66ec194-b96e-5105-80cc-0ece2d56da5a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.197277, - "y": -2653.378483 - }, - "endPoint": { - "x": 315.426074, - "y": -2653.235124 - } - } - }, - { - "id": "896c7b95-efaf-5f98-a413-21be871f2c0b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.426074, - "y": -2653.235124 - }, - "endPoint": { - "x": 315.530725, - "y": -2653.072332 - } - } - }, - { - "id": "ecb0dc4f-7d75-5ead-98dc-55d2118301d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.530725, - "y": -2653.072332 - }, - "endPoint": { - "x": 315.569507, - "y": -2652.932827 - } - } - }, - { - "id": "faa974c1-46d4-5929-b7cb-f566d8b32eb9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.569507, - "y": -2652.932827 - }, - "endPoint": { - "x": 315.639377, - "y": -2652.746858 - } - } - }, - { - "id": "576ce656-133e-5aea-95b3-a7a909a459d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.639377, - "y": -2652.746858 - }, - "endPoint": { - "x": 315.769883, - "y": -2652.270317 - } - } - }, - { - "id": "2d665098-f42b-5ba4-83cf-bfbf73d97caf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.769883, - "y": -2652.270317 - }, - "endPoint": { - "x": 315.857195, - "y": -2651.905149 - } - } - }, - { - "id": "9c9612a5-7dd1-59c0-b5b1-488162e7abea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.857195, - "y": -2651.905149 - }, - "endPoint": { - "x": 315.84632, - "y": -2651.545487 - } - } - }, - { - "id": "95ef41c1-c222-5413-91bd-4cd824be7514", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.84632, - "y": -2651.545487 - }, - "endPoint": { - "x": 315.808153, - "y": -2651.114916 - } - } - }, - { - "id": "a9f1c8d2-7332-5009-9a3e-8f8c3c8ccbe7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.808153, - "y": -2651.114916 - }, - "endPoint": { - "x": 315.726279, - "y": -2650.940507 - } - } - }, - { - "id": "6fa4d246-9bde-5a03-93c5-bd796243646e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.726279, - "y": -2650.940507 - }, - "endPoint": { - "x": 315.562633, - "y": -2650.875104 - } - } - }, - { - "id": "192da514-1696-565c-a9e4-69215c7eff92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.562633, - "y": -2650.875104 - }, - "endPoint": { - "x": 315.311778, - "y": -2650.880554 - } - } - }, - { - "id": "292ca635-058e-5c56-b157-5ca0c49526b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.311778, - "y": -2650.880554 - }, - "endPoint": { - "x": 315.071799, - "y": -2651.038612 - } - } - }, - { - "id": "f02324b2-1bb4-550d-8c89-9b84c938bcdf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.071799, - "y": -2651.038612 - }, - "endPoint": { - "x": 314.864548, - "y": -2651.305675 - } - } - }, - { - "id": "5786c3ac-f956-5d4e-a3c9-fb8b74026afe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.864548, - "y": -2651.305675 - }, - "endPoint": { - "x": 314.711778, - "y": -2651.670788 - } - } - }, - { - "id": "658d4dbc-d586-59e4-82ac-c343813ae7cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.711778, - "y": -2651.670788 - }, - "endPoint": { - "x": 314.602715, - "y": -2651.807044 - } - } - }, - { - "id": "f52fe0ac-9e74-5bd9-a9a5-7c1c27d88934", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.602715, - "y": -2651.807044 - }, - "endPoint": { - "x": 314.455486, - "y": -2652.014155 - } - } - }, - { - "id": "61bb7b61-f8df-5e12-b0c5-f3c915467cfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.455486, - "y": -2652.014155 - }, - "endPoint": { - "x": 314.330007, - "y": -2652.074108 - } - } - }, - { - "id": "9f90b789-f9f2-5f26-807e-ae2b03ac6a48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.330007, - "y": -2652.074108 - }, - "endPoint": { - "x": 314.174261, - "y": -2652.074328 - } - } - }, - { - "id": "2ac77e4e-d8c5-5958-b946-51da7a866201", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.174261, - "y": -2652.074328 - }, - "endPoint": { - "x": 314.110034, - "y": -2652.015531 - } - } - }, - { - "id": "cb4f2a55-b812-54f2-b5de-b10a580e03d4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.110034, - "y": -2652.015531 - }, - "endPoint": { - "x": 314.128707, - "y": -2651.724189 - } - } - }, - { - "id": "14abf4fb-2a92-5bb5-9aac-7b5cd5b7b59f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.128707, - "y": -2651.724189 - }, - "endPoint": { - "x": 314.139891, - "y": -2651.51284 - } - } - }, - { - "id": "21fa157d-ad43-5c2c-a4e9-32bacda2f80b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.139891, - "y": -2651.51284 - }, - "endPoint": { - "x": 314.190267, - "y": -2651.355168 - } - } - }, - { - "id": "61a4ea75-c2aa-52c4-a1a4-07ef1f72b689", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.190267, - "y": -2651.355168 - }, - "endPoint": { - "x": 314.170055, - "y": -2651.157197 - } - } - }, - { - "id": "04da8139-9f1d-5e1e-a447-b0b65f8e3725", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.170055, - "y": -2651.157197 - }, - "endPoint": { - "x": 314.109624, - "y": -2651.059863 - } - } - }, - { - "id": "ed5d67d5-2250-548b-a02a-395fcbb951fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.109624, - "y": -2651.059863 - }, - "endPoint": { - "x": 314.139891, - "y": -2650.791423 - } - } - }, - { - "id": "d2b7dfde-2a1b-5f7d-bde0-573ede5033a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.139891, - "y": -2650.791423 - }, - "endPoint": { - "x": 314.270807, - "y": -2650.630338 - } - } - }, - { - "id": "4d383d53-9832-5c96-8acd-7464c442946b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.270807, - "y": -2650.630338 - }, - "endPoint": { - "x": 314.408495, - "y": -2650.59681 - } - } - }, - { - "id": "819ac5e5-c617-5f92-aabf-0b9d53d812f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.408495, - "y": -2650.59681 - }, - "endPoint": { - "x": 314.549569, - "y": -2650.657203 - } - } - }, - { - "id": "d8e601bb-f538-5e1c-b6e7-16bd28e776a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.549569, - "y": -2650.657203 - }, - "endPoint": { - "x": 314.892045, - "y": -2650.687428 - } - } - }, - { - "id": "7c5728c5-7ddc-5fbb-ae6d-b62b92d07de0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.892045, - "y": -2650.687428 - }, - "endPoint": { - "x": 314.932674, - "y": -2650.602481 - } - } - }, - { - "id": "aeaa016e-d816-59e1-85e8-6e1781c45160", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.932674, - "y": -2650.602481 - }, - "endPoint": { - "x": 314.966224, - "y": -2650.51858 - } - } - }, - { - "id": "c782b5de-6e16-5d37-abeb-46401f037db6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.966224, - "y": -2650.51858 - }, - "endPoint": { - "x": 315.214719, - "y": -2650.471619 - } - } - }, - { - "id": "64563172-f27c-579b-a8ff-cfb9d57e5b2f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.214719, - "y": -2650.471619 - }, - "endPoint": { - "x": 315.469986, - "y": -2650.448111 - } - } - }, - { - "id": "4e450789-bfdd-5a50-b03a-524e541e08ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.469986, - "y": -2650.448111 - }, - "endPoint": { - "x": 315.647893, - "y": -2650.448111 - } - } - }, - { - "id": "22f96209-9d4b-5e10-a684-17c2b800d11b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.647893, - "y": -2650.448111 - }, - "endPoint": { - "x": 315.785581, - "y": -2650.51858 - } - } - }, - { - "id": "d4dd4311-c487-5d02-af9b-1a9fcf897a50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.785581, - "y": -2650.51858 - }, - "endPoint": { - "x": 315.940095, - "y": -2650.582331 - } - } - }, - { - "id": "75a556c0-2bfc-5fd5-9938-cf4e9022192a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.940095, - "y": -2650.582331 - }, - "endPoint": { - "x": 316.087838, - "y": -2650.729984 - } - } - }, - { - "id": "11e6dc8b-8a53-52e8-8785-a096fc404da1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.087838, - "y": -2650.729984 - }, - "endPoint": { - "x": 316.202031, - "y": -2650.971557 - } - } - }, - { - "id": "735e3141-5f31-5552-a579-b0b341db03a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.202031, - "y": -2650.971557 - }, - "endPoint": { - "x": 316.218754, - "y": -2651.246713 - } - } - }, - { - "id": "14403df9-b4e7-5457-b9f9-21199b73c09e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.218754, - "y": -2651.246713 - }, - "endPoint": { - "x": 316.212085, - "y": -2651.427948 - } - } - }, - { - "id": "565278a2-0d4c-5bc8-a594-4ad8a33f9eef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.212085, - "y": -2651.427948 - }, - "endPoint": { - "x": 316.222858, - "y": -2651.551488 - } - } - }, - { - "id": "c6d6ea0f-a15f-5c99-b271-1b1cf4b50b81", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.222858, - "y": -2651.551488 - }, - "endPoint": { - "x": 316.235478, - "y": -2651.808421 - } - } - }, - { - "id": "bd5fc317-4ee6-59c2-a3a1-b1daf54cf630", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.235478, - "y": -2651.808421 - }, - "endPoint": { - "x": 316.307195, - "y": -2651.960092 - } - } - }, - { - "id": "d361d10e-2d93-5f4f-91f5-fd148fbf4246", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.307195, - "y": -2651.960092 - }, - "endPoint": { - "x": 316.399945, - "y": -2652.010631 - } - } - }, - { - "id": "174b0379-e567-5407-8b9d-2d1353038be6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.399945, - "y": -2652.010631 - }, - "endPoint": { - "x": 316.416771, - "y": -2652.393912 - } - } - }, - { - "id": "ee17bb4f-19e3-5497-93c5-1bf1add88531", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.416771, - "y": -2652.393912 - }, - "endPoint": { - "x": 316.42939, - "y": -2652.655084 - } - } - }, - { - "id": "70ac7320-bcd1-5c00-b3d5-9ed319ad151e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.42939, - "y": -2652.655084 - }, - "endPoint": { - "x": 316.539172, - "y": -2652.87838 - } - } - }, - { - "id": "0f4e2938-8b62-538d-87e1-131477c4b229", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.539172, - "y": -2652.87838 - }, - "endPoint": { - "x": 316.855382, - "y": -2653.084774 - } - } - }, - { - "id": "7eb3d74a-ce6e-5a55-9c04-678567cc6fc5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.855382, - "y": -2653.084774 - }, - "endPoint": { - "x": 317.053501, - "y": -2653.240685 - } - } - }, - { - "id": "0f44b9a7-7436-529a-8286-fa9f7c7d6a5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.053501, - "y": -2653.240685 - }, - "endPoint": { - "x": 317.237666, - "y": -2653.359545 - } - } - }, - { - "id": "47ca7b42-bc00-5736-afc9-e6a02fa88ecb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.237666, - "y": -2653.359545 - }, - "endPoint": { - "x": 317.600252, - "y": -2653.397421 - } - } - }, - { - "id": "372215a0-4459-54d6-8a7b-f4c927c91b9a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.600252, - "y": -2653.397421 - }, - "endPoint": { - "x": 317.654014, - "y": -2653.45264 - } - } - }, - { - "id": "bfde00ac-a43f-5dba-a61f-de9153e02ff0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.654014, - "y": -2653.45264 - }, - "endPoint": { - "x": 317.683665, - "y": -2653.713316 - } - } - }, - { - "id": "c3781fbd-467a-5b9e-8a02-38eb684d74f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.683665, - "y": -2653.713316 - }, - "endPoint": { - "x": 317.778569, - "y": -2653.796282 - } - } - }, - { - "id": "df4c33e6-373f-5611-8d0e-f04690c49e9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.778569, - "y": -2653.796282 - }, - "endPoint": { - "x": 318.543446, - "y": -2653.292655 - } - } - }, - { - "id": "5359f61f-eb09-5521-a620-348c29d95649", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.543446, - "y": -2653.292655 - }, - "endPoint": { - "x": 319.563384, - "y": -2652.463168 - } - } - }, - { - "id": "0ddd1fee-c8fe-5204-aa66-1d7876ed8509", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.563384, - "y": -2652.463168 - }, - "endPoint": { - "x": 320.126653, - "y": -2651.870686 - } - } - }, - { - "id": "74b4a517-6122-5260-ad83-ce3eec3f978a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.126653, - "y": -2651.870686 - }, - "endPoint": { - "x": 320.483185, - "y": -2651.293949 - } - } - }, - { - "id": "534ea051-f858-537b-b8ae-5d2ad94f04c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.483185, - "y": -2651.293949 - }, - "endPoint": { - "x": 320.667043, - "y": -2650.908852 - } - } - }, - { - "id": "aeba8bf6-3f73-594d-a261-7415d58ab333", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.667043, - "y": -2650.908852 - }, - "endPoint": { - "x": 320.453534, - "y": -2651.009544 - } - } - }, - { - "id": "41c43e66-7f6a-5a6e-8942-e1fecc8a98af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.453534, - "y": -2651.009544 - }, - "endPoint": { - "x": 320.34088, - "y": -2651.133964 - } - } - }, - { - "id": "1142a423-a575-5dd9-958f-1553be4051f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.34088, - "y": -2651.133964 - }, - "endPoint": { - "x": 320.151174, - "y": -2651.175474 - } - } - }, - { - "id": "ae5b883e-a961-5c47-9a81-fb69d8601b49", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.151174, - "y": -2651.175474 - }, - "endPoint": { - "x": 320.026619, - "y": -2651.086563 - } - } - }, - { - "id": "45a55a41-4164-51b5-902e-8b4674912f5d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.026619, - "y": -2651.086563 - }, - "endPoint": { - "x": 319.943616, - "y": -2650.902906 - } - } - }, - { - "id": "41461baf-29f9-555c-9e19-a29b1352ce68", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.943616, - "y": -2650.902906 - }, - "endPoint": { - "x": 319.659006, - "y": -2650.760703 - } - } - }, - { - "id": "0577e132-a947-5246-b84e-6071559e54bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.659006, - "y": -2650.760703 - }, - "endPoint": { - "x": 319.380347, - "y": -2650.754813 - } - } - }, - { - "id": "785675c2-35a3-5f2e-b03c-96790efc9fa6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.380347, - "y": -2650.754813 - }, - "endPoint": { - "x": 319.303192, - "y": -2650.701466 - } - } - }, - { - "id": "1adf3aba-746e-515e-9861-d694784c85a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.303192, - "y": -2650.701466 - }, - "endPoint": { - "x": 319.172789, - "y": -2650.802159 - } - } - }, - { - "id": "92af9e77-ba0c-5b08-8bc3-8610590aff15", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.172789, - "y": -2650.802159 - }, - "endPoint": { - "x": 319.036434, - "y": -2650.985871 - } - } - }, - { - "id": "9bd456c1-7e33-5296-849f-e739dc3ac942", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.036434, - "y": -2650.985871 - }, - "endPoint": { - "x": 319.006783, - "y": -2651.151746 - } - } - }, - { - "id": "943da793-5b44-5ebe-a0fa-20adc4467186", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.006783, - "y": -2651.151746 - }, - "endPoint": { - "x": 319.036434, - "y": -2651.347295 - } - } - }, - { - "id": "5f39b05d-70ac-5753-aad6-5a977cc2e0ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.036434, - "y": -2651.347295 - }, - "endPoint": { - "x": 319.22614, - "y": -2651.412423 - } - } - }, - { - "id": "1e390439-db1d-5f10-81b6-6741c8270e1e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.22614, - "y": -2651.412423 - }, - "endPoint": { - "x": 319.48705, - "y": -2651.471715 - } - } - }, - { - "id": "f77a705d-f92f-5c56-af72-55c5fbb7fe1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.48705, - "y": -2651.471715 - }, - "endPoint": { - "x": 319.670805, - "y": -2651.513171 - } - } - }, - { - "id": "1aeab7c5-9184-5f67-9da0-584953fa12d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.670805, - "y": -2651.513171 - }, - "endPoint": { - "x": 319.78941, - "y": -2651.548735 - } - } - }, - { - "id": "8b4b6ea5-78ee-5bdf-b53b-fab4ea246126", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.78941, - "y": -2651.548735 - }, - "endPoint": { - "x": 319.801311, - "y": -2651.708664 - } - } - }, - { - "id": "4d15de30-34ad-5ad7-acfa-0ed78411eb84", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.801311, - "y": -2651.708664 - }, - "endPoint": { - "x": 319.801311, - "y": -2651.910104 - } - } - }, - { - "id": "4a3bb330-f477-55ea-a098-f7d043528fe9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.801311, - "y": -2651.910104 - }, - "endPoint": { - "x": 319.759758, - "y": -2652.064198 - } - } - }, - { - "id": "da33caeb-10b8-5c39-89a7-fe5969668a4e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.759758, - "y": -2652.064198 - }, - "endPoint": { - "x": 319.51075, - "y": -2652.052306 - } - } - }, - { - "id": "ab743922-35dd-5ec5-b3c4-00a8dd02592e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.51075, - "y": -2652.052306 - }, - "endPoint": { - "x": 319.326893, - "y": -2651.987179 - } - } - }, - { - "id": "e68350d3-b0e5-5ee3-b0f6-f04e674bf827", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.326893, - "y": -2651.987179 - }, - "endPoint": { - "x": 319.178739, - "y": -2652.004906 - } - } - }, - { - "id": "161531ec-1403-525e-8560-c350355043e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.178739, - "y": -2652.004906 - }, - "endPoint": { - "x": 319.012631, - "y": -2652.105653 - } - } - }, - { - "id": "526a1db6-eac0-576d-85ed-bf1744f81950", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.012631, - "y": -2652.105653 - }, - "endPoint": { - "x": 318.805176, - "y": -2652.111599 - } - } - }, - { - "id": "ddb589d4-2d06-5453-aff9-dcb5e0368269", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.805176, - "y": -2652.111599 - }, - "endPoint": { - "x": 318.597618, - "y": -2652.111599 - } - } - }, - { - "id": "93463d10-1665-5f14-9fda-7ec21daf8e6d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.597618, - "y": -2652.111599 - }, - "endPoint": { - "x": 318.449362, - "y": -2652.188618 - } - } - }, - { - "id": "91d2325f-3d90-53f7-9292-a5fed1efc29b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.449362, - "y": -2652.188618 - }, - "endPoint": { - "x": 318.277406, - "y": -2652.200455 - } - } - }, - { - "id": "125c2030-159c-58b5-b358-c1e3e6390f25", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.277406, - "y": -2652.200455 - }, - "endPoint": { - "x": 318.058049, - "y": -2652.170836 - } - } - }, - { - "id": "56126e06-d8dd-5ec0-9253-ded1aa6f2508", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.058049, - "y": -2652.170836 - }, - "endPoint": { - "x": 317.986845, - "y": -2652.070089 - } - } - }, - { - "id": "ea4f38f7-edac-5f19-bf51-a43a53834ce9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.986845, - "y": -2652.070089 - }, - "endPoint": { - "x": 317.785238, - "y": -2652.058252 - } - } - }, - { - "id": "d3f9f0e6-8fa4-59d3-8268-303f53bc62b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.785238, - "y": -2652.058252 - }, - "endPoint": { - "x": 317.637085, - "y": -2652.153054 - } - } - }, - { - "id": "10c66b59-3c48-50d9-8c13-2f6d10f2bd62", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.637085, - "y": -2652.153054 - }, - "endPoint": { - "x": 317.595532, - "y": -2652.111599 - } - } - }, - { - "id": "62d34ad4-c03f-5d25-a821-81929daa39fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.595532, - "y": -2652.111599 - }, - "endPoint": { - "x": 317.607434, - "y": -2651.999015 - } - } - }, - { - "id": "8020e85c-8ea3-59a3-ae2d-51a234e3beba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.607434, - "y": -2651.999015 - }, - "endPoint": { - "x": 317.49478, - "y": -2651.880485 - } - } - }, - { - "id": "a28a5faf-6651-5fbd-a121-3ea2748f8ce4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.49478, - "y": -2651.880485 - }, - "endPoint": { - "x": 317.423576, - "y": -2651.827194 - } - } - }, - { - "id": "96800bb0-d660-549f-8b87-bbb2f3c42917", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.423576, - "y": -2651.827194 - }, - "endPoint": { - "x": 317.387974, - "y": -2651.79163 - } - } - }, - { - "id": "9498790a-8163-5ada-a415-d725f171ba26", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.387974, - "y": -2651.79163 - }, - "endPoint": { - "x": 317.269472, - "y": -2651.767957 - } - } - }, - { - "id": "099943ca-4d54-5e6d-bae6-90209be4918e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.269472, - "y": -2651.767957 - }, - "endPoint": { - "x": 317.144917, - "y": -2651.602026 - } - } - }, - { - "id": "a5643f28-3de9-5a38-ac8d-aef1935890e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.144917, - "y": -2651.602026 - }, - "endPoint": { - "x": 317.050013, - "y": -2651.483552 - } - } - }, - { - "id": "d1894d5e-b0ac-5bc3-aa40-ee1580ffc699", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.050013, - "y": -2651.483552 - }, - "endPoint": { - "x": 317.026312, - "y": -2651.270221 - } - } - }, - { - "id": "86f1d377-2618-567d-9fb1-6aa1cb00c681", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.026312, - "y": -2651.270221 - }, - "endPoint": { - "x": 317.085615, - "y": -2651.133964 - } - } - }, - { - "id": "3a1cb456-b3b2-52d5-9008-68d2ae5acc81", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.085615, - "y": -2651.133964 - }, - "endPoint": { - "x": 317.032263, - "y": -2650.950307 - } - } - }, - { - "id": "7dfb4a2e-08c7-5984-b895-8bfa7682ede1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.032263, - "y": -2650.950307 - }, - "endPoint": { - "x": 317.079664, - "y": -2650.68963 - } - } - }, - { - "id": "bb1e29aa-e4e8-5db8-821a-73cb012647fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.079664, - "y": -2650.68963 - }, - "endPoint": { - "x": 317.293173, - "y": -2650.511863 - } - } - }, - { - "id": "8037778d-dabf-5370-ac37-5f445878be4b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.293173, - "y": -2650.511863 - }, - "endPoint": { - "x": 317.51253, - "y": -2650.434844 - } - } - }, - { - "id": "b630d2bf-fb22-5d66-bdc8-77298a94b193", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.51253, - "y": -2650.434844 - }, - "endPoint": { - "x": 317.625183, - "y": -2650.48819 - } - } - }, - { - "id": "ba922db0-a4a8-5707-b00b-dac061df06e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.625183, - "y": -2650.48819 - }, - "endPoint": { - "x": 317.601483, - "y": -2650.577046 - } - } - }, - { - "id": "bb6151e3-be8d-51c2-b4ee-6cb11b9fd0f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.601483, - "y": -2650.577046 - }, - "endPoint": { - "x": 317.447276, - "y": -2650.68963 - } - } - }, - { - "id": "814ea08c-3469-5a5b-9f9f-9fd75db48090", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.447276, - "y": -2650.68963 - }, - "endPoint": { - "x": 317.376175, - "y": -2650.914742 - } - } - }, - { - "id": "9ffa1ebd-ed2a-5e3e-9a7e-eb9583ec49a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.376175, - "y": -2650.914742 - }, - "endPoint": { - "x": 317.393925, - "y": -2651.276167 - } - } - }, - { - "id": "55fd43f2-d0f7-558d-ab4c-03b3a64b764e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.393925, - "y": -2651.276167 - }, - "endPoint": { - "x": 317.506579, - "y": -2651.447988 - } - } - }, - { - "id": "69218b8a-0120-582e-894d-da0b8b7e6b47", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.506579, - "y": -2651.447988 - }, - "endPoint": { - "x": 317.761538, - "y": -2651.530953 - } - } - }, - { - "id": "725583d8-9c00-5baa-a4da-daa0ef53b8f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.761538, - "y": -2651.530953 - }, - "endPoint": { - "x": 318.034349, - "y": -2651.519116 - } - } - }, - { - "id": "9e126e1f-05cd-5375-bc4b-2569570b7c2c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.034349, - "y": -2651.519116 - }, - "endPoint": { - "x": 318.170703, - "y": -2651.382805 - } - } - }, - { - "id": "594a95d9-90f5-5646-a3cd-b8c93d119792", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.170703, - "y": -2651.382805 - }, - "endPoint": { - "x": 318.324909, - "y": -2651.299894 - } - } - }, - { - "id": "1497531c-8f2c-53f0-af49-eca544ff411c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.324909, - "y": -2651.299894 - }, - "endPoint": { - "x": 318.443411, - "y": -2651.258384 - } - } - }, - { - "id": "c33dfd13-615e-5214-bec6-3c9d07f0b92f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.443411, - "y": -2651.258384 - }, - "endPoint": { - "x": 318.473063, - "y": -2651.104346 - } - } - }, - { - "id": "9e3cce5a-5927-5999-861c-62cfda7cb730", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.473063, - "y": -2651.104346 - }, - "endPoint": { - "x": 318.473063, - "y": -2650.89696 - } - } - }, - { - "id": "e07bbb9b-9c47-56b1-beae-99c18921aaed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.473063, - "y": -2650.89696 - }, - "endPoint": { - "x": 318.41376, - "y": -2650.802159 - } - } - }, - { - "id": "11ed8d30-16b7-5b7a-afa0-f2591fa32aee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.41376, - "y": -2650.802159 - }, - "endPoint": { - "x": 318.277406, - "y": -2650.701466 - } - } - }, - { - "id": "ee2aab7e-6dde-51a3-89b6-94472751163d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.277406, - "y": -2650.701466 - }, - "endPoint": { - "x": 318.158801, - "y": -2650.56521 - } - } - }, - { - "id": "58b41ecf-495d-5209-b09a-4aaadf0115c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.158801, - "y": -2650.56521 - }, - "endPoint": { - "x": 318.194403, - "y": -2650.482244 - } - } - }, - { - "id": "dfcda2c5-da40-59f4-b951-d22f58ec7db6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.194403, - "y": -2650.482244 - }, - "endPoint": { - "x": 318.289308, - "y": -2650.440789 - } - } - }, - { - "id": "98c1a8bd-15f4-5690-aebd-1033007fb7fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.289308, - "y": -2650.440789 - }, - "endPoint": { - "x": 318.490915, - "y": -2650.423007 - } - } - }, - { - "id": "1df32ee3-37d9-53cd-a364-bb62a4027a59", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.490915, - "y": -2650.423007 - }, - "endPoint": { - "x": 318.585716, - "y": -2650.369661 - } - } - }, - { - "id": "192e6cbc-2078-5a8f-9172-1d148d8af104", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.585716, - "y": -2650.369661 - }, - "endPoint": { - "x": 318.704321, - "y": -2650.334151 - } - } - }, - { - "id": "41b1b86e-150d-512d-9ddb-9f6ae2caaa68", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.704321, - "y": -2650.334151 - }, - "endPoint": { - "x": 318.793275, - "y": -2650.393389 - } - } - }, - { - "id": "410bfebd-1166-513e-b1d6-9300587dc721", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.793275, - "y": -2650.393389 - }, - "endPoint": { - "x": 318.894129, - "y": -2650.334151 - } - } - }, - { - "id": "a8fbb4b4-7147-56f1-a26f-0b04ee6e8534", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.894129, - "y": -2650.334151 - }, - "endPoint": { - "x": 319.042283, - "y": -2650.36377 - } - } - }, - { - "id": "fbf0407c-3301-5047-a40b-7587188ecd55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.042283, - "y": -2650.36377 - }, - "endPoint": { - "x": 319.273541, - "y": -2650.428898 - } - } - }, - { - "id": "7c2dda47-64b4-516e-9c4f-556286f92256", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.273541, - "y": -2650.428898 - }, - "endPoint": { - "x": 319.564102, - "y": -2650.423007 - } - } - }, - { - "id": "ad8e150d-7709-51a7-9362-f61096860d94", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.564102, - "y": -2650.423007 - }, - "endPoint": { - "x": 319.872412, - "y": -2650.393389 - } - } - }, - { - "id": "f312bcd0-56f5-5ae9-84cc-00e0cf3bf15d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.872412, - "y": -2650.393389 - }, - "endPoint": { - "x": 320.002918, - "y": -2650.304478 - } - } - }, - { - "id": "7d074ef2-106e-52f8-84b1-0b63e0aa8cf7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.002918, - "y": -2650.304478 - }, - "endPoint": { - "x": 320.127371, - "y": -2650.263023 - } - } - }, - { - "id": "712322e3-8c3d-5a34-b0fd-e85cf0160d14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.127371, - "y": -2650.263023 - }, - "endPoint": { - "x": 320.281578, - "y": -2650.233404 - } - } - }, - { - "id": "78bbab4f-a09f-5549-a6b0-8ec6c2b40b36", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.281578, - "y": -2650.233404 - }, - "endPoint": { - "x": 320.34088, - "y": -2650.073419 - } - } - }, - { - "id": "c9a4fdbf-8c6a-5f60-be6c-9c2392de0c54", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.34088, - "y": -2650.073419 - }, - "endPoint": { - "x": 320.346831, - "y": -2649.931217 - } - } - }, - { - "id": "99fa4662-d4d6-579b-a91a-74d508ba97da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.346831, - "y": -2649.931217 - }, - "endPoint": { - "x": 320.28681, - "y": -2649.904571 - } - } - }, - { - "id": "2ad1c8a0-187c-5d43-89b6-84ad3a19c0c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.28681, - "y": -2649.904571 - }, - "endPoint": { - "x": 320.197857, - "y": -2649.815715 - } - } - }, - { - "id": "be0b77da-cc2b-5f31-8fc6-313cb1e55f04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.197857, - "y": -2649.815715 - }, - "endPoint": { - "x": 320.168308, - "y": -2649.661677 - } - } - }, - { - "id": "ce11eb15-0ae9-50f1-980c-97a221ad2634", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.168308, - "y": -2649.661677 - }, - "endPoint": { - "x": 320.073404, - "y": -2649.602384 - } - } - }, - { - "id": "f38d2379-9d21-5ae6-920d-c4a7affb0dcf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.073404, - "y": -2649.602384 - }, - "endPoint": { - "x": 319.93705, - "y": -2649.632003 - } - } - }, - { - "id": "7acff3b5-77c5-5886-b466-6641b614349b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.93705, - "y": -2649.632003 - }, - "endPoint": { - "x": 319.747241, - "y": -2649.637949 - } - } - }, - { - "id": "69efacf1-0ad5-5699-8e67-50c45c0743c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.747241, - "y": -2649.637949 - }, - "endPoint": { - "x": 319.515983, - "y": -2649.549093 - } - } - }, - { - "id": "584bcff0-b896-5b8f-aa0d-7cf278c80b1c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.515983, - "y": -2649.549093 - }, - "endPoint": { - "x": 319.344027, - "y": -2649.566875 - } - } - }, - { - "id": "050d8ae6-3197-5c29-a288-d61fd44f4ebc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.344027, - "y": -2649.566875 - }, - "endPoint": { - "x": 319.284724, - "y": -2649.649785 - } - } - }, - { - "id": "4fd241c4-7b7b-5996-9e02-d2071b1a1e58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.284724, - "y": -2649.649785 - }, - "endPoint": { - "x": 319.089068, - "y": -2649.596494 - } - } - }, - { - "id": "dd254a8e-f961-57bb-931a-6d42eae76c44", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.089068, - "y": -2649.596494 - }, - "endPoint": { - "x": 318.875662, - "y": -2649.549093 - } - } - }, - { - "id": "1dd2b19c-2360-5004-b00e-32f7114a62b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.875662, - "y": -2649.549093 - }, - "endPoint": { - "x": 318.632502, - "y": -2649.554983 - } - } - }, - { - "id": "1f1f7f15-8fe2-530e-b3da-0d404bc61c8e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.632502, - "y": -2649.554983 - }, - "endPoint": { - "x": 318.425046, - "y": -2649.602384 - } - } - }, - { - "id": "8f42828f-1886-5cd0-a36b-f4fa47836b22", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.425046, - "y": -2649.602384 - }, - "endPoint": { - "x": 318.116633, - "y": -2649.661677 - } - } - }, - { - "id": "7623ce50-6c2f-535e-ac5c-8fcc8973c272", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.116633, - "y": -2649.661677 - }, - "endPoint": { - "x": 317.96848, - "y": -2649.572766 - } - } - }, - { - "id": "591aaabe-48d1-59f2-90c8-72833244eef7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.96848, - "y": -2649.572766 - }, - "endPoint": { - "x": 317.760922, - "y": -2649.560929 - } - } - }, - { - "id": "99f07bba-69ed-5560-adba-a98a020a4af7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.760922, - "y": -2649.560929 - }, - "endPoint": { - "x": 317.559315, - "y": -2649.632003 - } - } - }, - { - "id": "7fca32c0-c866-5d1e-a468-d3967f82a921", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.559315, - "y": -2649.632003 - }, - "endPoint": { - "x": 317.500012, - "y": -2649.786097 - } - } - }, - { - "id": "9c3f394e-bbdf-54d6-9d79-ba74dc4d280d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.500012, - "y": -2649.786097 - }, - "endPoint": { - "x": 316.978193, - "y": -2649.803824 - } - } - }, - { - "id": "f5d10f34-c749-55b1-ad69-66e409a4908a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.978193, - "y": -2649.803824 - }, - "endPoint": { - "x": 316.770635, - "y": -2649.768315 - } - } - }, - { - "id": "7f886643-ad67-502a-8b62-992d4378b73b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.770635, - "y": -2649.768315 - }, - "endPoint": { - "x": 316.626176, - "y": -2649.737485 - } - } - }, - { - "id": "8158fd23-8098-576d-8336-dc583d7d23c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.626176, - "y": -2649.737485 - }, - "endPoint": { - "x": 316.410102, - "y": -2649.661622 - } - } - }, - { - "id": "c217ddfd-8957-5a89-9fe1-dd72dbae1d13", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.410102, - "y": -2649.661622 - }, - "endPoint": { - "x": 316.042079, - "y": -2649.626608 - } - } - }, - { - "id": "6a88d9da-88d9-5fce-b40e-ca20543117ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.042079, - "y": -2649.626608 - }, - "endPoint": { - "x": 315.901928, - "y": -2649.766663 - } - } - }, - { - "id": "af19020c-6d68-5255-898f-fbf521cdd87c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.901928, - "y": -2649.766663 - }, - "endPoint": { - "x": 315.849398, - "y": -2649.725814 - } - } - }, - { - "id": "4adb5898-29fc-5ecc-a077-6048310622ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.849398, - "y": -2649.725814 - }, - "endPoint": { - "x": 315.738385, - "y": -2649.725814 - } - } - }, - { - "id": "31326615-2fee-5d2b-94b3-fb345f6a1f33", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.738385, - "y": -2649.725814 - }, - "endPoint": { - "x": 315.563146, - "y": -2649.801677 - } - } - }, - { - "id": "819a9514-c6fa-58ee-a60a-0d1a4800ab57", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.563146, - "y": -2649.801677 - }, - "endPoint": { - "x": 315.452236, - "y": -2649.78417 - } - } - }, - { - "id": "38244024-6510-546f-9995-8f5ae29554e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.452236, - "y": -2649.78417 - }, - "endPoint": { - "x": 315.417147, - "y": -2649.719978 - } - } - }, - { - "id": "1f4afd14-c726-54ab-8312-9dc7d4db720e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.417147, - "y": -2649.719978 - }, - "endPoint": { - "x": 315.281306, - "y": -2649.749046 - } - } - }, - { - "id": "2d9b2f5c-38f0-5a50-9f59-d715944200f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.281306, - "y": -2649.749046 - }, - "endPoint": { - "x": 314.984384, - "y": -2649.714968 - } - } - }, - { - "id": "ac4b2a49-b639-5f96-84c8-59781b7c7f8c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.984384, - "y": -2649.714968 - }, - "endPoint": { - "x": 314.511607, - "y": -2649.866089 - } - } - }, - { - "id": "c3edd90c-b038-5852-92ea-49ecb764bc2d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.511607, - "y": -2649.866089 - }, - "endPoint": { - "x": 314.474261, - "y": -2649.955771 - } - } - }, - { - "id": "23c04a68-af7e-53a3-85c0-5c5893c698de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.474261, - "y": -2649.955771 - }, - "endPoint": { - "x": 314.409419, - "y": -2650.068575 - } - } - }, - { - "id": "df25090d-42c4-5f61-88e7-bf12e22ba104", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.409419, - "y": -2650.068575 - }, - "endPoint": { - "x": 314.251416, - "y": -2650.093954 - } - } - }, - { - "id": "802dd16c-9ed0-5480-8057-34ba4b86bb4a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.251416, - "y": -2650.093954 - }, - "endPoint": { - "x": 314.115883, - "y": -2650.00653 - } - } - }, - { - "id": "43c99a92-8704-5c8f-9686-6eb1ba9bf9d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.115883, - "y": -2650.00653 - }, - "endPoint": { - "x": 314.090541, - "y": -2649.851445 - } - } - }, - { - "id": "cc1d5e9e-2d86-565c-833f-7db962502458", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.090541, - "y": -2649.851445 - }, - "endPoint": { - "x": 314.101826, - "y": -2649.671036 - } - } - }, - { - "id": "dcad8d46-7b6e-57b0-9bfd-fe07693fb3de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.101826, - "y": -2649.671036 - }, - "endPoint": { - "x": 314.2034, - "y": -2649.465192 - } - } - }, - { - "id": "cf7e31fa-70ef-5034-9bdf-178dd1ba40f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.2034, - "y": -2649.465192 - }, - "endPoint": { - "x": 314.33883, - "y": -2649.327008 - } - } - }, - { - "id": "83849d5f-3dd2-5934-9710-c40217efa065", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.33883, - "y": -2649.327008 - }, - "endPoint": { - "x": 314.468618, - "y": -2649.259348 - } - } - }, - { - "id": "83ec62ee-5404-5270-86a5-37f883aaf9b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.468618, - "y": -2649.259348 - }, - "endPoint": { - "x": 314.668995, - "y": -2649.298821 - } - } - }, - { - "id": "b24ceb74-adfd-53be-944a-3bb3b1692da6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.668995, - "y": -2649.298821 - }, - "endPoint": { - "x": 314.798782, - "y": -2649.363674 - } - } - }, - { - "id": "24d2ad12-4d3b-5d06-942d-b854055a4475", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.798782, - "y": -2649.363674 - }, - "endPoint": { - "x": 315.112018, - "y": -2649.318585 - } - } - }, - { - "id": "01f44cc3-7318-5ecb-8d14-7c1172b22df7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.112018, - "y": -2649.318585 - }, - "endPoint": { - "x": 315.385649, - "y": -2649.321393 - } - } - }, - { - "id": "c4416c97-5103-5c5c-818f-a0fe79b76b56", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.385649, - "y": -2649.321393 - }, - "endPoint": { - "x": 315.66318, - "y": -2649.315117 - } - } - }, - { - "id": "4408d0c9-bc31-5068-805b-182f3c3b6fcb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.66318, - "y": -2649.315117 - }, - "endPoint": { - "x": 316.092045, - "y": -2649.306639 - } - } - }, - { - "id": "4e6162be-34d4-5f4b-ab38-27019a776b6f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.092045, - "y": -2649.306639 - }, - "endPoint": { - "x": 316.834144, - "y": -2649.26155 - } - } - }, - { - "id": "dcce0b71-0b64-5716-b66d-c65065dc9bda", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.834144, - "y": -2649.26155 - }, - "endPoint": { - "x": 317.451175, - "y": -2649.295518 - } - } - }, - { - "id": "613b11d6-725a-5cf9-b55b-b21ec74c1140", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.451175, - "y": -2649.295518 - }, - "endPoint": { - "x": 318.300491, - "y": -2649.346277 - } - } - }, - { - "id": "fe157656-0d44-50da-bb0d-ea078bc531b0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.300491, - "y": -2649.346277 - }, - "endPoint": { - "x": 318.777372, - "y": -2649.303996 - } - } - }, - { - "id": "61b079a4-2dae-5ae2-b062-5d507568d2a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.777372, - "y": -2649.303996 - }, - "endPoint": { - "x": 319.262666, - "y": -2649.256045 - } - } - }, - { - "id": "04001e82-7c34-5ce9-8f27-2d77985e10b0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.262666, - "y": -2649.256045 - }, - "endPoint": { - "x": 319.563794, - "y": -2649.264303 - } - } - }, - { - "id": "6d674f89-7495-5160-8c84-f0c0287fab7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.563794, - "y": -2649.264303 - }, - "endPoint": { - "x": 319.961673, - "y": -2649.086701 - } - } - }, - { - "id": "1506e5d4-2ecb-5e3c-8271-6487e1c801b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.961673, - "y": -2649.086701 - }, - "endPoint": { - "x": 320.212426, - "y": -2648.865442 - } - } - }, - { - "id": "329c2f8e-bf75-5b81-8b3e-9dc9e8600532", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.212426, - "y": -2648.865442 - }, - "endPoint": { - "x": 320.291427, - "y": -2648.701879 - } - } - }, - { - "id": "719fdff8-9a2a-56e7-90df-8e73dce6276d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.291427, - "y": -2648.701879 - }, - "endPoint": { - "x": 320.280141, - "y": -2648.501706 - } - } - }, - { - "id": "9d25213d-4a35-5689-ac48-e709d0951a9a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.280141, - "y": -2648.501706 - }, - "endPoint": { - "x": 320.373301, - "y": -2648.369193 - } - } - }, - { - "id": "e8466ad9-e3cf-5b94-becc-21e704cb5eb2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.373301, - "y": -2648.369193 - }, - "endPoint": { - "x": 320.311126, - "y": -2648.053408 - } - } - }, - { - "id": "5fe6d67b-e7b6-5c31-a1fd-9a57caf1c90a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.311126, - "y": -2648.053408 - }, - "endPoint": { - "x": 320.229047, - "y": -2647.9166 - } - } - }, - { - "id": "46ef27e2-d48a-5d92-a473-87fb9ca1b225", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.229047, - "y": -2647.9166 - }, - "endPoint": { - "x": 320.23469, - "y": -2647.795373 - } - } - }, - { - "id": "6010d905-0f7e-5df4-91e2-26b868216060", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.23469, - "y": -2647.795373 - }, - "endPoint": { - "x": 320.099259, - "y": -2647.648767 - } - } - }, - { - "id": "80050459-efa7-5e17-b58b-47b97c3ab88c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.099259, - "y": -2647.648767 - }, - "endPoint": { - "x": 319.907399, - "y": -2647.479588 - } - } - }, - { - "id": "71e36053-b189-5664-8ca1-e3ef38ab85ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.907399, - "y": -2647.479588 - }, - "endPoint": { - "x": 319.678808, - "y": -2647.406257 - } - } - }, - { - "id": "ceaa4ca6-1724-5e70-a742-2ab1bd42bf19", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.678808, - "y": -2647.406257 - }, - "endPoint": { - "x": 319.2048, - "y": -2647.383685 - } - } - }, - { - "id": "c3dc1dc0-986e-5ea6-812c-dfda896e8abd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.2048, - "y": -2647.383685 - }, - "endPoint": { - "x": 319.122926, - "y": -2647.392164 - } - } - }, - { - "id": "63b0c982-88df-5a9a-8629-927274da859d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.122926, - "y": -2647.392164 - }, - "endPoint": { - "x": 319.066496, - "y": -2647.510583 - } - } - }, - { - "id": "c3b87439-d979-5806-b8fb-c5f9c2881f01", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.066496, - "y": -2647.510583 - }, - "endPoint": { - "x": 319.026995, - "y": -2647.555672 - } - } - }, - { - "id": "4a4487be-a802-54af-b77a-a027ef6b9a76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.026995, - "y": -2647.555672 - }, - "endPoint": { - "x": 318.891565, - "y": -2647.535963 - } - } - }, - { - "id": "c9efeedf-2b11-5586-a1e8-878518ad075b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.891565, - "y": -2647.535963 - }, - "endPoint": { - "x": 318.756134, - "y": -2647.431637 - } - } - }, - { - "id": "7fc1650c-a6c1-5f89-9dbb-de672051712f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.756134, - "y": -2647.431637 - }, - "endPoint": { - "x": 318.441975, - "y": -2647.417268 - } - } - }, - { - "id": "9a85ea66-356b-5bc8-8ab0-c465e5f355ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.441975, - "y": -2647.417268 - }, - "endPoint": { - "x": 318.185272, - "y": -2647.41446 - } - } - }, - { - "id": "c6028a09-3a8f-5129-a6f0-6700fe95399b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.185272, - "y": -2647.41446 - }, - "endPoint": { - "x": 318.134485, - "y": -2647.341129 - } - } - }, - { - "id": "7d9bdb72-c81e-52ca-9dc9-e0b8a005f409", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.134485, - "y": -2647.341129 - }, - "endPoint": { - "x": 318.114684, - "y": -2647.203001 - } - } - }, - { - "id": "70b73245-bfa5-5b10-9aee-dcbfb230d2e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.114684, - "y": -2647.203001 - }, - "endPoint": { - "x": 318.241702, - "y": -2647.124055 - } - } - }, - { - "id": "9bf8163a-840b-582b-a339-66faf7845452", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.241702, - "y": -2647.124055 - }, - "endPoint": { - "x": 318.484349, - "y": -2647.070488 - } - } - }, - { - "id": "d9c0e04a-6cb7-53c4-8a8e-f9108ad72876", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.484349, - "y": -2647.070488 - }, - "endPoint": { - "x": 318.71571, - "y": -2647.059202 - } - } - }, - { - "id": "34f6a1db-0331-52b2-af94-4ebd00c24038", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.71571, - "y": -2647.059202 - }, - "endPoint": { - "x": 318.769677, - "y": -2647.004149 - } - } - }, - { - "id": "94b55ac3-7d0f-5695-83ff-ac8751f08306", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.769677, - "y": -2647.004149 - }, - "endPoint": { - "x": 318.859964, - "y": -2646.888537 - } - } - }, - { - "id": "9564a1a7-7c1c-5efd-bb71-688802be22a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.859964, - "y": -2646.888537 - }, - "endPoint": { - "x": 318.919266, - "y": -2646.837778 - } - } - }, - { - "id": "6fc107a4-4239-538e-b54c-656104298da2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.919266, - "y": -2646.837778 - }, - "endPoint": { - "x": 319.034895, - "y": -2646.956197 - } - } - }, - { - "id": "c9ee7287-7dde-5a0f-bc07-59d860c7c1c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.034895, - "y": -2646.956197 - }, - "endPoint": { - "x": 319.153397, - "y": -2647.032336 - } - } - }, - { - "id": "275ce7b4-60c7-53d1-bb5f-ca2b691373fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.153397, - "y": -2647.032336 - }, - "endPoint": { - "x": 319.317043, - "y": -2647.085903 - } - } - }, - { - "id": "725f9a34-f9f7-5212-a06d-b26d0c15b154", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.317043, - "y": -2647.085903 - }, - "endPoint": { - "x": 319.492077, - "y": -2647.080232 - } - } - }, - { - "id": "424f0600-a5f5-5c9a-b804-cac8baa28ab0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.492077, - "y": -2647.080232 - }, - "endPoint": { - "x": 319.647207, - "y": -2647.052045 - } - } - }, - { - "id": "06794863-04ff-5bf0-8a17-563d1d741150", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.647207, - "y": -2647.052045 - }, - "endPoint": { - "x": 319.714923, - "y": -2647.08871 - } - } - }, - { - "id": "a073b655-9d61-54bd-9f4a-b289ffe7cf90", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.714923, - "y": -2647.08871 - }, - "endPoint": { - "x": 320.039444, - "y": -2646.959005 - } - } - }, - { - "id": "502d2ddc-382a-560a-9d8e-17d3ecfc4c29", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.039444, - "y": -2646.959005 - }, - "endPoint": { - "x": 320.253876, - "y": -2646.792689 - } - } - }, - { - "id": "ce9de3fa-9aa0-5add-845a-dd6eb44ca938", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.253876, - "y": -2646.792689 - }, - "endPoint": { - "x": 320.358322, - "y": -2646.657314 - } - } - }, - { - "id": "2e74ccd4-7c52-5c14-9d4a-7a6203c958d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.358322, - "y": -2646.657314 - }, - "endPoint": { - "x": 320.386536, - "y": -2646.555851 - } - } - }, - { - "id": "b2fa8b17-22f4-5397-921d-9158125af74b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.386536, - "y": -2646.555851 - }, - "endPoint": { - "x": 320.403465, - "y": -2646.465618 - } - } - }, - { - "id": "e184263f-435d-5ea7-b096-9fc26d61d9d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.403465, - "y": -2646.465618 - }, - "endPoint": { - "x": 320.40285, - "y": -2646.414474 - } - } - } - ] - }, - { - "id": "c6a129e6-d84a-53ae-8d0e-29d41bf2478f", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "ea42a45b-0c6e-5edc-b232-a1613e31c5d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.437598, - "y": -2647.568829 - }, - "endPoint": { - "x": 316.423337, - "y": -2647.199202 - } - } - }, - { - "id": "29eebe69-03e9-5576-bf00-3ff3590cfd76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.423337, - "y": -2647.199202 - }, - "endPoint": { - "x": 316.123542, - "y": -2647.174208 - } - } - }, - { - "id": "a4061e50-4bc0-5c64-8d01-22826a992c93", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.123542, - "y": -2647.174208 - }, - "endPoint": { - "x": 315.683905, - "y": -2647.1812 - } - } - }, - { - "id": "157057da-c212-50d1-b217-e391ccd3c891", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.683905, - "y": -2647.1812 - }, - "endPoint": { - "x": 315.279254, - "y": -2647.198597 - } - } - }, - { - "id": "0d81b9a0-cd6d-57be-81a0-7917a689012e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.279254, - "y": -2647.198597 - }, - "endPoint": { - "x": 314.895739, - "y": -2647.203772 - } - } - }, - { - "id": "364ee350-fe2d-5588-b0f6-d2f54267bcc7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.895739, - "y": -2647.203772 - }, - "endPoint": { - "x": 314.689822, - "y": -2647.155655 - } - } - }, - { - "id": "21969442-3cd5-5b2f-b97f-51f3d94db71e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.689822, - "y": -2647.155655 - }, - "endPoint": { - "x": 314.554083, - "y": -2647.138148 - } - } - }, - { - "id": "cc383468-fb56-5657-b10b-291cb7671682", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.554083, - "y": -2647.138148 - }, - "endPoint": { - "x": 314.427066, - "y": -2647.146902 - } - } - }, - { - "id": "3a15822e-31ea-5fed-bcf7-961bcab890a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.427066, - "y": -2647.146902 - }, - "endPoint": { - "x": 314.356991, - "y": -2647.225683 - } - } - }, - { - "id": "297e5269-7b2e-5200-9959-5ee2d3618f42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.356991, - "y": -2647.225683 - }, - "endPoint": { - "x": 314.34827, - "y": -2647.308813 - } - } - }, - { - "id": "398c96d2-8db0-58a5-a42c-0482ccd40fae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.34827, - "y": -2647.308813 - }, - "endPoint": { - "x": 314.265062, - "y": -2647.361334 - } - } - }, - { - "id": "1aeb0135-7b95-5518-b843-736ed3033a9d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.265062, - "y": -2647.361334 - }, - "endPoint": { - "x": 314.212428, - "y": -2647.440115 - } - } - }, - { - "id": "443f2140-83ad-5178-be9d-871d174e375b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.212428, - "y": -2647.440115 - }, - "endPoint": { - "x": 314.278194, - "y": -2647.632636 - } - } - }, - { - "id": "f8aaf954-5d2d-5e6a-a5c3-1c8f348dc633", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.278194, - "y": -2647.632636 - }, - "endPoint": { - "x": 314.4008, - "y": -2647.702664 - } - } - }, - { - "id": "6904ad30-4709-5450-b340-830be78f8484", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.4008, - "y": -2647.702664 - }, - "endPoint": { - "x": 314.624159, - "y": -2647.733328 - } - } - }, - { - "id": "f1b4e62d-7b3b-56ec-a07a-0c33f2dad099", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.624159, - "y": -2647.733328 - }, - "endPoint": { - "x": 314.794986, - "y": -2647.680808 - } - } - }, - { - "id": "b3df2985-dc16-5301-a7f4-6b04b89e3e6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.794986, - "y": -2647.680808 - }, - "endPoint": { - "x": 314.91318, - "y": -2647.672054 - } - } - }, - { - "id": "6c9b225b-9a8d-5a1f-a656-97ed37adc0ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.91318, - "y": -2647.672054 - }, - "endPoint": { - "x": 315.040198, - "y": -2647.571417 - } - } - }, - { - "id": "fa2e1f29-1d05-5ac8-90d3-ff7d7f993b65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.040198, - "y": -2647.571417 - }, - "endPoint": { - "x": 315.206717, - "y": -2647.545157 - } - } - }, - { - "id": "baed5d45-08b5-567e-a303-00b6fb969663", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.206717, - "y": -2647.545157 - }, - "endPoint": { - "x": 315.40381, - "y": -2647.575766 - } - } - }, - { - "id": "7090941d-cff7-5f6e-9ae7-80d9b68fbff2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.40381, - "y": -2647.575766 - }, - "endPoint": { - "x": 315.767318, - "y": -2647.58452 - } - } - }, - { - "id": "576d59dc-9d20-5fa2-937e-92ae575bc410", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.767318, - "y": -2647.58452 - }, - "endPoint": { - "x": 315.959999, - "y": -2647.575766 - } - } - }, - { - "id": "fd06ce35-254c-51ed-9291-1e48bf43a9d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.959999, - "y": -2647.575766 - }, - "endPoint": { - "x": 316.279698, - "y": -2647.575766 - } - } - }, - { - "id": "f4b71f3a-dd1a-54c7-97ce-632fcb68af38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.279698, - "y": -2647.575766 - }, - "endPoint": { - "x": 316.437598, - "y": -2647.568829 - } - } - } - ] - }, - { - "id": "774e6544-9641-5039-b862-7c89f628fc8f", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "f6cec94a-a69a-5b1a-ba06-9a2a38018f39", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.977544, - "y": -2648.12283 - }, - "endPoint": { - "x": 316.19649, - "y": -2648.144686 - } - } - }, - { - "id": "d7be19af-04ae-5eb0-96b2-bf3e3580e5ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.19649, - "y": -2648.144686 - }, - "endPoint": { - "x": 316.336641, - "y": -2648.214713 - } - } - }, - { - "id": "51f6388b-202a-5ee4-bf85-071aa98f7f6f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.336641, - "y": -2648.214713 - }, - "endPoint": { - "x": 316.376039, - "y": -2648.341611 - } - } - }, - { - "id": "672201a3-6eed-50d5-83ce-53316165aa11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.376039, - "y": -2648.341611 - }, - "endPoint": { - "x": 316.297243, - "y": -2648.446653 - } - } - }, - { - "id": "65e9a7c5-757c-547c-ac15-3bb42ff17fd8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.297243, - "y": -2648.446653 - }, - "endPoint": { - "x": 316.214035, - "y": -2648.494769 - } - } - }, - { - "id": "99f5b95d-53f6-5187-be82-79dbcb8a4175", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.214035, - "y": -2648.494769 - }, - "endPoint": { - "x": 316.043207, - "y": -2648.556043 - } - } - }, - { - "id": "0693e709-6319-57c5-b428-0d18ef5a54cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.043207, - "y": -2648.556043 - }, - "endPoint": { - "x": 315.754186, - "y": -2648.54729 - } - } - }, - { - "id": "7d2bbc85-1292-5ce4-9595-856634173c4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.754186, - "y": -2648.54729 - }, - "endPoint": { - "x": 315.635889, - "y": -2648.363522 - } - } - }, - { - "id": "c145e49f-778a-5292-a2bc-744044d3005d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.635889, - "y": -2648.363522 - }, - "endPoint": { - "x": 315.710376, - "y": -2648.26283 - } - } - }, - { - "id": "08642518-9aba-53ba-b763-0a3c0a3a4ff0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.710376, - "y": -2648.26283 - }, - "endPoint": { - "x": 315.819849, - "y": -2648.140337 - } - } - }, - { - "id": "831df851-2551-5a28-888a-ad29170fcaec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.819849, - "y": -2648.140337 - }, - "endPoint": { - "x": 315.977544, - "y": -2648.12283 - } - } - } - ] - }, - { - "id": "9f93f13c-7a49-5e69-b6f7-2ece6c4ca774", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "678b621d-030c-5c0a-874c-b7dc512a1171", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.257878, - "y": -2648.053518 - }, - "endPoint": { - "x": 317.214069, - "y": -2648.044764 - } - } - }, - { - "id": "5af1d7fa-d6d3-5910-92d4-d1c0b732bce8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.214069, - "y": -2648.044764 - }, - "endPoint": { - "x": 317.091463, - "y": -2648.127895 - } - } - }, - { - "id": "3f62b83d-6de9-5434-a5d9-71cd4ea7b2f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.091463, - "y": -2648.127895 - }, - "endPoint": { - "x": 317.030211, - "y": -2648.281108 - } - } - }, - { - "id": "a82e0c9b-69cb-51dd-8ae7-0743622e9899", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.030211, - "y": -2648.281108 - }, - "endPoint": { - "x": 317.07833, - "y": -2648.447368 - } - } - }, - { - "id": "cc080714-1ddd-59a5-a70b-3838cad5a0d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.07833, - "y": -2648.447368 - }, - "endPoint": { - "x": 317.275423, - "y": -2648.548061 - } - } - }, - { - "id": "89561fdc-afb8-5149-b2c7-eb24fe403966", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.275423, - "y": -2648.548061 - }, - "endPoint": { - "x": 317.468104, - "y": -2648.574321 - } - } - }, - { - "id": "41f1930e-d863-5374-818a-4e0215e1d182", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.468104, - "y": -2648.574321 - }, - "endPoint": { - "x": 317.599534, - "y": -2648.49554 - } - } - }, - { - "id": "efb90447-b2fc-548d-8769-4f1d02a744a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.599534, - "y": -2648.49554 - }, - "endPoint": { - "x": 317.691462, - "y": -2648.368587 - } - } - }, - { - "id": "abf32b34-42db-584f-ba64-0d167c02d62f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.691462, - "y": -2648.368587 - }, - "endPoint": { - "x": 317.700286, - "y": -2648.206676 - } - } - }, - { - "id": "9ca84d5c-ac1d-5d83-b022-0cf95b41496a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.700286, - "y": -2648.206676 - }, - "endPoint": { - "x": 317.617078, - "y": -2648.018504 - } - } - }, - { - "id": "896243a1-e5f5-5e51-ae82-44ec7f08546f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.617078, - "y": -2648.018504 - }, - "endPoint": { - "x": 317.44625, - "y": -2647.98349 - } - } - }, - { - "id": "517b50ce-f159-5339-a248-fa5b5ea69852", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.44625, - "y": -2647.98349 - }, - "endPoint": { - "x": 317.297277, - "y": -2648.00975 - } - } - }, - { - "id": "be16a069-400e-5753-8016-608364b9e17d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.297277, - "y": -2648.00975 - }, - "endPoint": { - "x": 317.257878, - "y": -2648.053518 - } - } - } - ] - }, - { - "id": "a5feacdb-5049-5877-92e6-a422d6eee9b5", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "09d30a03-627c-55ee-8e08-014701501bd2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.304697, - "y": -2648.075374 - }, - "endPoint": { - "x": 318.440436, - "y": -2647.965983 - } - } - }, - { - "id": "cf994422-3871-56d7-9845-840b207866d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.440436, - "y": -2647.965983 - }, - "endPoint": { - "x": 318.479834, - "y": -2647.887202 - } - } - }, - { - "id": "bf9393f5-9d6c-55c3-be24-6196cd1de3b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.479834, - "y": -2647.887202 - }, - "endPoint": { - "x": 318.624396, - "y": -2647.882853 - } - } - }, - { - "id": "757d54c9-7a8e-59a9-be6d-529d475aff7d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.624396, - "y": -2647.882853 - }, - "endPoint": { - "x": 318.782091, - "y": -2647.904709 - } - } - }, - { - "id": "16168801-7f02-5315-a906-1f9382df145c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.782091, - "y": -2647.904709 - }, - "endPoint": { - "x": 318.869608, - "y": -2648.000997 - } - } - }, - { - "id": "46bf9523-8348-5427-b18f-911812e464dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.869608, - "y": -2648.000997 - }, - "endPoint": { - "x": 318.979184, - "y": -2648.027257 - } - } - }, - { - "id": "f27766c0-6734-5c42-8491-a84f8b382f34", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.979184, - "y": -2648.027257 - }, - "endPoint": { - "x": 318.992317, - "y": -2648.162908 - } - } - }, - { - "id": "57e121f6-070a-5a8b-a5a4-6c2419c0f095", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.992317, - "y": -2648.162908 - }, - "endPoint": { - "x": 319.00545, - "y": -2648.337978 - } - } - }, - { - "id": "bd555441-9522-5d9c-8e24-221c5190c61d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.00545, - "y": -2648.337978 - }, - "endPoint": { - "x": 318.913418, - "y": -2648.499889 - } - } - }, - { - "id": "e46eb5ee-e221-5817-b214-40af99f448d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.913418, - "y": -2648.499889 - }, - "endPoint": { - "x": 318.803945, - "y": -2648.543656 - } - } - }, - { - "id": "dd70c636-f0cc-5a00-ad8c-fc3412a04144", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.803945, - "y": -2648.543656 - }, - "endPoint": { - "x": 318.541188, - "y": -2648.534903 - } - } - }, - { - "id": "b022ff1c-051a-563b-b7d9-41512abda1b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.541188, - "y": -2648.534903 - }, - "endPoint": { - "x": 318.46229, - "y": -2648.460526 - } - } - }, - { - "id": "45ca0d69-8f57-5b37-ae73-408495628454", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.46229, - "y": -2648.460526 - }, - "endPoint": { - "x": 318.330963, - "y": -2648.408005 - } - } - }, - { - "id": "4d89ed6b-1196-55c0-94da-71614a0023c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.330963, - "y": -2648.408005 - }, - "endPoint": { - "x": 318.291565, - "y": -2648.298615 - } - } - }, - { - "id": "950473b4-34cd-555b-82eb-a35943eee9ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.291565, - "y": -2648.298615 - }, - "endPoint": { - "x": 318.287153, - "y": -2648.189169 - } - } - }, - { - "id": "952c6b6d-d810-5fe4-9971-d136fcb3a6e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.287153, - "y": -2648.189169 - }, - "endPoint": { - "x": 318.304697, - "y": -2648.075374 - } - } - } - ] - }, - { - "id": "7bee622c-9ec1-5acc-bc56-635a1546d108", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "d48e6031-9555-54dc-9572-882069ad9711", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.258807, - "y": -2636.387471 - }, - "endPoint": { - "x": 305.396495, - "y": -2636.693181 - } - } - }, - { - "id": "e124fd00-2e83-598e-80b5-c569bc4e7043", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.396495, - "y": -2636.693181 - }, - "endPoint": { - "x": 305.47129, - "y": -2636.866488 - } - } - }, - { - "id": "e190041c-c588-57be-b22c-c62ae2428aa7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.47129, - "y": -2636.866488 - }, - "endPoint": { - "x": 305.460825, - "y": -2637.302234 - } - } - }, - { - "id": "7a6f8ab2-f381-5b48-b751-53fc270c376e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.460825, - "y": -2637.302234 - }, - "endPoint": { - "x": 305.423992, - "y": -2637.66977 - } - } - }, - { - "id": "92fa53c7-f07f-56a5-9c14-b1060ca4e8c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.423992, - "y": -2637.66977 - }, - "endPoint": { - "x": 305.529053, - "y": -2637.906003 - } - } - }, - { - "id": "38c3543c-225c-56f6-8a21-4cff009b3e18", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.529053, - "y": -2637.906003 - }, - "endPoint": { - "x": 305.902104, - "y": -2637.963754 - } - } - }, - { - "id": "2d361ed9-9257-5b94-b8a3-3103763a73b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.902104, - "y": -2637.963754 - }, - "endPoint": { - "x": 306.322452, - "y": -2638.021504 - } - } - }, - { - "id": "fc1864c1-dfa3-58d7-b46c-d8362565bf75", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.322452, - "y": -2638.021504 - }, - "endPoint": { - "x": 306.427514, - "y": -2638.095 - } - } - }, - { - "id": "25e0fee3-2e2f-5296-a88f-73b78462702d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.427514, - "y": -2638.095 - }, - "endPoint": { - "x": 306.627172, - "y": -2638.158036 - } - } - }, - { - "id": "9aa4c066-f205-5e73-a4aa-37d64c1bd835", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.627172, - "y": -2638.158036 - }, - "endPoint": { - "x": 306.727001, - "y": -2638.03202 - } - } - }, - { - "id": "811f4e76-df75-5a82-ab1a-2e68bdeaacaf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.727001, - "y": -2638.03202 - }, - "endPoint": { - "x": 306.821597, - "y": -2637.690745 - } - } - }, - { - "id": "b7dcd579-fda6-5be2-bf2e-5653b910db17", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.821597, - "y": -2637.690745 - }, - "endPoint": { - "x": 306.984524, - "y": -2637.029226 - } - } - }, - { - "id": "3756b238-1da3-5ad3-b331-055120302791", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.984524, - "y": -2637.029226 - }, - "endPoint": { - "x": 307.546665, - "y": -2636.719496 - } - } - }, - { - "id": "55f42ac7-e5c1-57d6-b709-571a2060dcef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.546665, - "y": -2636.719496 - }, - "endPoint": { - "x": 308.100803, - "y": -2636.564907 - } - } - }, - { - "id": "f38f3f0d-cd53-5e17-a0dd-538bf8d0fb0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.100803, - "y": -2636.564907 - }, - "endPoint": { - "x": 308.557985, - "y": -2636.517671 - } - } - }, - { - "id": "efad6b89-4b7c-5803-aa7b-eb1a6e4574b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.557985, - "y": -2636.517671 - }, - "endPoint": { - "x": 309.177991, - "y": -2636.470436 - } - } - }, - { - "id": "6757f078-92fa-5bf7-a0ac-ce0297ad65e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.177991, - "y": -2636.470436 - }, - "endPoint": { - "x": 309.897724, - "y": -2636.512441 - } - } - }, - { - "id": "48557960-94b5-54cf-b4ee-d312e0d2b5e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.897724, - "y": -2636.512441 - }, - "endPoint": { - "x": 310.559797, - "y": -2636.774935 - } - } - }, - { - "id": "e331faa8-78aa-5b9e-a4bc-1d7b5717d0ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.559797, - "y": -2636.774935 - }, - "endPoint": { - "x": 310.848818, - "y": -2637.105695 - } - } - }, - { - "id": "467ea808-c83f-5f32-8193-e36590cde40e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.848818, - "y": -2637.105695 - }, - "endPoint": { - "x": 310.974913, - "y": -2637.284177 - } - } - }, - { - "id": "2facc080-9b09-5864-a4f4-b284c73c750e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.974913, - "y": -2637.284177 - }, - "endPoint": { - "x": 310.947621, - "y": -2638.029212 - } - } - }, - { - "id": "27009047-6abc-54d9-bd46-7a760148c40e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.947621, - "y": -2638.029212 - }, - "endPoint": { - "x": 311.005385, - "y": -2638.412327 - } - } - }, - { - "id": "5f15a682-5065-5906-a6c0-e15b38920797", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.005385, - "y": -2638.412327 - }, - "endPoint": { - "x": 310.955829, - "y": -2639.415286 - } - } - }, - { - "id": "bc971e01-42ee-5f4f-ae6d-b81e4bd800f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.955829, - "y": -2639.415286 - }, - "endPoint": { - "x": 310.980556, - "y": -2639.913793 - } - } - }, - { - "id": "bf20cee1-020c-5be1-98eb-f09c1c9e5ebf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.980556, - "y": -2639.913793 - }, - "endPoint": { - "x": 311.04232, - "y": -2640.696869 - } - } - }, - { - "id": "dd209955-9ce3-5155-b67d-3b1f53518ef3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.04232, - "y": -2640.696869 - }, - "endPoint": { - "x": 311.108599, - "y": -2641.284287 - } - } - }, - { - "id": "105f90c7-e4ab-5baa-bdb2-f193f9a154f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.108599, - "y": -2641.284287 - }, - "endPoint": { - "x": 311.125118, - "y": -2642.1778 - } - } - }, - { - "id": "5ec26af6-8b11-52e5-90f9-3dd351c1921f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.125118, - "y": -2642.1778 - }, - "endPoint": { - "x": 311.166568, - "y": -2642.665902 - } - } - }, - { - "id": "d30a57a1-dd69-5fc8-accd-caf7710e16d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.166568, - "y": -2642.665902 - }, - "endPoint": { - "x": 311.125118, - "y": -2643.336065 - } - } - }, - { - "id": "bc5978cc-85e4-54ff-b183-89411c974eeb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.125118, - "y": -2643.336065 - }, - "endPoint": { - "x": 311.141739, - "y": -2643.617331 - } - } - }, - { - "id": "37981f66-9336-5ae0-8c22-1d1f3620be37", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.141739, - "y": -2643.617331 - }, - "endPoint": { - "x": 311.025802, - "y": -2643.956569 - } - } - }, - { - "id": "0d9bf128-f1be-5702-b6d2-568a14161d9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.025802, - "y": -2643.956569 - }, - "endPoint": { - "x": 310.909352, - "y": -2644.30891 - } - } - }, - { - "id": "09d08622-7b30-5b01-95cd-43074270f9b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.909352, - "y": -2644.30891 - }, - "endPoint": { - "x": 310.329769, - "y": -2644.780495 - } - } - }, - { - "id": "eccdf448-8b91-5b44-b4b4-ec0d42cecc6d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.329769, - "y": -2644.780495 - }, - "endPoint": { - "x": 309.741876, - "y": -2644.970759 - } - } - }, - { - "id": "ddb3c645-43a2-5efc-8a86-182e91b38228", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.741876, - "y": -2644.970759 - }, - "endPoint": { - "x": 309.187123, - "y": -2644.937672 - } - } - }, - { - "id": "6088c492-3183-5a19-b624-7c2a962445b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.187123, - "y": -2644.937672 - }, - "endPoint": { - "x": 308.731788, - "y": -2645.028675 - } - } - }, - { - "id": "065f4f42-1965-5425-b5d3-ab91f1b22e5d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.731788, - "y": -2645.028675 - }, - "endPoint": { - "x": 308.110755, - "y": -2644.863185 - } - } - }, - { - "id": "84a6b516-7da7-585f-9ef8-0a4aec0ccf50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.110755, - "y": -2644.863185 - }, - "endPoint": { - "x": 307.539483, - "y": -2644.69775 - } - } - }, - { - "id": "6ce8163f-596b-501e-8fff-98e0b5826102", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.539483, - "y": -2644.69775 - }, - "endPoint": { - "x": 307.059217, - "y": -2644.300596 - } - } - }, - { - "id": "b1fdca30-2301-5fbd-b6dc-5d0a50403112", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.059217, - "y": -2644.300596 - }, - "endPoint": { - "x": 306.785995, - "y": -2643.870411 - } - } - }, - { - "id": "f7c202ac-cd2d-5a74-8ddf-f8554d2fd718", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.785995, - "y": -2643.870411 - }, - "endPoint": { - "x": 306.759012, - "y": -2643.271432 - } - } - }, - { - "id": "a0e2daf4-ab49-555a-af4c-548f7d558731", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.759012, - "y": -2643.271432 - }, - "endPoint": { - "x": 306.734183, - "y": -2642.568238 - } - } - }, - { - "id": "06c39056-6beb-55bd-9792-f464a9ccd2af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.734183, - "y": -2642.568238 - }, - "endPoint": { - "x": 306.767322, - "y": -2642.270345 - } - } - }, - { - "id": "4b135188-298a-50b3-993b-6525cd1cffbb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.767322, - "y": -2642.270345 - }, - "endPoint": { - "x": 306.709354, - "y": -2642.013907 - } - } - }, - { - "id": "0d1e0183-570b-54ab-92f5-5cc732297942", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.709354, - "y": -2642.013907 - }, - "endPoint": { - "x": 306.568588, - "y": -2642.005649 - } - } - }, - { - "id": "29180897-d34a-53b3-9887-0c453c3c52f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.568588, - "y": -2642.005649 - }, - "endPoint": { - "x": 306.419511, - "y": -2642.162826 - } - } - }, - { - "id": "2b062ce1-3448-50f3-9511-e0b3a907a7a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.419511, - "y": -2642.162826 - }, - "endPoint": { - "x": 306.378164, - "y": -2642.262087 - } - } - }, - { - "id": "54f2f379-2e0c-56c1-95dd-3f28773b7788", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.378164, - "y": -2642.262087 - }, - "endPoint": { - "x": 306.245708, - "y": -2642.286916 - } - } - }, - { - "id": "0d11ee9c-44c1-5699-80b2-dfafef8162d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.245708, - "y": -2642.286916 - }, - "endPoint": { - "x": 306.088321, - "y": -2642.171084 - } - } - }, - { - "id": "68c9fab5-37d1-5509-9729-a2ff632d9879", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.088321, - "y": -2642.171084 - }, - "endPoint": { - "x": 305.931037, - "y": -2642.071823 - } - } - }, - { - "id": "0afd7d82-7c4d-5f2b-8b86-66d94169a1be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.931037, - "y": -2642.071823 - }, - "endPoint": { - "x": 305.757131, - "y": -2642.088339 - } - } - }, - { - "id": "fa64a763-93da-5117-8870-55ce832007b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.757131, - "y": -2642.088339 - }, - "endPoint": { - "x": 305.599847, - "y": -2642.129739 - } - } - }, - { - "id": "1d1035ef-994f-5a11-af7d-a872e437b6a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.599847, - "y": -2642.129739 - }, - "endPoint": { - "x": 305.583328, - "y": -2642.303487 - } - } - }, - { - "id": "d252c51d-4222-5a27-9142-d7643d8cbd48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.583328, - "y": -2642.303487 - }, - "endPoint": { - "x": 305.707473, - "y": -2642.609583 - } - } - }, - { - "id": "9efa4186-b72a-5c4a-8a39-d2ee10b62588", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.707473, - "y": -2642.609583 - }, - "endPoint": { - "x": 305.78196, - "y": -2642.841246 - } - } - }, - { - "id": "290bb82c-bfae-5ee9-8284-3aa51fdba2ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.78196, - "y": -2642.841246 - }, - "endPoint": { - "x": 305.78196, - "y": -2643.122513 - } - } - }, - { - "id": "575c7391-3b0b-5d41-acea-4b700e0d9c61", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.78196, - "y": -2643.122513 - }, - "endPoint": { - "x": 305.757131, - "y": -2643.561012 - } - } - }, - { - "id": "bb3835f5-bcda-557f-bb21-78db622ffcb9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.757131, - "y": -2643.561012 - }, - "endPoint": { - "x": 305.85655, - "y": -2643.726502 - } - } - }, - { - "id": "3a4a9d0c-77d0-5c42-91f1-356b3ab98296", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.85655, - "y": -2643.726502 - }, - "endPoint": { - "x": 305.85655, - "y": -2643.916766 - } - } - }, - { - "id": "246f7fd9-2ac4-5e2b-9b8a-971903a4b96e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.85655, - "y": -2643.916766 - }, - "endPoint": { - "x": 305.839929, - "y": -2644.140171 - } - } - }, - { - "id": "b788a977-3010-5f4f-b3fa-29eac6c202ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.839929, - "y": -2644.140171 - }, - "endPoint": { - "x": 305.839929, - "y": -2644.37178 - } - } - }, - { - "id": "420ea14e-47de-5e61-af4d-d893e8c324cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.839929, - "y": -2644.37178 - }, - "endPoint": { - "x": 305.666126, - "y": -2644.669618 - } - } - }, - { - "id": "b2450280-cc5e-5d19-8b21-ccc3207369e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.666126, - "y": -2644.669618 - }, - "endPoint": { - "x": 305.425941, - "y": -2644.893024 - } - } - }, - { - "id": "30c28a35-eeb3-59a4-bc99-307c7e09a477", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.425941, - "y": -2644.893024 - }, - "endPoint": { - "x": 305.227207, - "y": -2645.050201 - } - } - }, - { - "id": "267a7d9d-67eb-5dff-b9bd-0dd7c978558c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.227207, - "y": -2645.050201 - }, - "endPoint": { - "x": 304.86298, - "y": -2645.058514 - } - } - }, - { - "id": "aca9f55c-30ef-5c04-afe3-d11419c78cc6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.86298, - "y": -2645.058514 - }, - "endPoint": { - "x": 304.664245, - "y": -2645.091601 - } - } - }, - { - "id": "c9a8adbd-3843-5fdd-806a-b87f4d707aa0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.664245, - "y": -2645.091601 - }, - "endPoint": { - "x": 304.506858, - "y": -2644.926111 - } - } - }, - { - "id": "c275462b-5d1f-5ee2-a82c-54bd16c34807", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.506858, - "y": -2644.926111 - }, - "endPoint": { - "x": 304.283397, - "y": -2644.595186 - } - } - }, - { - "id": "f861d4ce-1fd6-5d1b-9d42-0bf95af2fc61", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.283397, - "y": -2644.595186 - }, - "endPoint": { - "x": 304.283397, - "y": -2644.073942 - } - } - }, - { - "id": "68cfb147-81fc-5051-90aa-b8c7bf1f4a4a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.283397, - "y": -2644.073942 - }, - "endPoint": { - "x": 304.308226, - "y": -2643.354177 - } - } - }, - { - "id": "9891fd2c-29fc-5970-b37e-14c23cabe758", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.308226, - "y": -2643.354177 - }, - "endPoint": { - "x": 304.308226, - "y": -2642.866075 - } - } - }, - { - "id": "0db4886d-c8d4-52c9-9e86-ec745970813f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.308226, - "y": -2642.866075 - }, - "endPoint": { - "x": 304.399231, - "y": -2642.634412 - } - } - }, - { - "id": "fafe7048-e309-503a-bc22-51864b31800f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.399231, - "y": -2642.634412 - }, - "endPoint": { - "x": 304.366195, - "y": -2642.402748 - } - } - }, - { - "id": "d150990c-2cef-509e-8a58-c6c4a2823855", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.366195, - "y": -2642.402748 - }, - "endPoint": { - "x": 304.2006, - "y": -2642.386177 - } - } - }, - { - "id": "0e45287a-21cc-55b1-8b52-0a0026bf908a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.2006, - "y": -2642.386177 - }, - "endPoint": { - "x": 303.968726, - "y": -2642.667499 - } - } - }, - { - "id": "90310571-2c02-5cfa-b25e-326eb0398af3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.968726, - "y": -2642.667499 - }, - "endPoint": { - "x": 303.79482, - "y": -2642.890849 - } - } - }, - { - "id": "6760812a-8a50-5ff7-95cf-f24fe887d080", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.79482, - "y": -2642.890849 - }, - "endPoint": { - "x": 303.571256, - "y": -2642.965336 - } - } - }, - { - "id": "fc8da9cb-656e-5892-940f-c9c598ee0266", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.571256, - "y": -2642.965336 - }, - "endPoint": { - "x": 303.447112, - "y": -2642.998423 - } - } - }, - { - "id": "09644aa7-0509-58c9-843c-696e90bd1088", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.447112, - "y": -2642.998423 - }, - "endPoint": { - "x": 303.215237, - "y": -2643.1556 - } - } - }, - { - "id": "4452575d-a138-531b-a0d4-91fa722cf00e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.215237, - "y": -2643.1556 - }, - "endPoint": { - "x": 302.958637, - "y": -2643.07291 - } - } - }, - { - "id": "188e0578-ed5a-5ed9-b163-a42aa03642b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.958637, - "y": -2643.07291 - }, - "endPoint": { - "x": 302.677105, - "y": -2642.882591 - } - } - }, - { - "id": "e7d7f0cb-624b-5845-bc4c-cb3e6af5b0f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.677105, - "y": -2642.882591 - }, - "endPoint": { - "x": 302.412091, - "y": -2642.617841 - } - } - }, - { - "id": "f03fc4eb-19be-56ad-a5a5-8ccdd2261bbf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.412091, - "y": -2642.617841 - }, - "endPoint": { - "x": 302.312775, - "y": -2642.286916 - } - } - }, - { - "id": "d9c60576-7f2a-51c8-bc03-23beab15b613", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.312775, - "y": -2642.286916 - }, - "endPoint": { - "x": 302.370744, - "y": -2641.881504 - } - } - }, - { - "id": "7d41b557-9165-5547-a4fa-13dd4b771821", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.370744, - "y": -2641.881504 - }, - "endPoint": { - "x": 302.528028, - "y": -2641.674669 - } - } - }, - { - "id": "9e271a7e-65ce-51e5-adfd-e6d4c25fbcfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.528028, - "y": -2641.674669 - }, - "endPoint": { - "x": 302.569479, - "y": -2641.484405 - } - } - }, - { - "id": "a0e43c17-1130-5723-8ddc-50326daf9213", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.569479, - "y": -2641.484405 - }, - "endPoint": { - "x": 302.850908, - "y": -2641.434747 - } - } - }, - { - "id": "4be0d5f3-3d30-5742-80ad-35ab30d6ef5d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.850908, - "y": -2641.434747 - }, - "endPoint": { - "x": 303.594444, - "y": -2640.719166 - } - } - }, - { - "id": "511f885c-56f6-57e0-9068-8b271cc33189", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.594444, - "y": -2640.719166 - }, - "endPoint": { - "x": 303.960415, - "y": -2640.387801 - } - } - }, - { - "id": "d0fcdc4e-eaa9-5954-ad8f-38eabbf92b01", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.960415, - "y": -2640.387801 - }, - "endPoint": { - "x": 304.069991, - "y": -2640.253911 - } - } - }, - { - "id": "291f5485-0a9c-5874-904d-bf56ff763483", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.069991, - "y": -2640.253911 - }, - "endPoint": { - "x": 304.090305, - "y": -2640.193023 - } - } - }, - { - "id": "53a97246-63fc-5a2f-987b-154778c0abfb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.090305, - "y": -2640.193023 - }, - "endPoint": { - "x": 304.005046, - "y": -2639.986078 - } - } - }, - { - "id": "0ee965b6-4b74-5b15-b096-276bf3b60b63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.005046, - "y": -2639.986078 - }, - "endPoint": { - "x": 303.879156, - "y": -2639.835948 - } - } - }, - { - "id": "50f4fcc3-7102-5dd3-a0cc-e39fe1a9a7fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.879156, - "y": -2639.835948 - }, - "endPoint": { - "x": 303.408021, - "y": -2639.811559 - } - } - }, - { - "id": "bf252ed6-21f4-53eb-988f-e3f6cc6ab0f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.408021, - "y": -2639.811559 - }, - "endPoint": { - "x": 303.119718, - "y": -2639.762892 - } - } - }, - { - "id": "b9b80fff-fe47-5782-8754-248105e12ac5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.119718, - "y": -2639.762892 - }, - "endPoint": { - "x": 302.993829, - "y": -2639.730411 - } - } - }, - { - "id": "2625f034-64b2-57d4-92e0-f804c812f46f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.993829, - "y": -2639.730411 - }, - "endPoint": { - "x": 302.773753, - "y": -2639.550827 - } - } - }, - { - "id": "25e733b0-93d9-5e84-b8c8-8f34cb4f37fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.773753, - "y": -2639.550827 - }, - "endPoint": { - "x": 302.65597, - "y": -2639.274845 - } - } - }, - { - "id": "0d9c89cf-d23c-5eb4-9ee0-676dfce45869", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.65597, - "y": -2639.274845 - }, - "endPoint": { - "x": 302.50166, - "y": -2639.189678 - } - } - }, - { - "id": "a6aadcd9-1fd1-5a7f-b6d1-d1d1abbdd2c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.50166, - "y": -2639.189678 - }, - "endPoint": { - "x": 303.079601, - "y": -2638.225587 - } - } - }, - { - "id": "d1990a80-cc43-5b5e-b76a-a8ee36e58cd2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.079601, - "y": -2638.225587 - }, - "endPoint": { - "x": 303.650566, - "y": -2637.720308 - } - } - }, - { - "id": "eb422288-3b34-5c15-8c6e-522760495f95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.650566, - "y": -2637.720308 - }, - "endPoint": { - "x": 304.311201, - "y": -2637.141699 - } - } - }, - { - "id": "1556be86-16a4-5a24-8c89-07fcf8bd1215", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.311201, - "y": -2637.141699 - }, - "endPoint": { - "x": 304.910791, - "y": -2636.530829 - } - } - }, - { - "id": "845c72b5-160f-5bf1-8969-02d40122e654", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.910791, - "y": -2636.530829 - }, - "endPoint": { - "x": 305.173547, - "y": -2636.336822 - } - } - }, - { - "id": "d6d4cecc-4660-52e0-afc4-698f44fe53bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.173547, - "y": -2636.336822 - }, - "endPoint": { - "x": 305.220332, - "y": -2636.342877 - } - } - }, - { - "id": "f8d0416c-af4a-5d30-bb0d-276e089cf0a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.220332, - "y": -2636.342877 - }, - "endPoint": { - "x": 305.258807, - "y": -2636.387471 - } - } - } - ] - }, - { - "id": "7c712846-49e4-5392-a743-8cc8b04d959a", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "770129ba-d636-54c5-885b-29cede768630", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.71886, - "y": -2638.228284 - }, - "endPoint": { - "x": 308.533771, - "y": -2638.189362 - } - } - }, - { - "id": "87086b7c-1ca2-52f9-be1f-62f6edae0f84", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.533771, - "y": -2638.189362 - }, - "endPoint": { - "x": 308.353505, - "y": -2638.247773 - } - } - }, - { - "id": "4bb29756-b507-544f-8a3c-3d48e01220b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.353505, - "y": -2638.247773 - }, - "endPoint": { - "x": 308.23172, - "y": -2638.413263 - } - } - }, - { - "id": "1dd6f84a-c74b-586d-9321-441cb2d05a25", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.23172, - "y": -2638.413263 - }, - "endPoint": { - "x": 308.215304, - "y": -2638.467215 - } - } - }, - { - "id": "7b8a3423-5ece-5cb9-9a21-677c3d272cd7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.215304, - "y": -2638.467215 - }, - "endPoint": { - "x": 308.220126, - "y": -2638.538839 - } - } - }, - { - "id": "acf7a828-7bdd-57c8-8601-89322f58d3a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.220126, - "y": -2638.538839 - }, - "endPoint": { - "x": 308.38254, - "y": -2638.610519 - } - } - }, - { - "id": "487a7e8f-ec80-52fc-8834-928aee1ad321", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.38254, - "y": -2638.610519 - }, - "endPoint": { - "x": 308.647862, - "y": -2638.691667 - } - } - }, - { - "id": "a9cbd5de-99c0-5d8c-b19d-b97906eb60df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.647862, - "y": -2638.691667 - }, - "endPoint": { - "x": 308.853368, - "y": -2638.674986 - } - } - }, - { - "id": "37fa3a71-64bd-58ea-8587-ce1c836599e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.853368, - "y": -2638.674986 - }, - "endPoint": { - "x": 309.152034, - "y": -2638.660617 - } - } - }, - { - "id": "d9d3a494-8a54-5d0b-a615-160950c2e517", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.152034, - "y": -2638.660617 - }, - "endPoint": { - "x": 309.300187, - "y": -2638.64867 - } - } - }, - { - "id": "5b874b50-05ac-514a-9def-c5080671a528", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.300187, - "y": -2638.64867 - }, - "endPoint": { - "x": 309.405864, - "y": -2638.559319 - } - } - }, - { - "id": "4db1d50f-e377-5e6d-9d5f-7bf4d9e30e20", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.405864, - "y": -2638.559319 - }, - "endPoint": { - "x": 309.55689, - "y": -2638.510652 - } - } - }, - { - "id": "b7b0ed22-8cc1-541d-a71f-e8bdb7cab181", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.55689, - "y": -2638.510652 - }, - "endPoint": { - "x": 309.459421, - "y": -2638.359751 - } - } - }, - { - "id": "90873a7a-7ee5-5b8e-a51a-7f9a42d16174", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.459421, - "y": -2638.359751 - }, - "endPoint": { - "x": 309.308395, - "y": -2638.194206 - } - } - }, - { - "id": "c34e860a-55f8-5025-876e-0767ad15654e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.308395, - "y": -2638.194206 - }, - "endPoint": { - "x": 309.069647, - "y": -2638.174773 - } - } - }, - { - "id": "f8d2421f-e882-5865-9070-8ab37eadf18d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.069647, - "y": -2638.174773 - }, - "endPoint": { - "x": 308.71886, - "y": -2638.228284 - } - } - } - ] - }, - { - "id": "60821141-b7bd-5f64-8039-5de670d4ba2d", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "07814772-a0ce-57a2-999b-69111c18aa96", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.341021, - "y": -2640.409877 - }, - "endPoint": { - "x": 309.483121, - "y": -2640.360605 - } - } - }, - { - "id": "3b98e931-d498-5d1c-814b-0d8dc6027c87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.483121, - "y": -2640.360605 - }, - "endPoint": { - "x": 309.532061, - "y": -2640.259031 - } - } - }, - { - "id": "9c668459-9cc9-532e-bdbc-ee4c11283a1a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.532061, - "y": -2640.259031 - }, - "endPoint": { - "x": 309.528265, - "y": -2640.13863 - } - } - }, - { - "id": "1410daee-bdd7-5e40-a13d-4fd6ec8b8dbf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.528265, - "y": -2640.13863 - }, - "endPoint": { - "x": 309.539653, - "y": -2640.025771 - } - } - }, - { - "id": "c04993ab-0fec-57f3-93da-5921e6547f65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.539653, - "y": -2640.025771 - }, - "endPoint": { - "x": 309.407813, - "y": -2639.98817 - } - } - }, - { - "id": "b2dbdb96-1e22-5ff7-a7e1-194f275d5cd2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.407813, - "y": -2639.98817 - }, - "endPoint": { - "x": 309.253402, - "y": -2639.894084 - } - } - }, - { - "id": "9101dc60-84df-5e66-9400-607e7930b281", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.253402, - "y": -2639.894084 - }, - "endPoint": { - "x": 309.076521, - "y": -2639.864025 - } - } - }, - { - "id": "1b731b8b-af67-5c28-bf4f-2e3c6f259090", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.076521, - "y": -2639.864025 - }, - "endPoint": { - "x": 308.790269, - "y": -2639.897882 - } - } - }, - { - "id": "ae69af80-4c19-50ea-90a9-deafb30a3f67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.790269, - "y": -2639.897882 - }, - "endPoint": { - "x": 308.669818, - "y": -2639.965598 - } - } - }, - { - "id": "65a9e1b1-c8c1-5756-9d47-f09554b4c616", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.669818, - "y": -2639.965598 - }, - "endPoint": { - "x": 308.54557, - "y": -2640.010741 - } - } - }, - { - "id": "9e13628c-26cf-5183-85e0-7ba105117976", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.54557, - "y": -2640.010741 - }, - "endPoint": { - "x": 308.323443, - "y": -2640.003199 - } - } - }, - { - "id": "a27e9b79-3c60-5b61-bcbe-3f9becc29ccd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.323443, - "y": -2640.003199 - }, - "endPoint": { - "x": 308.314107, - "y": -2640.082971 - } - } - }, - { - "id": "2ae62e85-566f-58aa-b437-78d1af543b47", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.314107, - "y": -2640.082971 - }, - "endPoint": { - "x": 308.2941, - "y": -2640.186581 - } - } - }, - { - "id": "887348e5-3930-5109-9443-2bf990eae0cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.2941, - "y": -2640.186581 - }, - "endPoint": { - "x": 308.310516, - "y": -2640.33016 - } - } - }, - { - "id": "7fd52643-ed61-50d8-acec-9f4351fddf04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.310516, - "y": -2640.33016 - }, - "endPoint": { - "x": 308.359558, - "y": -2640.368312 - } - } - }, - { - "id": "5e48f7ce-a863-5622-b509-e661b2164ca2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.359558, - "y": -2640.368312 - }, - "endPoint": { - "x": 308.552444, - "y": -2640.388296 - } - } - }, - { - "id": "280de12b-5a24-5d9b-b52d-9efca8cbd68e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.552444, - "y": -2640.388296 - }, - "endPoint": { - "x": 308.857985, - "y": -2640.399197 - } - } - }, - { - "id": "8bfd328e-52a4-53d2-8798-04ad70c715f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.857985, - "y": -2640.399197 - }, - "endPoint": { - "x": 309.341021, - "y": -2640.409877 - } - } - } - ] - }, - { - "id": "f7bef318-3558-5a45-b0e1-9a1245472194", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "c845d6e7-bd70-5c81-bd08-6ab6f9a7aef1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.851624, - "y": -2641.824579 - }, - "endPoint": { - "x": 308.673922, - "y": -2641.864658 - } - } - }, - { - "id": "9ffaf4d9-6039-5786-9610-742506bddd5b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.673922, - "y": -2641.864658 - }, - "endPoint": { - "x": 308.541979, - "y": -2641.973498 - } - } - }, - { - "id": "ff739009-29a2-559a-8706-3a66dd6efc0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.541979, - "y": -2641.973498 - }, - "endPoint": { - "x": 308.398751, - "y": -2641.9964 - } - } - }, - { - "id": "73db4cd3-1c86-5526-9e2d-1641f9c6cb55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.398751, - "y": -2641.9964 - }, - "endPoint": { - "x": 308.384387, - "y": -2642.082338 - } - } - }, - { - "id": "f57e256f-c8b6-5fad-8e7f-b78c27bd3d3b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.384387, - "y": -2642.082338 - }, - "endPoint": { - "x": 308.458874, - "y": -2642.196904 - } - } - }, - { - "id": "f3716d33-3e66-51f6-ac2f-5cb58b871ff8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.458874, - "y": -2642.196904 - }, - "endPoint": { - "x": 308.63083, - "y": -2642.320058 - } - } - }, - { - "id": "1c192309-d897-5c04-a802-c4a60546411a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.63083, - "y": -2642.320058 - }, - "endPoint": { - "x": 308.745536, - "y": -2642.388764 - } - } - }, - { - "id": "790fee6a-26eb-5756-ae78-903bacd79315", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.745536, - "y": -2642.388764 - }, - "endPoint": { - "x": 308.957608, - "y": -2642.460388 - } - } - }, - { - "id": "0629428f-ac83-5019-b16c-a75404737ac1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.957608, - "y": -2642.460388 - }, - "endPoint": { - "x": 309.158292, - "y": -2642.471839 - } - } - }, - { - "id": "dde7edff-347c-5fd4-9658-9286dd8cac6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.158292, - "y": -2642.471839 - }, - "endPoint": { - "x": 309.255762, - "y": -2642.405941 - } - } - }, - { - "id": "8c205f47-c003-5f2d-8018-e602e6d26969", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.255762, - "y": -2642.405941 - }, - "endPoint": { - "x": 309.333121, - "y": -2642.351548 - } - } - }, - { - "id": "733315af-6713-50f0-8623-c78fe7a26800", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.333121, - "y": -2642.351548 - }, - "endPoint": { - "x": 309.50795, - "y": -2642.302881 - } - } - }, - { - "id": "f4dabe91-2f81-5d00-af48-7f0c9be2c6b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.50795, - "y": -2642.302881 - }, - "endPoint": { - "x": 309.631172, - "y": -2642.136731 - } - } - }, - { - "id": "b3b29bcd-7a67-5c12-9f55-3479ce384ccb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.631172, - "y": -2642.136731 - }, - "endPoint": { - "x": 309.571049, - "y": -2642.065162 - } - } - }, - { - "id": "dc5237f3-3188-506a-8000-313d7c35aad6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.571049, - "y": -2642.065162 - }, - "endPoint": { - "x": 309.50795, - "y": -2641.993537 - } - } - }, - { - "id": "7a823027-f28c-5ac4-b26c-8520009c63b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.50795, - "y": -2641.993537 - }, - "endPoint": { - "x": 309.410481, - "y": -2641.91905 - } - } - }, - { - "id": "f2008767-5f15-59d4-8f79-d29fca20e159", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.410481, - "y": -2641.91905 - }, - "endPoint": { - "x": 309.301623, - "y": -2641.850344 - } - } - }, - { - "id": "e3214968-e100-5ff6-8ad6-ab86e8142dad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.301623, - "y": -2641.850344 - }, - "endPoint": { - "x": 309.060823, - "y": -2641.818854 - } - } - }, - { - "id": "e5fc6e18-ad05-56d6-9b8c-312f1d8ec448", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.060823, - "y": -2641.818854 - }, - "endPoint": { - "x": 308.851624, - "y": -2641.824579 - } - } - } - ] - }, - { - "id": "5499a8d3-c9ca-548c-a751-07cca812832a", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "0a039428-c513-5557-aa38-8d8cbf9c7481", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.034251, - "y": -2639.65774 - }, - "endPoint": { - "x": 305.866091, - "y": -2639.529246 - } - } - }, - { - "id": "fec9e2dd-a3cd-516f-bbad-f5f3d637b789", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.866091, - "y": -2639.529246 - }, - "endPoint": { - "x": 305.67813, - "y": -2639.55892 - } - } - }, - { - "id": "00aecd26-67f9-5568-b3a5-e11c9c7dd937", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.67813, - "y": -2639.55892 - }, - "endPoint": { - "x": 305.648479, - "y": -2639.66765 - } - } - }, - { - "id": "630d72ce-a362-5c10-b2da-0c04979b34f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.648479, - "y": -2639.66765 - }, - "endPoint": { - "x": 305.650838, - "y": -2639.724245 - } - } - }, - { - "id": "c4c10c22-4b41-591e-85e4-9985669427a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.650838, - "y": -2639.724245 - }, - "endPoint": { - "x": 305.701215, - "y": -2639.915665 - } - } - }, - { - "id": "6e62f08d-15fa-53f9-a865-9073606f062d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.701215, - "y": -2639.915665 - }, - "endPoint": { - "x": 306.023889, - "y": -2640.157513 - } - } - }, - { - "id": "7a71313a-b8a0-57c9-a88e-7f438ab1d17e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.023889, - "y": -2640.157513 - }, - "endPoint": { - "x": 306.245811, - "y": -2640.308634 - } - } - }, - { - "id": "22bfb25e-52ed-565c-ae11-802924e6f32a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.245811, - "y": -2640.308634 - }, - "endPoint": { - "x": 306.487739, - "y": -2640.238111 - } - } - }, - { - "id": "d9d81055-fac9-5636-b1d2-a51452cce4d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.487739, - "y": -2640.238111 - }, - "endPoint": { - "x": 306.659183, - "y": -2640.217962 - } - } - }, - { - "id": "859bf9b0-6b0c-526b-9981-d323d71de32f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.659183, - "y": -2640.217962 - }, - "endPoint": { - "x": 306.66934, - "y": -2639.814917 - } - } - }, - { - "id": "2cc024d7-e28f-5822-b05d-2fb772db2777", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.66934, - "y": -2639.814917 - }, - "endPoint": { - "x": 306.66934, - "y": -2639.583143 - } - } - }, - { - "id": "8ced1efe-acef-5dd9-9645-71aef888c261", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.66934, - "y": -2639.583143 - }, - "endPoint": { - "x": 306.487739, - "y": -2639.593218 - } - } - }, - { - "id": "ed63c68d-0f53-52a7-8f2d-6d5eb8be4906", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.487739, - "y": -2639.593218 - }, - "endPoint": { - "x": 306.360722, - "y": -2639.682459 - } - } - }, - { - "id": "68353d2a-d95f-53dd-8e0f-b63f2fed006a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.360722, - "y": -2639.682459 - }, - "endPoint": { - "x": 306.034251, - "y": -2639.65774 - } - } - } - ] - }, - { - "id": "ce8e1ebf-7cc8-5ada-83bb-9e6b1c2f3f9e", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "4c2f6293-2d25-5b5f-a5e9-ee5f57b04219", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.483124, - "y": -2637.875779 - }, - "endPoint": { - "x": 303.488869, - "y": -2637.904682 - } - } - }, - { - "id": "7d16cb5f-1c28-566c-859c-eeaf5af3fbd2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.488869, - "y": -2637.904682 - }, - "endPoint": { - "x": 303.463835, - "y": -2638.075291 - } - } - }, - { - "id": "85eaafa1-da57-5b6f-8931-7dfc7723fcf2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.463835, - "y": -2638.075291 - }, - "endPoint": { - "x": 303.589314, - "y": -2638.175653 - } - } - }, - { - "id": "4d76fdad-53fd-5ca4-ad4e-19923f23dd53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.589314, - "y": -2638.175653 - }, - "endPoint": { - "x": 303.991092, - "y": -2638.065272 - } - } - }, - { - "id": "e4485a1f-2b87-5db6-b55a-9d329a869b86", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.991092, - "y": -2638.065272 - }, - "endPoint": { - "x": 304.121598, - "y": -2637.924776 - } - } - }, - { - "id": "d07c7ba3-9d47-5341-a73c-82c5842ce236", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.121598, - "y": -2637.924776 - }, - "endPoint": { - "x": 304.151762, - "y": -2637.643784 - } - } - }, - { - "id": "47d3dd86-5cce-5ae9-9d6e-9d6b58d6a49d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.151762, - "y": -2637.643784 - }, - "endPoint": { - "x": 303.991092, - "y": -2637.483249 - } - } - }, - { - "id": "71490164-4602-54c4-800b-7ac3138ddd74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.991092, - "y": -2637.483249 - }, - "endPoint": { - "x": 303.980884, - "y": -2637.431004 - } - } - }, - { - "id": "24ff85c1-1941-5252-99bc-610eae565ee1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.980884, - "y": -2637.431004 - }, - "endPoint": { - "x": 303.483124, - "y": -2637.875779 - } - } - } - ] - }, - { - "id": "b4dc22ab-f46f-53ca-b71f-28f29b9cadaa", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "abdb540b-2790-52b5-a864-48d2ea74c64f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.258807, - "y": -2636.387471 - }, - "endPoint": { - "x": 305.396495, - "y": -2636.693181 - } - } - }, - { - "id": "340a8b2d-2d03-54e9-b0ce-7a8092634dc9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.396495, - "y": -2636.693181 - }, - "endPoint": { - "x": 305.47129, - "y": -2636.866488 - } - } - }, - { - "id": "aca13643-7b01-5d57-8fb8-d9092b31fc0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.47129, - "y": -2636.866488 - }, - "endPoint": { - "x": 305.460825, - "y": -2637.302234 - } - } - }, - { - "id": "f0f077c3-f760-53a7-8183-aef2e73d6db6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.460825, - "y": -2637.302234 - }, - "endPoint": { - "x": 305.423992, - "y": -2637.66977 - } - } - }, - { - "id": "53a63907-d9ce-5df0-839c-bd816490be7e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.423992, - "y": -2637.66977 - }, - "endPoint": { - "x": 305.529053, - "y": -2637.906003 - } - } - }, - { - "id": "2a310a25-0405-5737-b750-f7c214fa3296", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.529053, - "y": -2637.906003 - }, - "endPoint": { - "x": 305.902104, - "y": -2637.963754 - } - } - }, - { - "id": "f294d92e-db2f-594f-beeb-34bdd5dc4834", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.902104, - "y": -2637.963754 - }, - "endPoint": { - "x": 306.322452, - "y": -2638.021504 - } - } - }, - { - "id": "32e0af8a-7271-5138-9777-cffc33ba0d83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.322452, - "y": -2638.021504 - }, - "endPoint": { - "x": 306.427514, - "y": -2638.095 - } - } - }, - { - "id": "4f0c021e-1ea5-5c19-9c07-9eb3bf4b857e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.427514, - "y": -2638.095 - }, - "endPoint": { - "x": 306.627172, - "y": -2638.158036 - } - } - }, - { - "id": "b5529448-0c3a-5151-9be7-02620445beae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.627172, - "y": -2638.158036 - }, - "endPoint": { - "x": 306.727001, - "y": -2638.03202 - } - } - }, - { - "id": "fe08d8e3-f532-5c60-8b5a-ea55d33d566d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.727001, - "y": -2638.03202 - }, - "endPoint": { - "x": 306.821597, - "y": -2637.690745 - } - } - }, - { - "id": "af970000-ff71-56e9-bf77-4c994faae3e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.821597, - "y": -2637.690745 - }, - "endPoint": { - "x": 306.984524, - "y": -2637.029226 - } - } - }, - { - "id": "b0416167-7f3f-5edd-b8e5-a0b9abd5d7d4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.984524, - "y": -2637.029226 - }, - "endPoint": { - "x": 307.546665, - "y": -2636.719496 - } - } - }, - { - "id": "2be67715-3395-5b8a-8ba0-312af3443a62", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.546665, - "y": -2636.719496 - }, - "endPoint": { - "x": 308.100803, - "y": -2636.564907 - } - } - }, - { - "id": "afde2936-119a-5799-869c-221f707870a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.100803, - "y": -2636.564907 - }, - "endPoint": { - "x": 308.557985, - "y": -2636.517671 - } - } - }, - { - "id": "70f4ff1a-1d42-5ad7-834d-e64bbfd68db3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.557985, - "y": -2636.517671 - }, - "endPoint": { - "x": 309.177991, - "y": -2636.470436 - } - } - }, - { - "id": "43200e49-21a2-5779-aeeb-c55b1716ca6a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.177991, - "y": -2636.470436 - }, - "endPoint": { - "x": 309.897724, - "y": -2636.512441 - } - } - }, - { - "id": "14844e85-a345-570e-a7f0-9765c6fb38e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.897724, - "y": -2636.512441 - }, - "endPoint": { - "x": 310.559797, - "y": -2636.774935 - } - } - }, - { - "id": "32450c11-1154-5e5c-8a37-0c6b542a49d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.559797, - "y": -2636.774935 - }, - "endPoint": { - "x": 310.848818, - "y": -2637.105695 - } - } - }, - { - "id": "1eaab2d7-ab40-5d01-93ad-166f388981fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.848818, - "y": -2637.105695 - }, - "endPoint": { - "x": 310.974913, - "y": -2637.284177 - } - } - }, - { - "id": "4724bd45-4bf8-5ada-a375-782112c0dcc7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.974913, - "y": -2637.284177 - }, - "endPoint": { - "x": 310.947621, - "y": -2638.029212 - } - } - }, - { - "id": "ffae6380-a192-5a05-a829-b49d5dac10ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.947621, - "y": -2638.029212 - }, - "endPoint": { - "x": 311.005385, - "y": -2638.412327 - } - } - }, - { - "id": "9b7d31d8-fbff-5f62-ad21-a21775f899b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.005385, - "y": -2638.412327 - }, - "endPoint": { - "x": 310.955829, - "y": -2639.415286 - } - } - }, - { - "id": "e033a6e0-e616-56a4-baf6-4b03f74453b0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.955829, - "y": -2639.415286 - }, - "endPoint": { - "x": 310.980556, - "y": -2639.913793 - } - } - }, - { - "id": "f2e10318-6001-532a-9d76-12b822b720f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.980556, - "y": -2639.913793 - }, - "endPoint": { - "x": 311.04232, - "y": -2640.696869 - } - } - }, - { - "id": "0af5fbba-3282-54ef-98a8-5e7694218365", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.04232, - "y": -2640.696869 - }, - "endPoint": { - "x": 311.108599, - "y": -2641.284287 - } - } - }, - { - "id": "d7cea27d-2127-5d4d-8df8-8f0976b8dbca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.108599, - "y": -2641.284287 - }, - "endPoint": { - "x": 311.125118, - "y": -2642.1778 - } - } - }, - { - "id": "a6e45b45-0f27-5396-ad6f-6aa63556ff71", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.125118, - "y": -2642.1778 - }, - "endPoint": { - "x": 311.166568, - "y": -2642.665902 - } - } - }, - { - "id": "f2fdef2e-e87d-5a40-9bf1-bd1dec009dfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.166568, - "y": -2642.665902 - }, - "endPoint": { - "x": 311.125118, - "y": -2643.336065 - } - } - }, - { - "id": "826a7ff0-3ebc-5d4e-8acb-53d59a44f0f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.125118, - "y": -2643.336065 - }, - "endPoint": { - "x": 311.141739, - "y": -2643.617331 - } - } - }, - { - "id": "ac7a9f1d-230f-522f-9e3a-a7ccf2f7690c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.141739, - "y": -2643.617331 - }, - "endPoint": { - "x": 311.025802, - "y": -2643.956569 - } - } - }, - { - "id": "9026d27c-c8b5-5c1d-9bd1-c2aa811cbc6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.025802, - "y": -2643.956569 - }, - "endPoint": { - "x": 310.909352, - "y": -2644.30891 - } - } - }, - { - "id": "32193a5f-679c-5717-a14f-9d598aaf8b05", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.909352, - "y": -2644.30891 - }, - "endPoint": { - "x": 310.329769, - "y": -2644.780495 - } - } - }, - { - "id": "cbd46fbc-5a47-516c-9a42-f195f599d206", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.329769, - "y": -2644.780495 - }, - "endPoint": { - "x": 309.741876, - "y": -2644.970759 - } - } - }, - { - "id": "90d61231-4782-5e09-8793-1a5872e709d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.741876, - "y": -2644.970759 - }, - "endPoint": { - "x": 309.187123, - "y": -2644.937672 - } - } - }, - { - "id": "890cea82-cfe4-58cd-9a80-36b80ff6ff38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.187123, - "y": -2644.937672 - }, - "endPoint": { - "x": 308.731788, - "y": -2645.028675 - } - } - }, - { - "id": "776408b3-94cc-5785-8603-fae053add02f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.731788, - "y": -2645.028675 - }, - "endPoint": { - "x": 308.110755, - "y": -2644.863185 - } - } - }, - { - "id": "b9a2ca72-fa3b-5b62-bca0-b26f29d6dd99", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.110755, - "y": -2644.863185 - }, - "endPoint": { - "x": 307.539483, - "y": -2644.69775 - } - } - }, - { - "id": "c48b14b3-4f84-5bd6-b0f7-2548d12d9356", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.539483, - "y": -2644.69775 - }, - "endPoint": { - "x": 307.059217, - "y": -2644.300596 - } - } - }, - { - "id": "19843558-8c51-5f48-b23f-de55f513f188", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.059217, - "y": -2644.300596 - }, - "endPoint": { - "x": 306.785995, - "y": -2643.870411 - } - } - }, - { - "id": "fb7fd963-576c-5fbb-a887-5ebb73e04cb6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.785995, - "y": -2643.870411 - }, - "endPoint": { - "x": 306.759012, - "y": -2643.271432 - } - } - }, - { - "id": "32ee8b74-ea9a-5c89-96e0-1a3a0863d562", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.759012, - "y": -2643.271432 - }, - "endPoint": { - "x": 306.734183, - "y": -2642.568238 - } - } - }, - { - "id": "53333579-c764-5f20-9e79-8950af52994a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.734183, - "y": -2642.568238 - }, - "endPoint": { - "x": 306.767322, - "y": -2642.270345 - } - } - }, - { - "id": "8cf2341e-1ba0-5087-b437-45f8bb0d12d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.767322, - "y": -2642.270345 - }, - "endPoint": { - "x": 306.709354, - "y": -2642.013907 - } - } - }, - { - "id": "303df204-1dad-57c6-9ed9-2e95e1f03b9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.709354, - "y": -2642.013907 - }, - "endPoint": { - "x": 306.568588, - "y": -2642.005649 - } - } - }, - { - "id": "6c16aeec-9cef-5b1e-abf0-2486b5ac4923", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.568588, - "y": -2642.005649 - }, - "endPoint": { - "x": 306.419511, - "y": -2642.162826 - } - } - }, - { - "id": "579f6476-c54b-533f-a5b5-55e61181519b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.419511, - "y": -2642.162826 - }, - "endPoint": { - "x": 306.378164, - "y": -2642.262087 - } - } - }, - { - "id": "bbef0d22-e1b0-5b52-8db2-7fa2f1765581", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.378164, - "y": -2642.262087 - }, - "endPoint": { - "x": 306.245708, - "y": -2642.286916 - } - } - }, - { - "id": "6c8bae7e-f5ee-5e05-854e-5957ee5e6cfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.245708, - "y": -2642.286916 - }, - "endPoint": { - "x": 306.088321, - "y": -2642.171084 - } - } - }, - { - "id": "14060f36-8e7e-50ed-8c46-77cf3b2114b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.088321, - "y": -2642.171084 - }, - "endPoint": { - "x": 305.931037, - "y": -2642.071823 - } - } - }, - { - "id": "bae7b163-d5ad-57b1-a098-fce0a2daf7e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.931037, - "y": -2642.071823 - }, - "endPoint": { - "x": 305.757131, - "y": -2642.088339 - } - } - }, - { - "id": "4e79efe9-0ea2-5860-97c7-f5dfde0b8a1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.757131, - "y": -2642.088339 - }, - "endPoint": { - "x": 305.599847, - "y": -2642.129739 - } - } - }, - { - "id": "6c91b86d-2692-584f-820d-83eb88cc0925", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.599847, - "y": -2642.129739 - }, - "endPoint": { - "x": 305.583328, - "y": -2642.303487 - } - } - }, - { - "id": "2bd4a641-ab68-5a32-8123-e8a28a0aa5f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.583328, - "y": -2642.303487 - }, - "endPoint": { - "x": 305.707473, - "y": -2642.609583 - } - } - }, - { - "id": "71ce7065-df5c-55d0-b2a5-b0723606fac8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.707473, - "y": -2642.609583 - }, - "endPoint": { - "x": 305.78196, - "y": -2642.841246 - } - } - }, - { - "id": "852c2847-144d-5e82-8559-bba6e9f02678", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.78196, - "y": -2642.841246 - }, - "endPoint": { - "x": 305.78196, - "y": -2643.122513 - } - } - }, - { - "id": "937ae59c-bd5f-52ec-b635-d4b78ebebb2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.78196, - "y": -2643.122513 - }, - "endPoint": { - "x": 305.757131, - "y": -2643.561012 - } - } - }, - { - "id": "c91550d3-6ef2-5d41-a1d6-1768156f6bd2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.757131, - "y": -2643.561012 - }, - "endPoint": { - "x": 305.85655, - "y": -2643.726502 - } - } - }, - { - "id": "c8cfcb37-e6d6-5200-8b8c-782adac6f2fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.85655, - "y": -2643.726502 - }, - "endPoint": { - "x": 305.85655, - "y": -2643.916766 - } - } - }, - { - "id": "65d7aad4-d5f5-590b-a9d3-349a8aeacdf6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.85655, - "y": -2643.916766 - }, - "endPoint": { - "x": 305.839929, - "y": -2644.140171 - } - } - }, - { - "id": "41917156-9c03-5f13-bc0b-18b80b8f454e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.839929, - "y": -2644.140171 - }, - "endPoint": { - "x": 305.839929, - "y": -2644.37178 - } - } - }, - { - "id": "89b71469-98ca-5d0c-b111-0a5602eaea51", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.839929, - "y": -2644.37178 - }, - "endPoint": { - "x": 305.666126, - "y": -2644.669618 - } - } - }, - { - "id": "be94f638-32e4-5548-b264-ed49828a0b4b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.666126, - "y": -2644.669618 - }, - "endPoint": { - "x": 305.425941, - "y": -2644.893024 - } - } - }, - { - "id": "4b643c41-412e-5be8-923e-4915cdf874bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.425941, - "y": -2644.893024 - }, - "endPoint": { - "x": 305.227207, - "y": -2645.050201 - } - } - }, - { - "id": "09e9553e-5baa-54e8-8ee7-df2e65bbef4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.227207, - "y": -2645.050201 - }, - "endPoint": { - "x": 304.86298, - "y": -2645.058514 - } - } - }, - { - "id": "c2ca4eaf-4a05-57cd-9522-a489c75640e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.86298, - "y": -2645.058514 - }, - "endPoint": { - "x": 304.664245, - "y": -2645.091601 - } - } - }, - { - "id": "d7b54c9c-8a66-5c55-b7ce-b4d6ea5bea54", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.664245, - "y": -2645.091601 - }, - "endPoint": { - "x": 304.506858, - "y": -2644.926111 - } - } - }, - { - "id": "abf1bf18-45ee-539c-927e-26fa47d57d45", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.506858, - "y": -2644.926111 - }, - "endPoint": { - "x": 304.283397, - "y": -2644.595186 - } - } - }, - { - "id": "83513644-2e66-56ed-b9c6-67636bb5fd39", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.283397, - "y": -2644.595186 - }, - "endPoint": { - "x": 304.283397, - "y": -2644.073942 - } - } - }, - { - "id": "caf4822e-8d00-5f90-9d1a-b5b5fd70d536", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.283397, - "y": -2644.073942 - }, - "endPoint": { - "x": 304.308226, - "y": -2643.354177 - } - } - }, - { - "id": "87c727ac-6728-5aac-90b0-f8f4d127f080", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.308226, - "y": -2643.354177 - }, - "endPoint": { - "x": 304.308226, - "y": -2642.866075 - } - } - }, - { - "id": "6fed4f9e-0b60-5a31-950f-446c0ca81a6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.308226, - "y": -2642.866075 - }, - "endPoint": { - "x": 304.399231, - "y": -2642.634412 - } - } - }, - { - "id": "3aa90376-5115-5aa1-9a70-144a9a2721a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.399231, - "y": -2642.634412 - }, - "endPoint": { - "x": 304.366195, - "y": -2642.402748 - } - } - }, - { - "id": "2deacb64-7014-50bc-a985-1279a60d9455", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.366195, - "y": -2642.402748 - }, - "endPoint": { - "x": 304.2006, - "y": -2642.386177 - } - } - }, - { - "id": "649016f6-11cc-5387-9de5-7fb9f0366916", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.2006, - "y": -2642.386177 - }, - "endPoint": { - "x": 303.968726, - "y": -2642.667499 - } - } - }, - { - "id": "3d10434d-e32d-5092-802f-948019746bf3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.968726, - "y": -2642.667499 - }, - "endPoint": { - "x": 303.79482, - "y": -2642.890849 - } - } - }, - { - "id": "b8e09f69-ec0d-5a79-ac0e-a1f28492ce82", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.79482, - "y": -2642.890849 - }, - "endPoint": { - "x": 303.571256, - "y": -2642.965336 - } - } - }, - { - "id": "370431e3-4f5e-504a-94bd-19988173079c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.571256, - "y": -2642.965336 - }, - "endPoint": { - "x": 303.447112, - "y": -2642.998423 - } - } - }, - { - "id": "0c4b7212-fce4-5f6c-8b1f-804c2aef3203", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.447112, - "y": -2642.998423 - }, - "endPoint": { - "x": 303.215237, - "y": -2643.1556 - } - } - }, - { - "id": "d3bdb8b9-6690-5431-8268-595e16a43b49", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.215237, - "y": -2643.1556 - }, - "endPoint": { - "x": 302.958637, - "y": -2643.07291 - } - } - }, - { - "id": "5d4e3b22-2e48-5f62-88d6-7b051db72219", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.958637, - "y": -2643.07291 - }, - "endPoint": { - "x": 302.677105, - "y": -2642.882591 - } - } - }, - { - "id": "2b74b9bc-c3cd-50b6-9e87-7ed6f653c753", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.677105, - "y": -2642.882591 - }, - "endPoint": { - "x": 302.412091, - "y": -2642.617841 - } - } - }, - { - "id": "f616b054-95f6-5119-bae1-c2278d037c31", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.412091, - "y": -2642.617841 - }, - "endPoint": { - "x": 302.312775, - "y": -2642.286916 - } - } - }, - { - "id": "0be79e31-8915-5a07-895c-37e17e75256d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.312775, - "y": -2642.286916 - }, - "endPoint": { - "x": 302.370744, - "y": -2641.881504 - } - } - }, - { - "id": "e679472b-fc44-5e2f-975f-9cc350811ae2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.370744, - "y": -2641.881504 - }, - "endPoint": { - "x": 302.528028, - "y": -2641.674669 - } - } - }, - { - "id": "f6072cfb-ec2f-56df-be46-b402b09e8ed2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.528028, - "y": -2641.674669 - }, - "endPoint": { - "x": 302.569479, - "y": -2641.484405 - } - } - }, - { - "id": "9c9a9d8c-fbe3-5d75-bb8a-bd626985e54f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.569479, - "y": -2641.484405 - }, - "endPoint": { - "x": 302.850908, - "y": -2641.434747 - } - } - }, - { - "id": "3ea8578f-86b2-574b-90b9-1c47f58b4a48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.850908, - "y": -2641.434747 - }, - "endPoint": { - "x": 303.594444, - "y": -2640.719166 - } - } - }, - { - "id": "e1e060f2-f5ce-5f18-a824-22f4890806e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.594444, - "y": -2640.719166 - }, - "endPoint": { - "x": 303.960415, - "y": -2640.387801 - } - } - }, - { - "id": "73346a54-9e18-527b-a2d7-2814c60069bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.960415, - "y": -2640.387801 - }, - "endPoint": { - "x": 304.069991, - "y": -2640.253911 - } - } - }, - { - "id": "d297d9b6-e647-5309-9649-3ee8a914dc40", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.069991, - "y": -2640.253911 - }, - "endPoint": { - "x": 304.090305, - "y": -2640.193023 - } - } - }, - { - "id": "fa03a7ba-92c2-5c8a-a826-c487252ff81a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.090305, - "y": -2640.193023 - }, - "endPoint": { - "x": 304.005046, - "y": -2639.986078 - } - } - }, - { - "id": "980d9078-737f-5060-93d6-64870d59d9c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.005046, - "y": -2639.986078 - }, - "endPoint": { - "x": 303.879156, - "y": -2639.835948 - } - } - }, - { - "id": "3d0988da-b235-53ce-8f73-361714e2a258", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.879156, - "y": -2639.835948 - }, - "endPoint": { - "x": 303.408021, - "y": -2639.811559 - } - } - }, - { - "id": "2133efad-8ac9-5aaa-a67e-7e782fe0db27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.408021, - "y": -2639.811559 - }, - "endPoint": { - "x": 303.119718, - "y": -2639.762892 - } - } - }, - { - "id": "0d469118-7383-562e-8c37-63d4e4c3a73e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.119718, - "y": -2639.762892 - }, - "endPoint": { - "x": 302.993829, - "y": -2639.730411 - } - } - }, - { - "id": "88c524d7-1654-54ce-8acf-a82c1076ec06", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.993829, - "y": -2639.730411 - }, - "endPoint": { - "x": 302.773753, - "y": -2639.550827 - } - } - }, - { - "id": "39be7184-476a-555e-9c3b-f69ede436ac3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.773753, - "y": -2639.550827 - }, - "endPoint": { - "x": 302.65597, - "y": -2639.274845 - } - } - }, - { - "id": "7f2e9a66-3a71-5038-9058-c928118b7d2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.65597, - "y": -2639.274845 - }, - "endPoint": { - "x": 302.50166, - "y": -2639.189678 - } - } - }, - { - "id": "56b5663f-bff3-564e-909d-74cf4756f29a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.50166, - "y": -2639.189678 - }, - "endPoint": { - "x": 303.079601, - "y": -2638.225587 - } - } - }, - { - "id": "2f76613b-d91d-51c9-b460-297b015312d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.079601, - "y": -2638.225587 - }, - "endPoint": { - "x": 303.650566, - "y": -2637.720308 - } - } - }, - { - "id": "f4250f01-7b5f-5a92-870a-e92fef0ef3d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.650566, - "y": -2637.720308 - }, - "endPoint": { - "x": 304.311201, - "y": -2637.141699 - } - } - }, - { - "id": "3975fdb4-5fb7-50d7-a6d1-8b2f911302e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.311201, - "y": -2637.141699 - }, - "endPoint": { - "x": 304.910791, - "y": -2636.530829 - } - } - }, - { - "id": "351e1f4f-1a62-5ee0-ae40-0258333538b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.910791, - "y": -2636.530829 - }, - "endPoint": { - "x": 305.173547, - "y": -2636.336822 - } - } - }, - { - "id": "825a4c5d-d148-53a6-a005-d6dbb7ab4e3a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.173547, - "y": -2636.336822 - }, - "endPoint": { - "x": 305.220332, - "y": -2636.342877 - } - } - }, - { - "id": "0084595a-835f-5fd5-b6a9-7754e943047c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.220332, - "y": -2636.342877 - }, - "endPoint": { - "x": 305.258807, - "y": -2636.387471 - } - } - } - ] - }, - { - "id": "26314e47-439a-5efa-84e5-71bf9323ea97", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "4f856075-7880-5d67-8597-37a621b5d80e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.488869, - "y": -2637.904682 - }, - "endPoint": { - "x": 303.463835, - "y": -2638.075291 - } - } - }, - { - "id": "bd9c9c27-6b1c-5928-82c3-60ea10368be5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.463835, - "y": -2638.075291 - }, - "endPoint": { - "x": 303.589314, - "y": -2638.175653 - } - } - }, - { - "id": "be75aa39-ba6c-56c4-876f-7cb692907b88", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.589314, - "y": -2638.175653 - }, - "endPoint": { - "x": 303.991092, - "y": -2638.065272 - } - } - }, - { - "id": "b982d5ea-bd15-5899-bbb6-98c27d7f8284", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.991092, - "y": -2638.065272 - }, - "endPoint": { - "x": 304.121598, - "y": -2637.924776 - } - } - }, - { - "id": "b187f998-546c-516d-b4cc-e59cc1ec3a69", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.121598, - "y": -2637.924776 - }, - "endPoint": { - "x": 304.151762, - "y": -2637.643784 - } - } - }, - { - "id": "dd73e884-5cc7-5e31-b224-4b102dd0d070", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.151762, - "y": -2637.643784 - }, - "endPoint": { - "x": 303.991092, - "y": -2637.483249 - } - } - }, - { - "id": "05bb3297-42a5-54eb-a3e4-db8f3245f1c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.991092, - "y": -2637.483249 - }, - "endPoint": { - "x": 303.980884, - "y": -2637.431004 - } - } - }, - { - "id": "9f783540-75d8-5711-a7b5-561f77c4bfe1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.980884, - "y": -2637.431004 - }, - "endPoint": { - "x": 303.483124, - "y": -2637.875779 - } - } - }, - { - "id": "0a4728a2-4526-5586-9b96-50166bb4aa56", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.483124, - "y": -2637.875779 - }, - "endPoint": { - "x": 303.488869, - "y": -2637.904682 - } - } - } - ] - }, - { - "id": "f01b051c-9140-52e9-9dc3-95c20bae7752", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "dd473aeb-9ec4-59f7-bf33-aa73a8afa7ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.650838, - "y": -2639.724245 - }, - "endPoint": { - "x": 305.701215, - "y": -2639.915665 - } - } - }, - { - "id": "b5b4f300-1e37-5018-b245-b843a1fbee08", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.701215, - "y": -2639.915665 - }, - "endPoint": { - "x": 306.023889, - "y": -2640.157513 - } - } - }, - { - "id": "120640a8-932f-5ff7-a909-de95f555ac96", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.023889, - "y": -2640.157513 - }, - "endPoint": { - "x": 306.245811, - "y": -2640.308634 - } - } - }, - { - "id": "c4beef23-e75b-55ff-9b56-0c6124718af8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.245811, - "y": -2640.308634 - }, - "endPoint": { - "x": 306.487739, - "y": -2640.238111 - } - } - }, - { - "id": "4af12775-33cc-553f-b3d8-a5de1e0588dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.487739, - "y": -2640.238111 - }, - "endPoint": { - "x": 306.659183, - "y": -2640.217962 - } - } - }, - { - "id": "b4e5784b-647e-5bdf-9411-e322d39bd3e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.659183, - "y": -2640.217962 - }, - "endPoint": { - "x": 306.66934, - "y": -2639.814917 - } - } - }, - { - "id": "3e5916e1-9030-5877-97cc-2761e3a571d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.66934, - "y": -2639.814917 - }, - "endPoint": { - "x": 306.66934, - "y": -2639.583143 - } - } - }, - { - "id": "13137187-9a6b-5a10-a21a-d54bb9886141", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.66934, - "y": -2639.583143 - }, - "endPoint": { - "x": 306.487739, - "y": -2639.593218 - } - } - }, - { - "id": "95a8b77d-add9-589e-b1c7-953d0f6927e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.487739, - "y": -2639.593218 - }, - "endPoint": { - "x": 306.360722, - "y": -2639.682459 - } - } - }, - { - "id": "b2117348-a82b-52f6-b5ac-6d9201ed965c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.360722, - "y": -2639.682459 - }, - "endPoint": { - "x": 306.034251, - "y": -2639.65774 - } - } - }, - { - "id": "2afabac7-d268-5178-a49c-68b522bea50f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.034251, - "y": -2639.65774 - }, - "endPoint": { - "x": 305.866091, - "y": -2639.529246 - } - } - }, - { - "id": "f81e5a9e-8604-56aa-88a1-579e92f758bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.866091, - "y": -2639.529246 - }, - "endPoint": { - "x": 305.67813, - "y": -2639.55892 - } - } - }, - { - "id": "fd062b7d-85c7-54ad-8e26-e8943b9fa538", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.67813, - "y": -2639.55892 - }, - "endPoint": { - "x": 305.648479, - "y": -2639.66765 - } - } - }, - { - "id": "36d06454-ca99-5de4-a993-e15996a72a4e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.648479, - "y": -2639.66765 - }, - "endPoint": { - "x": 305.650838, - "y": -2639.724245 - } - } - } - ] - }, - { - "id": "f58da1c8-2ffe-5ae5-819f-270ce0cc212c", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "cd7afe75-8645-5f1f-8e78-9d795538d6f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.23172, - "y": -2638.413263 - }, - "endPoint": { - "x": 308.353505, - "y": -2638.247773 - } - } - }, - { - "id": "31adf400-bf78-55ca-a25d-af70bfccda42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.353505, - "y": -2638.247773 - }, - "endPoint": { - "x": 308.533771, - "y": -2638.189362 - } - } - }, - { - "id": "245b8054-f990-5656-9179-caea2afdf28f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.533771, - "y": -2638.189362 - }, - "endPoint": { - "x": 308.71886, - "y": -2638.228284 - } - } - }, - { - "id": "1219143b-8a0a-57c3-96b0-16aa9f4c1159", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.71886, - "y": -2638.228284 - }, - "endPoint": { - "x": 309.069647, - "y": -2638.174773 - } - } - }, - { - "id": "efeecd33-f94b-5292-968f-9aba30d1f22b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.069647, - "y": -2638.174773 - }, - "endPoint": { - "x": 309.308395, - "y": -2638.194206 - } - } - }, - { - "id": "8ebebbf3-b132-54f4-9e51-275c9c296172", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.308395, - "y": -2638.194206 - }, - "endPoint": { - "x": 309.459421, - "y": -2638.359751 - } - } - }, - { - "id": "688881a4-01b0-50df-bf3f-5f14ce2b300e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.459421, - "y": -2638.359751 - }, - "endPoint": { - "x": 309.55689, - "y": -2638.510652 - } - } - }, - { - "id": "8ec5544d-8465-52a2-83bd-18e9d9bbdedc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.55689, - "y": -2638.510652 - }, - "endPoint": { - "x": 309.405864, - "y": -2638.559319 - } - } - }, - { - "id": "f305fb1b-dbcb-58a5-9432-28e76d47d668", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.405864, - "y": -2638.559319 - }, - "endPoint": { - "x": 309.300187, - "y": -2638.64867 - } - } - }, - { - "id": "05e4b34b-aa38-5f14-a2e1-2edb91710f7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.300187, - "y": -2638.64867 - }, - "endPoint": { - "x": 309.152034, - "y": -2638.660617 - } - } - }, - { - "id": "4cf13859-9f3b-5d8f-8459-1d0d7b086db4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.152034, - "y": -2638.660617 - }, - "endPoint": { - "x": 308.853368, - "y": -2638.674986 - } - } - }, - { - "id": "cfa3c724-adc0-55bf-860e-b7413396a171", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.853368, - "y": -2638.674986 - }, - "endPoint": { - "x": 308.647862, - "y": -2638.691667 - } - } - }, - { - "id": "e7629512-0850-555a-81fd-f1f9b7685227", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.647862, - "y": -2638.691667 - }, - "endPoint": { - "x": 308.38254, - "y": -2638.610519 - } - } - }, - { - "id": "1a1f42c1-9b89-52b9-bb5f-6bcb41c71156", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.38254, - "y": -2638.610519 - }, - "endPoint": { - "x": 308.220126, - "y": -2638.538839 - } - } - }, - { - "id": "0d92c23c-af17-57bd-bbb4-2ebd4c7b710a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.220126, - "y": -2638.538839 - }, - "endPoint": { - "x": 308.215304, - "y": -2638.467215 - } - } - }, - { - "id": "b1b994eb-1b76-5226-b6e3-3bbbbea3f779", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.215304, - "y": -2638.467215 - }, - "endPoint": { - "x": 308.23172, - "y": -2638.413263 - } - } - } - ] - }, - { - "id": "35e73022-c283-5bdf-8b57-0f62a6833398", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "b026e53a-1132-52f0-a59a-1c16eba5b231", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.323443, - "y": -2640.003199 - }, - "endPoint": { - "x": 308.54557, - "y": -2640.010741 - } - } - }, - { - "id": "1aa9ba9f-9404-5c06-b1ae-0ecd74709438", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.54557, - "y": -2640.010741 - }, - "endPoint": { - "x": 308.669818, - "y": -2639.965598 - } - } - }, - { - "id": "1def243e-9c1c-53fd-91aa-2976e63880f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.669818, - "y": -2639.965598 - }, - "endPoint": { - "x": 308.790269, - "y": -2639.897882 - } - } - }, - { - "id": "8aad2901-375d-5fad-bd71-761536990cee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.790269, - "y": -2639.897882 - }, - "endPoint": { - "x": 309.076521, - "y": -2639.864025 - } - } - }, - { - "id": "eaa80d3f-4ca1-5b80-8ec2-071c9959c538", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.076521, - "y": -2639.864025 - }, - "endPoint": { - "x": 309.253402, - "y": -2639.894084 - } - } - }, - { - "id": "bcec1ded-cc3c-52da-becf-e79d9be4b1b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.253402, - "y": -2639.894084 - }, - "endPoint": { - "x": 309.407813, - "y": -2639.98817 - } - } - }, - { - "id": "4dcbcada-c42f-5fc0-80df-260130e6fbe1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.407813, - "y": -2639.98817 - }, - "endPoint": { - "x": 309.539653, - "y": -2640.025771 - } - } - }, - { - "id": "d47872be-207c-5b92-9944-ff5a521dc880", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.539653, - "y": -2640.025771 - }, - "endPoint": { - "x": 309.528265, - "y": -2640.13863 - } - } - }, - { - "id": "f9a9bad4-e529-5c09-b5a0-627a58b786c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.528265, - "y": -2640.13863 - }, - "endPoint": { - "x": 309.532061, - "y": -2640.259031 - } - } - }, - { - "id": "314b87c4-3792-56c0-815d-eb5b9ff0cdd9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.532061, - "y": -2640.259031 - }, - "endPoint": { - "x": 309.483121, - "y": -2640.360605 - } - } - }, - { - "id": "e84ea724-779b-5311-a764-2b8dda27c69a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.483121, - "y": -2640.360605 - }, - "endPoint": { - "x": 309.341021, - "y": -2640.409877 - } - } - }, - { - "id": "02778659-c512-5529-9249-72358f234a39", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.341021, - "y": -2640.409877 - }, - "endPoint": { - "x": 308.857985, - "y": -2640.399197 - } - } - }, - { - "id": "79d13c37-1e00-5f1e-805f-66d6f09ec7b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.857985, - "y": -2640.399197 - }, - "endPoint": { - "x": 308.552444, - "y": -2640.388296 - } - } - }, - { - "id": "90692a54-c8d1-5323-8f33-7260e42e9d36", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.552444, - "y": -2640.388296 - }, - "endPoint": { - "x": 308.359558, - "y": -2640.368312 - } - } - }, - { - "id": "09bc1619-7a9a-5c85-b86f-8dc252ecd6cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.359558, - "y": -2640.368312 - }, - "endPoint": { - "x": 308.310516, - "y": -2640.33016 - } - } - }, - { - "id": "214bae47-6e68-52b9-9e3a-74d613feb03e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.310516, - "y": -2640.33016 - }, - "endPoint": { - "x": 308.2941, - "y": -2640.186581 - } - } - }, - { - "id": "6d1f2a8b-6fa9-57d3-810e-9d442bdb5fe3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.2941, - "y": -2640.186581 - }, - "endPoint": { - "x": 308.314107, - "y": -2640.082971 - } - } - }, - { - "id": "b1429c40-110c-5b56-ad31-8f69cc82a569", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.314107, - "y": -2640.082971 - }, - "endPoint": { - "x": 308.323443, - "y": -2640.003199 - } - } - } - ] - }, - { - "id": "258e118f-3f0d-55e5-881c-10ffe2e23041", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "d7bb291c-87ac-5382-996d-e10d549da0c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.398751, - "y": -2641.9964 - }, - "endPoint": { - "x": 308.541979, - "y": -2641.973498 - } - } - }, - { - "id": "39e04c2a-5157-540b-bee1-22968ebffb62", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.541979, - "y": -2641.973498 - }, - "endPoint": { - "x": 308.673922, - "y": -2641.864658 - } - } - }, - { - "id": "83b78c03-34fe-5055-9d87-066c184b72b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.673922, - "y": -2641.864658 - }, - "endPoint": { - "x": 308.851624, - "y": -2641.824579 - } - } - }, - { - "id": "3481b686-da0e-5c60-9ef3-279fe817be21", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.851624, - "y": -2641.824579 - }, - "endPoint": { - "x": 309.060823, - "y": -2641.818854 - } - } - }, - { - "id": "5e1a9787-880c-56a4-af84-5db988db999c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.060823, - "y": -2641.818854 - }, - "endPoint": { - "x": 309.301623, - "y": -2641.850344 - } - } - }, - { - "id": "9ed0268a-96fb-5b28-bf1b-7e2d1146982b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.301623, - "y": -2641.850344 - }, - "endPoint": { - "x": 309.410481, - "y": -2641.91905 - } - } - }, - { - "id": "4ddd9df8-5ccc-5f92-971e-8e4f58d9dc61", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.410481, - "y": -2641.91905 - }, - "endPoint": { - "x": 309.50795, - "y": -2641.993537 - } - } - }, - { - "id": "8f836180-11d1-5676-beba-7fce79dce051", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.50795, - "y": -2641.993537 - }, - "endPoint": { - "x": 309.571049, - "y": -2642.065162 - } - } - }, - { - "id": "b0a9e640-8fa6-509a-8ea4-13f58b6f5092", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.571049, - "y": -2642.065162 - }, - "endPoint": { - "x": 309.631172, - "y": -2642.136731 - } - } - }, - { - "id": "d25fcd81-fd11-51aa-b4b5-49c9285d2c02", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.631172, - "y": -2642.136731 - }, - "endPoint": { - "x": 309.50795, - "y": -2642.302881 - } - } - }, - { - "id": "b2475feb-82ea-59a8-bd0f-94fb44e11d22", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.50795, - "y": -2642.302881 - }, - "endPoint": { - "x": 309.333121, - "y": -2642.351548 - } - } - }, - { - "id": "acbe2ddd-b5dc-52e6-88ea-597cd4818bcf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.333121, - "y": -2642.351548 - }, - "endPoint": { - "x": 309.255762, - "y": -2642.405941 - } - } - }, - { - "id": "5013e5a5-faf7-5010-b68b-e501023e3044", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.255762, - "y": -2642.405941 - }, - "endPoint": { - "x": 309.158292, - "y": -2642.471839 - } - } - }, - { - "id": "75803870-5ab4-51c3-9fa9-8322d85f2f17", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.158292, - "y": -2642.471839 - }, - "endPoint": { - "x": 308.957608, - "y": -2642.460388 - } - } - }, - { - "id": "d8f76437-1ab7-5d9a-92bc-06a22745b07e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.957608, - "y": -2642.460388 - }, - "endPoint": { - "x": 308.745536, - "y": -2642.388764 - } - } - }, - { - "id": "9dcb5d64-264b-5042-a384-75d53713027b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.745536, - "y": -2642.388764 - }, - "endPoint": { - "x": 308.63083, - "y": -2642.320058 - } - } - }, - { - "id": "180d64a5-edfc-5ff8-9a63-3e3031c7f3cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.63083, - "y": -2642.320058 - }, - "endPoint": { - "x": 308.458874, - "y": -2642.196904 - } - } - }, - { - "id": "d3cab853-93f9-54af-a0a0-2b8085c0e6f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.458874, - "y": -2642.196904 - }, - "endPoint": { - "x": 308.384387, - "y": -2642.082338 - } - } - }, - { - "id": "a3afbff0-3539-5029-a79d-78fd17c24da2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.384387, - "y": -2642.082338 - }, - "endPoint": { - "x": 308.398751, - "y": -2641.9964 - } - } - } - ] - }, - { - "id": "74643ade-021c-553b-8fbe-20d5d9d17e88", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "34939dca-349d-578c-b453-53b6e00f0cf2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.506619, - "y": -2647.611716 - }, - "endPoint": { - "x": 303.393042, - "y": -2647.522089 - } - } - }, - { - "id": "001e5eb8-47ed-5076-836a-048a0234f633", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.393042, - "y": -2647.522089 - }, - "endPoint": { - "x": 303.129875, - "y": -2647.510143 - } - } - }, - { - "id": "fa77e4a5-b1cd-525a-8cf7-824c6c35434f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.129875, - "y": -2647.510143 - }, - "endPoint": { - "x": 303.010347, - "y": -2647.426462 - } - } - }, - { - "id": "d88e2e50-f628-5a0d-8cd9-17146fc8417e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.010347, - "y": -2647.426462 - }, - "endPoint": { - "x": 302.836647, - "y": -2647.106988 - } - } - }, - { - "id": "5ff8c8c1-35da-51df-88d1-1915ef13e15d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.836647, - "y": -2647.106988 - }, - "endPoint": { - "x": 302.794786, - "y": -2646.760483 - } - } - }, - { - "id": "5ef9f8f2-7222-5212-810f-8200e7a8c37b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.794786, - "y": -2646.760483 - }, - "endPoint": { - "x": 302.938322, - "y": -2646.282456 - } - } - }, - { - "id": "b60b4af3-0c63-5801-bf67-771ea1fd1df6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.938322, - "y": -2646.282456 - }, - "endPoint": { - "x": 303.344923, - "y": -2645.894111 - } - } - }, - { - "id": "265265e5-dfda-59ed-ac27-655328ccb8e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.344923, - "y": -2645.894111 - }, - "endPoint": { - "x": 303.673753, - "y": -2645.613285 - } - } - }, - { - "id": "81fb6315-3b4a-5cc0-855f-fc2e8ecbf355", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.673753, - "y": -2645.613285 - }, - "endPoint": { - "x": 304.283705, - "y": -2645.565499 - } - } - }, - { - "id": "bbebcf11-41c5-5e10-b39b-41b3deab685f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.283705, - "y": -2645.565499 - }, - "endPoint": { - "x": 304.536099, - "y": -2645.438876 - } - } - }, - { - "id": "351918b7-c34f-5b99-a3d2-6a72112c4326", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.536099, - "y": -2645.438876 - }, - "endPoint": { - "x": 304.805216, - "y": -2645.444877 - } - } - }, - { - "id": "58f7e643-8647-542d-9c25-fbbb2fe1f0b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.805216, - "y": -2645.444877 - }, - "endPoint": { - "x": 304.99051, - "y": -2645.534504 - } - } - }, - { - "id": "8d1d5588-588a-5db8-bf22-e49f0bf89cdf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.99051, - "y": -2645.534504 - }, - "endPoint": { - "x": 305.450975, - "y": -2645.474716 - } - } - }, - { - "id": "8781c0b3-3ac7-5531-bb7c-ff5a48e07d6b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.450975, - "y": -2645.474716 - }, - "endPoint": { - "x": 306.042972, - "y": -2645.438876 - } - } - }, - { - "id": "ced9de4a-46da-5d2a-b447-a3b9e7070d60", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.042972, - "y": -2645.438876 - }, - "endPoint": { - "x": 306.515339, - "y": -2645.516556 - } - } - }, - { - "id": "5ca663ab-4a12-5917-a9f7-2710af4e2b14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.515339, - "y": -2645.516556 - }, - "endPoint": { - "x": 306.64092, - "y": -2645.648023 - } - } - }, - { - "id": "ac2a47b8-28dd-5b7f-9931-8792f55ded8d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.64092, - "y": -2645.648023 - }, - "endPoint": { - "x": 306.727206, - "y": -2645.875008 - } - } - }, - { - "id": "e3496d14-1705-51c7-aa95-d49852edf650", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.727206, - "y": -2645.875008 - }, - "endPoint": { - "x": 306.894648, - "y": -2645.851115 - } - } - }, - { - "id": "8d69e67b-b723-570d-9c05-6a06e501e741", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.894648, - "y": -2645.851115 - }, - "endPoint": { - "x": 307.187568, - "y": -2645.516501 - } - } - }, - { - "id": "485f9568-c4e0-5647-9754-6ddc7e0d40ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.187568, - "y": -2645.516501 - }, - "endPoint": { - "x": 307.378916, - "y": -2645.396981 - } - } - }, - { - "id": "8fd431ff-a7a4-56e1-bd24-b4794542b426", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.378916, - "y": -2645.396981 - }, - "endPoint": { - "x": 307.516501, - "y": -2645.307354 - } - } - }, - { - "id": "ba38f17d-9f10-52a2-b226-656750c13e9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.516501, - "y": -2645.307354 - }, - "endPoint": { - "x": 307.899196, - "y": -2645.241676 - } - } - }, - { - "id": "e5193955-4489-5b87-9257-633dac646b50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.899196, - "y": -2645.241676 - }, - "endPoint": { - "x": 308.036679, - "y": -2645.492608 - } - } - }, - { - "id": "fcc3c050-5ab3-51e5-a973-971acb567fd0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.036679, - "y": -2645.492608 - }, - "endPoint": { - "x": 308.108498, - "y": -2645.671861 - } - } - }, - { - "id": "9fcce423-87f4-5beb-ba6e-64fa83722cfb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.108498, - "y": -2645.671861 - }, - "endPoint": { - "x": 308.16226, - "y": -2645.869007 - } - } - }, - { - "id": "a551eb2e-2a12-59b3-a9a4-4f5204044aa6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.16226, - "y": -2645.869007 - }, - "endPoint": { - "x": 308.156309, - "y": -2646.2813 - } - } - }, - { - "id": "0b9303e8-ac7f-57df-b2f2-4d3e6116aa92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.156309, - "y": -2646.2813 - }, - "endPoint": { - "x": 308.317698, - "y": -2646.227513 - } - } - }, - { - "id": "b9261ad8-8dd7-5c0f-a95b-198ce1aea714", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.317698, - "y": -2646.227513 - }, - "endPoint": { - "x": 308.473238, - "y": -2646.0841 - } - } - }, - { - "id": "9f6a0cdb-471a-58f6-a152-2089d900b807", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.473238, - "y": -2646.0841 - }, - "endPoint": { - "x": 308.527, - "y": -2645.946687 - } - } - }, - { - "id": "4130426e-185d-5c15-9975-f446b3b761ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.527, - "y": -2645.946687 - }, - "endPoint": { - "x": 308.521049, - "y": -2645.785381 - } - } - }, - { - "id": "687464f0-8904-508a-a156-bdf9fe0ea987", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.521049, - "y": -2645.785381 - }, - "endPoint": { - "x": 308.389517, - "y": -2645.689754 - } - } - }, - { - "id": "ec3f3905-ca4e-5ec1-8a68-4cad3aff40d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.389517, - "y": -2645.689754 - }, - "endPoint": { - "x": 308.281891, - "y": -2645.641968 - } - } - }, - { - "id": "66860d95-d004-5bfa-bc95-a516f05d5431", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.281891, - "y": -2645.641968 - }, - "endPoint": { - "x": 308.297178, - "y": -2645.408817 - } - } - }, - { - "id": "b9762318-d8db-52ca-9704-ae7bd3225168", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.297178, - "y": -2645.408817 - }, - "endPoint": { - "x": 308.40029, - "y": -2645.231546 - } - } - }, - { - "id": "6952355b-29fd-5ded-9327-e240e81ffa23", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.40029, - "y": -2645.231546 - }, - "endPoint": { - "x": 308.569373, - "y": -2645.206827 - } - } - }, - { - "id": "39d8a853-fded-5860-b253-4b0dee7e68e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.569373, - "y": -2645.206827 - }, - "endPoint": { - "x": 308.771494, - "y": -2645.219214 - } - } - }, - { - "id": "8d16996c-de91-5ec0-aca6-0886536cd104", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.771494, - "y": -2645.219214 - }, - "endPoint": { - "x": 309.031377, - "y": -2645.346993 - } - } - }, - { - "id": "1dee39ec-90e5-5eb2-9ea2-e1fd1ab06a80", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.031377, - "y": -2645.346993 - }, - "endPoint": { - "x": 309.146904, - "y": -2645.392301 - } - } - }, - { - "id": "3ab6cd16-6521-5b08-9a51-038adcba68ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.146904, - "y": -2645.392301 - }, - "endPoint": { - "x": 309.464551, - "y": -2645.433536 - } - } - }, - { - "id": "cf2ab1e4-a754-58f5-832b-290fbc44c6a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.464551, - "y": -2645.433536 - }, - "endPoint": { - "x": 309.613012, - "y": -2645.52008 - } - } - }, - { - "id": "7d8c2cde-30f4-5a37-9e48-abff69043efe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.613012, - "y": -2645.52008 - }, - "endPoint": { - "x": 309.77953, - "y": -2645.672963 - } - } - }, - { - "id": "faf85a55-ba1f-5a6a-91d3-468a6033b1b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.77953, - "y": -2645.672963 - }, - "endPoint": { - "x": 310.126007, - "y": -2645.94498 - } - } - }, - { - "id": "3fb7f440-8d6f-5cc5-a1f1-243ab14d7649", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.126007, - "y": -2645.94498 - }, - "endPoint": { - "x": 310.406513, - "y": -2646.184021 - } - } - }, - { - "id": "32f533fc-019c-5879-ab3b-4260f0b45c67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.406513, - "y": -2646.184021 - }, - "endPoint": { - "x": 310.608634, - "y": -2646.33239 - } - } - }, - { - "id": "9c750c3f-1af2-5e9e-83b9-bc1b6d1a404c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.608634, - "y": -2646.33239 - }, - "endPoint": { - "x": 310.843688, - "y": -2646.629181 - } - } - }, - { - "id": "d1f45034-0642-52b2-9215-3308650b14d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.843688, - "y": -2646.629181 - }, - "endPoint": { - "x": 310.975733, - "y": -2646.806398 - } - } - }, - { - "id": "3e41a552-fc26-5000-9efe-1788beeaf32d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.975733, - "y": -2646.806398 - }, - "endPoint": { - "x": 311.262908, - "y": -2647.93207 - } - } - }, - { - "id": "e7e4df3e-eace-5d77-9649-4f3d06006219", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.262908, - "y": -2647.93207 - }, - "endPoint": { - "x": 311.344167, - "y": -2648.923358 - } - } - }, - { - "id": "7a76eeac-5a98-57b0-95fc-912fc4de07d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.344167, - "y": -2648.923358 - }, - "endPoint": { - "x": 311.367457, - "y": -2649.418507 - } - } - }, - { - "id": "53244448-c7f3-5597-96c8-b90b7d3592a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.367457, - "y": -2649.418507 - }, - "endPoint": { - "x": 311.292047, - "y": -2649.650336 - } - } - }, - { - "id": "99adc3a4-8ade-5f50-a6b2-9d1147f7b13b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.292047, - "y": -2649.650336 - }, - "endPoint": { - "x": 311.268859, - "y": -2649.870658 - } - } - }, - { - "id": "7e87eec1-f2aa-5999-8d0e-c01f649a20e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.268859, - "y": -2649.870658 - }, - "endPoint": { - "x": 311.251417, - "y": -2650.137281 - } - } - }, - { - "id": "857ad856-cc97-59fa-8d8d-26125a777b1e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.251417, - "y": -2650.137281 - }, - "endPoint": { - "x": 311.083155, - "y": -2650.554694 - } - } - }, - { - "id": "c4208be0-bc65-58c5-9e36-5b77bb4621ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.083155, - "y": -2650.554694 - }, - "endPoint": { - "x": 310.796801, - "y": -2651.262623 - } - } - }, - { - "id": "c73d8729-0a83-59d0-871b-c5e6fb84330f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.796801, - "y": -2651.262623 - }, - "endPoint": { - "x": 310.292013, - "y": -2651.663191 - } - } - }, - { - "id": "8c0ab408-6aad-5585-a622-dbb47fcba871", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.292013, - "y": -2651.663191 - }, - "endPoint": { - "x": 309.753573, - "y": -2651.982499 - } - } - }, - { - "id": "96acc194-c4da-5fd2-90ca-6e4c1aca884a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.753573, - "y": -2651.982499 - }, - "endPoint": { - "x": 309.265714, - "y": -2652.069813 - } - } - }, - { - "id": "ccafd32a-28a9-5ca3-9bde-6b8d82896e9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.265714, - "y": -2652.069813 - }, - "endPoint": { - "x": 308.80689, - "y": -2652.084402 - } - } - }, - { - "id": "cb31b492-e9f8-549d-a49d-69013903fefc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.80689, - "y": -2652.084402 - }, - "endPoint": { - "x": 308.428197, - "y": -2652.142594 - } - } - }, - { - "id": "e73c0f18-d4e8-596e-bc44-483386348680", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.428197, - "y": -2652.142594 - }, - "endPoint": { - "x": 308.280659, - "y": -2652.274611 - } - } - }, - { - "id": "178264f1-6ab7-5383-9590-148bf07cd279", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.280659, - "y": -2652.274611 - }, - "endPoint": { - "x": 308.261371, - "y": -2652.432174 - } - } - }, - { - "id": "997789b3-a65d-52d2-b14f-749d8cf2c3ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.261371, - "y": -2652.432174 - }, - "endPoint": { - "x": 308.322007, - "y": -2652.945379 - } - } - }, - { - "id": "016ffccf-ad48-5f21-b87d-5002eb1ccf17", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.322007, - "y": -2652.945379 - }, - "endPoint": { - "x": 308.348888, - "y": -2653.164932 - } - } - }, - { - "id": "fd0e47b6-c71e-5598-b61f-758d363ed0fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.348888, - "y": -2653.164932 - }, - "endPoint": { - "x": 308.456514, - "y": -2653.267936 - } - } - }, - { - "id": "155e35ea-8b08-5ad5-8b7e-9961e6e9687c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.456514, - "y": -2653.267936 - }, - "endPoint": { - "x": 308.505864, - "y": -2653.362022 - } - } - }, - { - "id": "b0ecad2e-42df-5845-8367-1005f7620ba7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.505864, - "y": -2653.362022 - }, - "endPoint": { - "x": 308.514791, - "y": -2653.509895 - } - } - }, - { - "id": "401ed702-138f-598a-8bc5-29cedf69f793", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.514791, - "y": -2653.509895 - }, - "endPoint": { - "x": 308.375769, - "y": -2653.715959 - } - } - }, - { - "id": "2145edfb-e2e0-5e6e-a4e4-852a27b7049a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.375769, - "y": -2653.715959 - }, - "endPoint": { - "x": 308.209866, - "y": -2653.993757 - } - } - }, - { - "id": "556a2025-1b96-5eac-8ebc-966ebdaddc3a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.209866, - "y": -2653.993757 - }, - "endPoint": { - "x": 307.936439, - "y": -2654.07887 - } - } - }, - { - "id": "2978e28f-8b3b-5f45-9fde-276f2b8ce70e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.936439, - "y": -2654.07887 - }, - "endPoint": { - "x": 307.479052, - "y": -2654.04303 - } - } - }, - { - "id": "e609f74b-ce51-5dc8-85f9-0a6b439ed893", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.479052, - "y": -2654.04303 - }, - "endPoint": { - "x": 307.241433, - "y": -2653.819019 - } - } - }, - { - "id": "d812a67c-94c3-5930-add9-4976b5d0eb8c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.241433, - "y": -2653.819019 - }, - "endPoint": { - "x": 307.048649, - "y": -2653.581574 - } - } - }, - { - "id": "75f99f19-6817-5654-90e9-8d0fc41e7bca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.048649, - "y": -2653.581574 - }, - "endPoint": { - "x": 306.981447, - "y": -2653.397862 - } - } - }, - { - "id": "32bbf85e-fb6a-5d67-bf29-7d765a8c20c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.981447, - "y": -2653.397862 - }, - "endPoint": { - "x": 307.07553, - "y": -2652.999166 - } - } - }, - { - "id": "8107d9a4-dc77-52a0-ba70-f12ba509dee3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.07553, - "y": -2652.999166 - }, - "endPoint": { - "x": 307.138321, - "y": -2652.694502 - } - } - }, - { - "id": "771dc559-7f2d-5e9c-966f-6edbc05d0e93", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.138321, - "y": -2652.694502 - }, - "endPoint": { - "x": 307.205626, - "y": -2652.457058 - } - } - }, - { - "id": "4b700748-cf58-5db8-8350-cf5db4b260d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.205626, - "y": -2652.457058 - }, - "endPoint": { - "x": 307.120366, - "y": -2652.237505 - } - } - }, - { - "id": "c50fe23c-3ed6-5781-ae2b-23c2710dcbd7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.120366, - "y": -2652.237505 - }, - "endPoint": { - "x": 307.035208, - "y": -2652.152393 - } - } - }, - { - "id": "f3df88cf-de77-5031-a5f4-cc592c693689", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.035208, - "y": -2652.152393 - }, - "endPoint": { - "x": 306.985858, - "y": -2652.121068 - } - } - }, - { - "id": "41f93894-030b-51cc-876b-42a351652898", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.985858, - "y": -2652.121068 - }, - "endPoint": { - "x": 306.716843, - "y": -2652.129987 - } - } - }, - { - "id": "bb91e5ad-2ca9-592f-b773-1fac841d3490", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.716843, - "y": -2652.129987 - }, - "endPoint": { - "x": 306.532986, - "y": -2652.10758 - } - } - }, - { - "id": "8c8f10e6-5781-5935-b4dd-38fe58e882ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.532986, - "y": -2652.10758 - }, - "endPoint": { - "x": 306.479224, - "y": -2652.192747 - } - } - }, - { - "id": "78d16139-e2e7-5662-b982-e92f011b141d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.479224, - "y": -2652.192747 - }, - "endPoint": { - "x": 306.420947, - "y": -2652.210639 - } - } - }, - { - "id": "849151db-572c-5f1f-bb7f-a88dc3d26919", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.420947, - "y": -2652.210639 - }, - "endPoint": { - "x": 306.100633, - "y": -2652.272024 - } - } - }, - { - "id": "5890e3af-6372-58c1-b774-753070d79d19", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.100633, - "y": -2652.272024 - }, - "endPoint": { - "x": 305.907849, - "y": -2652.379543 - } - } - }, - { - "id": "6e3862e3-4610-5724-939e-c0128ed32ca0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.907849, - "y": -2652.379543 - }, - "endPoint": { - "x": 305.495298, - "y": -2652.415382 - } - } - }, - { - "id": "0f50af7c-157c-5445-9931-f1b1e8b946e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.495298, - "y": -2652.415382 - }, - "endPoint": { - "x": 304.988664, - "y": -2652.410923 - } - } - }, - { - "id": "66acbb46-5f0a-5088-b248-3e3dcf928de6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.988664, - "y": -2652.410923 - }, - "endPoint": { - "x": 304.863185, - "y": -2652.312323 - } - } - }, - { - "id": "3a8761a7-34b0-501d-b175-79a6ad712075", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.863185, - "y": -2652.312323 - }, - "endPoint": { - "x": 304.603096, - "y": -2652.245158 - } - } - }, - { - "id": "4315b2e6-6a48-53e0-bc62-0a613e5a3c9d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.603096, - "y": -2652.245158 - }, - "endPoint": { - "x": 303.911373, - "y": -2652.236239 - } - } - }, - { - "id": "1584e18d-bc2f-52c6-833a-fcb4c5ac4702", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.911373, - "y": -2652.236239 - }, - "endPoint": { - "x": 303.799745, - "y": -2652.241579 - } - } - }, - { - "id": "451df900-dab4-5cae-8d3c-cd1eaee60d41", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.799745, - "y": -2652.241579 - }, - "endPoint": { - "x": 303.534834, - "y": -2652.014705 - } - } - }, - { - "id": "0ddf2bfc-7703-53bd-a176-c06fc96e6612", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.534834, - "y": -2652.014705 - }, - "endPoint": { - "x": 303.238527, - "y": -2651.460264 - } - } - }, - { - "id": "9c01a5bc-aa65-5658-8bc8-b6153cdcda07", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.238527, - "y": -2651.460264 - }, - "endPoint": { - "x": 303.093452, - "y": -2650.993964 - } - } - }, - { - "id": "233afa8e-d8b6-59a5-9461-b5baac87fb89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.093452, - "y": -2650.993964 - }, - "endPoint": { - "x": 302.909287, - "y": -2650.195748 - } - } - }, - { - "id": "4b34b890-97bc-5936-8b63-66510d1b0ded", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.909287, - "y": -2650.195748 - }, - "endPoint": { - "x": 303.079499, - "y": -2648.815839 - } - } - }, - { - "id": "e909e7d0-ab74-591f-af7f-81d65fc87747", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.079499, - "y": -2648.815839 - }, - "endPoint": { - "x": 303.33179, - "y": -2648.110167 - } - } - }, - { - "id": "1b3d2f1d-fafd-5863-9ea6-ef11c7a8e0e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.33179, - "y": -2648.110167 - }, - "endPoint": { - "x": 303.483329, - "y": -2647.886211 - } - } - }, - { - "id": "d0a7a8d6-739d-5c7c-aaf1-52f77af8065c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.483329, - "y": -2647.886211 - }, - "endPoint": { - "x": 303.506619, - "y": -2647.611716 - } - } - } - ] - }, - { - "id": "23670eff-f366-59ae-aa27-6dfd049aeea4", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "b24717a8-104e-5e11-bcb8-359419032fd2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.175187, - "y": -2648.994817 - }, - "endPoint": { - "x": 308.152513, - "y": -2649.75323 - } - } - }, - { - "id": "99e10acc-d605-5ae7-88ce-53b02b3abf9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.152513, - "y": -2649.75323 - }, - "endPoint": { - "x": 308.323546, - "y": -2650.147521 - } - } - }, - { - "id": "9651f5e9-b8f9-5560-8db2-009fc615da3a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.323546, - "y": -2650.147521 - }, - "endPoint": { - "x": 308.441945, - "y": -2650.200097 - } - } - }, - { - "id": "c87204a2-99bd-5292-8392-6f779c47511c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.441945, - "y": -2650.200097 - }, - "endPoint": { - "x": 308.678641, - "y": -2650.489291 - } - } - }, - { - "id": "593f6d85-3dac-5f5e-9bb1-b72acf10e5d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.678641, - "y": -2650.489291 - }, - "endPoint": { - "x": 309.139106, - "y": -2650.489291 - } - } - }, - { - "id": "38a68ad7-e8ea-5bdd-8e6a-df8b3bbc03ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.139106, - "y": -2650.489291 - }, - "endPoint": { - "x": 309.481172, - "y": -2650.173836 - } - } - }, - { - "id": "6eebb4bf-205b-53af-9f35-0d254bc79fbc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.481172, - "y": -2650.173836 - }, - "endPoint": { - "x": 309.665337, - "y": -2649.77949 - } - } - }, - { - "id": "14ca4f67-fdbd-5922-a00a-cf19078f1346", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.665337, - "y": -2649.77949 - }, - "endPoint": { - "x": 309.751623, - "y": -2649.579537 - } - } - }, - { - "id": "40640bf1-bb00-5dcd-b87d-730692521318", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.751623, - "y": -2649.579537 - }, - "endPoint": { - "x": 309.811438, - "y": -2648.891758 - } - } - }, - { - "id": "7acda923-25a2-5776-875d-870300adf82a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.811438, - "y": -2648.891758 - }, - "endPoint": { - "x": 309.766603, - "y": -2648.29366 - } - } - }, - { - "id": "20355dee-3560-5fcd-bb72-0a70aab12ccd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.766603, - "y": -2648.29366 - }, - "endPoint": { - "x": 309.676726, - "y": -2648.02456 - } - } - }, - { - "id": "efddced7-ac7a-5f1f-930d-5c0d1f8e804a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.676726, - "y": -2648.02456 - }, - "endPoint": { - "x": 309.497177, - "y": -2647.725511 - } - } - }, - { - "id": "07aa92ea-8afe-57c3-92ee-d9847cd7e185", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.497177, - "y": -2647.725511 - }, - "endPoint": { - "x": 309.542116, - "y": -2647.48625 - } - } - }, - { - "id": "558c3122-8373-5947-8787-ba6916ab836f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.542116, - "y": -2647.48625 - }, - "endPoint": { - "x": 309.287772, - "y": -2647.276937 - } - } - }, - { - "id": "9fd1e021-131b-5985-95ab-0aa2c06c95fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.287772, - "y": -2647.276937 - }, - "endPoint": { - "x": 308.928573, - "y": -2646.977888 - } - } - }, - { - "id": "e875f813-0f75-535a-929c-13a30047dd33", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.928573, - "y": -2646.977888 - }, - "endPoint": { - "x": 308.344989, - "y": -2647.097519 - } - } - }, - { - "id": "b0abead6-3d3d-59c9-b734-807123e3cb7d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.344989, - "y": -2647.097519 - }, - "endPoint": { - "x": 308.225358, - "y": -2647.516199 - } - } - }, - { - "id": "4ab524c8-6a4a-5270-aaf0-b571d93f326c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.225358, - "y": -2647.516199 - }, - "endPoint": { - "x": 308.210379, - "y": -2648.233872 - } - } - }, - { - "id": "d98a06c1-b0da-5a35-9eff-65cdea9c16ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.210379, - "y": -2648.233872 - }, - "endPoint": { - "x": 308.175187, - "y": -2648.994817 - } - } - } - ] - }, - { - "id": "057f45b1-71de-56a1-bc64-be67a69f878d", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "22f4ec97-cf20-50c9-97fc-74f74e07c5fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.122863, - "y": -2647.578409 - }, - "endPoint": { - "x": 304.866776, - "y": -2647.672495 - } - } - }, - { - "id": "78ef54d3-787d-5242-b402-46eb5a922550", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.866776, - "y": -2647.672495 - }, - "endPoint": { - "x": 304.685893, - "y": -2647.830607 - } - } - }, - { - "id": "e686817a-6af8-5015-9bad-fc023435b1f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.685893, - "y": -2647.830607 - }, - "endPoint": { - "x": 304.441092, - "y": -2647.951064 - } - } - }, - { - "id": "b57da604-fbd7-507b-af3d-905f9f1d4a02", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.441092, - "y": -2647.951064 - }, - "endPoint": { - "x": 304.248924, - "y": -2648.222036 - } - } - }, - { - "id": "4d7a9a0a-9ca6-5ba5-9a17-39b4e1e1f8b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.248924, - "y": -2648.222036 - }, - "endPoint": { - "x": 304.20378, - "y": -2648.429091 - } - } - }, - { - "id": "2f35c9a6-9a27-5ed6-bd93-a998a9cec412", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.20378, - "y": -2648.429091 - }, - "endPoint": { - "x": 303.992734, - "y": -2648.688832 - } - } - }, - { - "id": "cad841ee-4b5e-576f-a942-db5f4cfcb264", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.992734, - "y": -2648.688832 - }, - "endPoint": { - "x": 303.939998, - "y": -2648.775375 - } - } - }, - { - "id": "72805ee3-9138-564b-8e88-1dd24f03e5fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.939998, - "y": -2648.775375 - }, - "endPoint": { - "x": 303.886749, - "y": -2649.12744 - } - } - }, - { - "id": "1b10a1ad-c8c8-567a-bdea-74749de18221", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.886749, - "y": -2649.12744 - }, - "endPoint": { - "x": 303.916913, - "y": -2649.477469 - } - } - }, - { - "id": "a9dab177-a038-5906-8312-cd21876542b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.916913, - "y": -2649.477469 - }, - "endPoint": { - "x": 303.973445, - "y": -2649.744752 - } - } - }, - { - "id": "3e97cccc-e22e-5d3a-93ee-163a861e7e01", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.973445, - "y": -2649.744752 - }, - "endPoint": { - "x": 303.954567, - "y": -2649.917894 - } - } - }, - { - "id": "e3e2e0b7-d033-5daf-9efd-0cda20ab9550", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.954567, - "y": -2649.917894 - }, - "endPoint": { - "x": 304.093999, - "y": -2650.072208 - } - } - }, - { - "id": "f111eb9e-2b0e-56e4-a90b-1efdab335728", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.093999, - "y": -2650.072208 - }, - "endPoint": { - "x": 304.357679, - "y": -2650.29633 - } - } - }, - { - "id": "ded983e0-aa41-5357-a86e-819a33ef51d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.357679, - "y": -2650.29633 - }, - "endPoint": { - "x": 304.892631, - "y": -2650.458186 - } - } - }, - { - "id": "4a3bacee-4701-56df-8619-d80de314d376", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.892631, - "y": -2650.458186 - }, - "endPoint": { - "x": 305.393622, - "y": -2650.522213 - } - } - }, - { - "id": "58006719-3b16-5d9c-9c5e-8907fffe4e42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.393622, - "y": -2650.522213 - }, - "endPoint": { - "x": 305.838082, - "y": -2650.428072 - } - } - }, - { - "id": "a0b2d150-6974-5976-80b9-83f0c525e834", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.838082, - "y": -2650.428072 - }, - "endPoint": { - "x": 306.212466, - "y": -2650.390746 - } - } - }, - { - "id": "c82e6154-2fc1-5421-b5d4-fc3935753abb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.212466, - "y": -2650.390746 - }, - "endPoint": { - "x": 306.461064, - "y": -2650.225091 - } - } - }, - { - "id": "7eba1335-b1ca-5b32-a680-91e70fe6ceb7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.461064, - "y": -2650.225091 - }, - "endPoint": { - "x": 306.656925, - "y": -2650.078319 - } - } - }, - { - "id": "2ea2b20f-265b-5e8e-8034-78a5805773e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.656925, - "y": -2650.078319 - }, - "endPoint": { - "x": 306.90183, - "y": -2650.104635 - } - } - }, - { - "id": "9baf8d20-746b-5a94-bbb0-f50e963b1f62", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.90183, - "y": -2650.104635 - }, - "endPoint": { - "x": 307.218245, - "y": -2650.082063 - } - } - }, - { - "id": "19cdc211-e7d2-5214-b167-10df36d36e7e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.218245, - "y": -2650.082063 - }, - "endPoint": { - "x": 307.338799, - "y": -2649.886349 - } - } - }, - { - "id": "abe87cfb-6f86-5cb6-b2cf-379be43f0307", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.338799, - "y": -2649.886349 - }, - "endPoint": { - "x": 307.387739, - "y": -2649.769636 - } - } - }, - { - "id": "b7ff0672-b815-5e43-9a51-01e8bf965ca5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.387739, - "y": -2649.769636 - }, - "endPoint": { - "x": 307.395844, - "y": -2649.691295 - } - } - }, - { - "id": "bbf7d199-b700-575b-bcf5-fb241095c01b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.395844, - "y": -2649.691295 - }, - "endPoint": { - "x": 307.249025, - "y": -2649.544578 - } - } - }, - { - "id": "cef48674-90a5-5e18-8903-0c8a367bc1fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.249025, - "y": -2649.544578 - }, - "endPoint": { - "x": 307.258772, - "y": -2648.859992 - } - } - }, - { - "id": "49a91870-8f8a-5979-95a0-de3efc9a1c05", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.258772, - "y": -2648.859992 - }, - "endPoint": { - "x": 307.209832, - "y": -2647.969947 - } - } - }, - { - "id": "58a5adcd-991b-52f0-b9fe-829f89055026", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.209832, - "y": -2647.969947 - }, - "endPoint": { - "x": 307.072862, - "y": -2647.627681 - } - } - }, - { - "id": "09f9e2c9-5de1-5e74-b461-d9ac61aa5f0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.072862, - "y": -2647.627681 - }, - "endPoint": { - "x": 306.994477, - "y": -2647.471165 - } - } - }, - { - "id": "dcaeb8d7-0723-59ba-b280-fe500d039bbe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.994477, - "y": -2647.471165 - }, - "endPoint": { - "x": 306.887158, - "y": -2647.441106 - } - } - }, - { - "id": "a2557d30-692a-5458-a855-3d2799cd5475", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.887158, - "y": -2647.441106 - }, - "endPoint": { - "x": 306.752856, - "y": -2647.417543 - } - } - }, - { - "id": "f9781f25-0adb-56d6-b25c-018b6750f648", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.752856, - "y": -2647.417543 - }, - "endPoint": { - "x": 306.571563, - "y": -2647.481075 - } - } - }, - { - "id": "a5075aeb-3cbe-56ba-af30-76e1b7e3b962", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.571563, - "y": -2647.481075 - }, - "endPoint": { - "x": 306.39499, - "y": -2647.575216 - } - } - }, - { - "id": "2157a987-050d-5eec-ab01-f0c5abdd34ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.39499, - "y": -2647.575216 - }, - "endPoint": { - "x": 305.804737, - "y": -2647.597237 - } - } - }, - { - "id": "77660b25-7f15-51ad-a8c7-bb2f6a24fe74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.804737, - "y": -2647.597237 - }, - "endPoint": { - "x": 305.122863, - "y": -2647.578409 - } - } - } - ] - }, - { - "id": "48e8450f-1907-5a5c-ad74-5906c30db2c9", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "bb63ea9b-a5c9-5d97-9ab1-af541a460872", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.506619, - "y": -2647.611716 - }, - "endPoint": { - "x": 303.393042, - "y": -2647.522089 - } - } - }, - { - "id": "fcd1d6fe-6cb6-5154-8800-d68dd5029f4e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.393042, - "y": -2647.522089 - }, - "endPoint": { - "x": 303.129875, - "y": -2647.510143 - } - } - }, - { - "id": "af3abe6c-cb1b-5eff-adcf-a6a1b8afc60f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.129875, - "y": -2647.510143 - }, - "endPoint": { - "x": 303.010347, - "y": -2647.426462 - } - } - }, - { - "id": "040b58c8-27a8-5c57-ba26-f909a1c72433", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.010347, - "y": -2647.426462 - }, - "endPoint": { - "x": 302.836647, - "y": -2647.106988 - } - } - }, - { - "id": "433b007e-d0b7-54a1-8ac4-727d7431d2a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.836647, - "y": -2647.106988 - }, - "endPoint": { - "x": 302.794786, - "y": -2646.760483 - } - } - }, - { - "id": "2b8c15ba-951d-53b1-a1cb-7e7423aa7cbc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.794786, - "y": -2646.760483 - }, - "endPoint": { - "x": 302.938322, - "y": -2646.282456 - } - } - }, - { - "id": "cc498549-f8e7-58a3-a7f1-5c87c60636db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.938322, - "y": -2646.282456 - }, - "endPoint": { - "x": 303.344923, - "y": -2645.894111 - } - } - }, - { - "id": "71bca35f-58e4-5e46-877d-202487ecb60f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.344923, - "y": -2645.894111 - }, - "endPoint": { - "x": 303.673753, - "y": -2645.613285 - } - } - }, - { - "id": "186546e5-ab18-5fea-900e-d94fc852c329", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.673753, - "y": -2645.613285 - }, - "endPoint": { - "x": 304.283705, - "y": -2645.565499 - } - } - }, - { - "id": "89958b56-73d9-51ae-96ab-0378a05dd60a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.283705, - "y": -2645.565499 - }, - "endPoint": { - "x": 304.536099, - "y": -2645.438876 - } - } - }, - { - "id": "05b483dd-6ad5-5b22-8cdb-19350a26dc58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.536099, - "y": -2645.438876 - }, - "endPoint": { - "x": 304.805216, - "y": -2645.444877 - } - } - }, - { - "id": "96367d1f-d96a-56fa-902e-bac704103c97", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.805216, - "y": -2645.444877 - }, - "endPoint": { - "x": 304.99051, - "y": -2645.534504 - } - } - }, - { - "id": "fb67d35c-e32f-5359-a624-af97ca05abc3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.99051, - "y": -2645.534504 - }, - "endPoint": { - "x": 305.450975, - "y": -2645.474716 - } - } - }, - { - "id": "5e051e2c-73c4-5baf-aad1-1090b53c9796", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.450975, - "y": -2645.474716 - }, - "endPoint": { - "x": 306.042972, - "y": -2645.438876 - } - } - }, - { - "id": "b6b735c3-c88c-5c80-acfa-425673e08110", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.042972, - "y": -2645.438876 - }, - "endPoint": { - "x": 306.515339, - "y": -2645.516556 - } - } - }, - { - "id": "bc5cbd30-5c31-5c7c-b7cb-6d3ce1f544c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.515339, - "y": -2645.516556 - }, - "endPoint": { - "x": 306.64092, - "y": -2645.648023 - } - } - }, - { - "id": "36b7f49a-864e-5454-b9d3-9c78db5920fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.64092, - "y": -2645.648023 - }, - "endPoint": { - "x": 306.727206, - "y": -2645.875008 - } - } - }, - { - "id": "a49150dd-2442-5087-869b-eba7068215fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.727206, - "y": -2645.875008 - }, - "endPoint": { - "x": 306.894648, - "y": -2645.851115 - } - } - }, - { - "id": "97fe330c-c199-5c8a-a634-aa94926ba13f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.894648, - "y": -2645.851115 - }, - "endPoint": { - "x": 307.187568, - "y": -2645.516501 - } - } - }, - { - "id": "8184c1e7-b234-5db5-8d41-ee4dbc2d2a63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.187568, - "y": -2645.516501 - }, - "endPoint": { - "x": 307.378916, - "y": -2645.396981 - } - } - }, - { - "id": "44ed4aea-a7e1-5bdd-9d8c-0db60900811f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.378916, - "y": -2645.396981 - }, - "endPoint": { - "x": 307.516501, - "y": -2645.307354 - } - } - }, - { - "id": "480491fc-7a07-59c2-9c56-78283cd9414d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.516501, - "y": -2645.307354 - }, - "endPoint": { - "x": 307.899196, - "y": -2645.241676 - } - } - }, - { - "id": "d54a2de8-bb2e-5152-9031-e788995fc626", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.899196, - "y": -2645.241676 - }, - "endPoint": { - "x": 308.036679, - "y": -2645.492608 - } - } - }, - { - "id": "a23ecd65-c5ff-5f05-b0bd-7c5d87b3154c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.036679, - "y": -2645.492608 - }, - "endPoint": { - "x": 308.108498, - "y": -2645.671861 - } - } - }, - { - "id": "35f4e52f-0c54-5e89-9ac8-f7632a7b4f93", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.108498, - "y": -2645.671861 - }, - "endPoint": { - "x": 308.16226, - "y": -2645.869007 - } - } - }, - { - "id": "1c832424-8264-5499-bfe0-e0ef163e402a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.16226, - "y": -2645.869007 - }, - "endPoint": { - "x": 308.156309, - "y": -2646.2813 - } - } - }, - { - "id": "e884d479-c237-5630-bd82-73371f674a48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.156309, - "y": -2646.2813 - }, - "endPoint": { - "x": 308.317698, - "y": -2646.227513 - } - } - }, - { - "id": "7135e482-f6a8-5d2c-a831-f505e2622fbd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.317698, - "y": -2646.227513 - }, - "endPoint": { - "x": 308.473238, - "y": -2646.0841 - } - } - }, - { - "id": "e3b257d1-e66d-5fc9-84f1-8db1d82004df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.473238, - "y": -2646.0841 - }, - "endPoint": { - "x": 308.527, - "y": -2645.946687 - } - } - }, - { - "id": "1bee2149-43fc-5a52-8c89-bb49dcb09600", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.527, - "y": -2645.946687 - }, - "endPoint": { - "x": 308.521049, - "y": -2645.785381 - } - } - }, - { - "id": "cdd3ed75-5c40-5f8d-af7f-44d70807d35c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.521049, - "y": -2645.785381 - }, - "endPoint": { - "x": 308.389517, - "y": -2645.689754 - } - } - }, - { - "id": "1f41be3c-535e-5bde-aa36-7f6d3ff923d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.389517, - "y": -2645.689754 - }, - "endPoint": { - "x": 308.281891, - "y": -2645.641968 - } - } - }, - { - "id": "4871f6b3-b1e8-5054-80ab-92df71b5b4bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.281891, - "y": -2645.641968 - }, - "endPoint": { - "x": 308.297178, - "y": -2645.408817 - } - } - }, - { - "id": "56691dbb-0a59-5a50-80ce-bf7bdebc3d70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.297178, - "y": -2645.408817 - }, - "endPoint": { - "x": 308.40029, - "y": -2645.231546 - } - } - }, - { - "id": "171e53c7-228e-5664-b147-55a62f2a080a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.40029, - "y": -2645.231546 - }, - "endPoint": { - "x": 308.569373, - "y": -2645.206827 - } - } - }, - { - "id": "64a8479b-df86-50e3-ae0a-6c5c6985c50a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.569373, - "y": -2645.206827 - }, - "endPoint": { - "x": 308.771494, - "y": -2645.219214 - } - } - }, - { - "id": "46812dd4-7c5a-5504-8186-3e6866b0a51e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.771494, - "y": -2645.219214 - }, - "endPoint": { - "x": 309.031377, - "y": -2645.346993 - } - } - }, - { - "id": "5a062bc6-bcca-57a7-9542-3f0cdd8c1cf9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.031377, - "y": -2645.346993 - }, - "endPoint": { - "x": 309.146904, - "y": -2645.392301 - } - } - }, - { - "id": "9f291e59-bc69-5ca6-9126-dd615f1e7c2a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.146904, - "y": -2645.392301 - }, - "endPoint": { - "x": 309.464551, - "y": -2645.433536 - } - } - }, - { - "id": "693766fb-ad12-5e27-95ea-cfbf99b56ad6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.464551, - "y": -2645.433536 - }, - "endPoint": { - "x": 309.613012, - "y": -2645.52008 - } - } - }, - { - "id": "6da9cf99-e469-51ad-a135-527c6f6d6a85", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.613012, - "y": -2645.52008 - }, - "endPoint": { - "x": 309.77953, - "y": -2645.672963 - } - } - }, - { - "id": "aa4d760d-70ab-5029-83e7-5a2ef3698a0c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.77953, - "y": -2645.672963 - }, - "endPoint": { - "x": 310.126007, - "y": -2645.94498 - } - } - }, - { - "id": "2dcdd89c-dfa8-5bd3-9793-3fce56ef9cd5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.126007, - "y": -2645.94498 - }, - "endPoint": { - "x": 310.406513, - "y": -2646.184021 - } - } - }, - { - "id": "21e15915-d6c0-5509-a5c2-0223d06df084", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.406513, - "y": -2646.184021 - }, - "endPoint": { - "x": 310.608634, - "y": -2646.33239 - } - } - }, - { - "id": "adc515d3-825c-5129-958c-513403e34c80", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.608634, - "y": -2646.33239 - }, - "endPoint": { - "x": 310.843688, - "y": -2646.629181 - } - } - }, - { - "id": "9fb22992-4d27-5a7a-ac35-da48539afb6f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.843688, - "y": -2646.629181 - }, - "endPoint": { - "x": 310.975733, - "y": -2646.806398 - } - } - }, - { - "id": "35160322-a481-5f2e-b4a6-2740a923699a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.975733, - "y": -2646.806398 - }, - "endPoint": { - "x": 311.262908, - "y": -2647.93207 - } - } - }, - { - "id": "c2d8ead9-78e9-521c-b75d-63bb35ee9be8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.262908, - "y": -2647.93207 - }, - "endPoint": { - "x": 311.344167, - "y": -2648.923358 - } - } - }, - { - "id": "49a7b0de-2294-5605-bf3a-f2e8ae4bedd9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.344167, - "y": -2648.923358 - }, - "endPoint": { - "x": 311.367457, - "y": -2649.418507 - } - } - }, - { - "id": "90f4c989-ff8f-5020-a4c5-05baef8bde9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.367457, - "y": -2649.418507 - }, - "endPoint": { - "x": 311.292047, - "y": -2649.650336 - } - } - }, - { - "id": "fcfec5aa-dffc-5c70-93c8-c75bd28a499f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.292047, - "y": -2649.650336 - }, - "endPoint": { - "x": 311.268859, - "y": -2649.870658 - } - } - }, - { - "id": "a1a57b79-351b-5fad-b666-28b6de208cac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.268859, - "y": -2649.870658 - }, - "endPoint": { - "x": 311.251417, - "y": -2650.137281 - } - } - }, - { - "id": "8fd8533d-d4a9-5fb3-b619-01fb5158ccd3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.251417, - "y": -2650.137281 - }, - "endPoint": { - "x": 311.083155, - "y": -2650.554694 - } - } - }, - { - "id": "9d0bb442-5cca-5f9c-aeaf-88951c3c5953", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.083155, - "y": -2650.554694 - }, - "endPoint": { - "x": 310.796801, - "y": -2651.262623 - } - } - }, - { - "id": "d6feb962-1d98-5ad6-b3e9-b68cbb906466", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.796801, - "y": -2651.262623 - }, - "endPoint": { - "x": 310.292013, - "y": -2651.663191 - } - } - }, - { - "id": "842cc43d-b2fe-512f-aaa3-d02cfa641a27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.292013, - "y": -2651.663191 - }, - "endPoint": { - "x": 309.753573, - "y": -2651.982499 - } - } - }, - { - "id": "727de00c-3a01-5a65-ac86-1e904f92a611", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.753573, - "y": -2651.982499 - }, - "endPoint": { - "x": 309.265714, - "y": -2652.069813 - } - } - }, - { - "id": "3da809ef-479f-55aa-b5d1-6ebf6c89bf97", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.265714, - "y": -2652.069813 - }, - "endPoint": { - "x": 308.80689, - "y": -2652.084402 - } - } - }, - { - "id": "b5ca6a64-4e75-5f45-89dc-d9aa518ff9b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.80689, - "y": -2652.084402 - }, - "endPoint": { - "x": 308.428197, - "y": -2652.142594 - } - } - }, - { - "id": "be9b289c-876e-5a93-94f3-6f5d8f55845d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.428197, - "y": -2652.142594 - }, - "endPoint": { - "x": 308.280659, - "y": -2652.274611 - } - } - }, - { - "id": "ee17d3a1-fca9-56c0-bbda-7c1e5e32f263", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.280659, - "y": -2652.274611 - }, - "endPoint": { - "x": 308.261371, - "y": -2652.432174 - } - } - }, - { - "id": "54486694-3a87-5702-9e34-b2d14df2d37b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.261371, - "y": -2652.432174 - }, - "endPoint": { - "x": 308.322007, - "y": -2652.945379 - } - } - }, - { - "id": "5f96e1d6-48d5-5550-b560-695aaa50f7e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.322007, - "y": -2652.945379 - }, - "endPoint": { - "x": 308.348888, - "y": -2653.164932 - } - } - }, - { - "id": "4e9d58d5-ea45-594c-84a9-4abf0ffc9777", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.348888, - "y": -2653.164932 - }, - "endPoint": { - "x": 308.456514, - "y": -2653.267936 - } - } - }, - { - "id": "4c5675b9-80c6-5b07-834c-582c17d61189", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.456514, - "y": -2653.267936 - }, - "endPoint": { - "x": 308.505864, - "y": -2653.362022 - } - } - }, - { - "id": "f5669314-6240-5615-82c3-a271404d8c3a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.505864, - "y": -2653.362022 - }, - "endPoint": { - "x": 308.514791, - "y": -2653.509895 - } - } - }, - { - "id": "0ca3ad6f-83e3-5f84-be55-161ed6b99e55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.514791, - "y": -2653.509895 - }, - "endPoint": { - "x": 308.375769, - "y": -2653.715959 - } - } - }, - { - "id": "7c0565d1-50b6-55b9-9688-e7e8983a5e87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.375769, - "y": -2653.715959 - }, - "endPoint": { - "x": 308.209866, - "y": -2653.993757 - } - } - }, - { - "id": "687ae6f7-eaa5-5666-bd2a-95dc08c6f57a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.209866, - "y": -2653.993757 - }, - "endPoint": { - "x": 307.936439, - "y": -2654.07887 - } - } - }, - { - "id": "104c6590-1976-58ee-b162-8ccdb7f156f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.936439, - "y": -2654.07887 - }, - "endPoint": { - "x": 307.479052, - "y": -2654.04303 - } - } - }, - { - "id": "76260e3d-a32d-5fdf-b381-8ec90ec6744d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.479052, - "y": -2654.04303 - }, - "endPoint": { - "x": 307.241433, - "y": -2653.819019 - } - } - }, - { - "id": "874dfb95-d46f-5f81-a177-f38f40d7d778", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.241433, - "y": -2653.819019 - }, - "endPoint": { - "x": 307.048649, - "y": -2653.581574 - } - } - }, - { - "id": "be887ecc-97a0-5d65-8136-c37043018368", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.048649, - "y": -2653.581574 - }, - "endPoint": { - "x": 306.981447, - "y": -2653.397862 - } - } - }, - { - "id": "8ea5977b-1bfb-5274-b455-eeb62b106730", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.981447, - "y": -2653.397862 - }, - "endPoint": { - "x": 307.07553, - "y": -2652.999166 - } - } - }, - { - "id": "06e02050-dd4d-5c5e-8f3c-528470a20cc9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.07553, - "y": -2652.999166 - }, - "endPoint": { - "x": 307.138321, - "y": -2652.694502 - } - } - }, - { - "id": "e79643bb-92af-5ffd-b529-ad3bfdce312c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.138321, - "y": -2652.694502 - }, - "endPoint": { - "x": 307.205626, - "y": -2652.457058 - } - } - }, - { - "id": "1b4b2a8b-4ace-5aee-8716-375355b663ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.205626, - "y": -2652.457058 - }, - "endPoint": { - "x": 307.120366, - "y": -2652.237505 - } - } - }, - { - "id": "3c9d573a-2648-592b-b38b-50a68e54a2e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.120366, - "y": -2652.237505 - }, - "endPoint": { - "x": 307.035208, - "y": -2652.152393 - } - } - }, - { - "id": "117cda6f-9dc0-548a-81bc-fab2eb43f1e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.035208, - "y": -2652.152393 - }, - "endPoint": { - "x": 306.985858, - "y": -2652.121068 - } - } - }, - { - "id": "b0dfdbce-2b98-5d4d-82e3-64be4a4e983f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.985858, - "y": -2652.121068 - }, - "endPoint": { - "x": 306.716843, - "y": -2652.129987 - } - } - }, - { - "id": "086cdacb-2ec3-57da-b0a0-d5ea5dfafcc5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.716843, - "y": -2652.129987 - }, - "endPoint": { - "x": 306.532986, - "y": -2652.10758 - } - } - }, - { - "id": "c35adc72-f61d-5683-9919-daada2c6456b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.532986, - "y": -2652.10758 - }, - "endPoint": { - "x": 306.479224, - "y": -2652.192747 - } - } - }, - { - "id": "57cc32d3-e706-5c1e-a1ff-339f2a463f65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.479224, - "y": -2652.192747 - }, - "endPoint": { - "x": 306.420947, - "y": -2652.210639 - } - } - }, - { - "id": "9348d093-ccb9-57bb-9080-261f2c449ea0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.420947, - "y": -2652.210639 - }, - "endPoint": { - "x": 306.100633, - "y": -2652.272024 - } - } - }, - { - "id": "29edc03b-e82f-5ba0-ab34-4d1973c2c6a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.100633, - "y": -2652.272024 - }, - "endPoint": { - "x": 305.907849, - "y": -2652.379543 - } - } - }, - { - "id": "c8a1dbb4-7ecc-5bf8-98f5-860ede679ee6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.907849, - "y": -2652.379543 - }, - "endPoint": { - "x": 305.495298, - "y": -2652.415382 - } - } - }, - { - "id": "fedf16c3-7866-5bed-843a-768413177490", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.495298, - "y": -2652.415382 - }, - "endPoint": { - "x": 304.988664, - "y": -2652.410923 - } - } - }, - { - "id": "62ac1b8d-b9d6-5bf4-8831-ff7ca42dbcfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.988664, - "y": -2652.410923 - }, - "endPoint": { - "x": 304.863185, - "y": -2652.312323 - } - } - }, - { - "id": "75618036-98a3-5f2e-9333-8f8cdffc9c6f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.863185, - "y": -2652.312323 - }, - "endPoint": { - "x": 304.603096, - "y": -2652.245158 - } - } - }, - { - "id": "8ba54f60-7ab8-50c3-b536-349079593e54", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.603096, - "y": -2652.245158 - }, - "endPoint": { - "x": 303.911373, - "y": -2652.236239 - } - } - }, - { - "id": "33ca67b4-59de-5306-83ae-ecb0f897e213", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.911373, - "y": -2652.236239 - }, - "endPoint": { - "x": 303.799745, - "y": -2652.241579 - } - } - }, - { - "id": "9022e41a-b4c2-55c3-acb6-79e8a0df054e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.799745, - "y": -2652.241579 - }, - "endPoint": { - "x": 303.534834, - "y": -2652.014705 - } - } - }, - { - "id": "54a2cb44-e8b2-592a-bbab-59243827f937", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.534834, - "y": -2652.014705 - }, - "endPoint": { - "x": 303.238527, - "y": -2651.460264 - } - } - }, - { - "id": "e8ad9067-92b7-56ad-9a3e-e6e072e18a04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.238527, - "y": -2651.460264 - }, - "endPoint": { - "x": 303.093452, - "y": -2650.993964 - } - } - }, - { - "id": "b7494555-088d-5634-86c5-6ac550370757", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.093452, - "y": -2650.993964 - }, - "endPoint": { - "x": 302.909287, - "y": -2650.195748 - } - } - }, - { - "id": "f67a9eb3-79c2-58b4-9bd8-45375af26cbd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.909287, - "y": -2650.195748 - }, - "endPoint": { - "x": 303.079499, - "y": -2648.815839 - } - } - }, - { - "id": "faed2ceb-bf68-5b55-82ad-14589ca8b0a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.079499, - "y": -2648.815839 - }, - "endPoint": { - "x": 303.33179, - "y": -2648.110167 - } - } - }, - { - "id": "bf9a4b91-11a1-56a0-936c-4778469bc887", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.33179, - "y": -2648.110167 - }, - "endPoint": { - "x": 303.483329, - "y": -2647.886211 - } - } - }, - { - "id": "de9a4784-5540-5998-bb79-094f17c8f056", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.483329, - "y": -2647.886211 - }, - "endPoint": { - "x": 303.506619, - "y": -2647.611716 - } - } - } - ] - }, - { - "id": "65c6ea83-6e4c-566b-a6a9-a717a47b9fe1", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "a4f241d3-5eba-5bb3-a280-cc39685b71de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.395844, - "y": -2649.691295 - }, - "endPoint": { - "x": 307.249025, - "y": -2649.544578 - } - } - }, - { - "id": "13a4616c-6536-5e68-bf75-6e0bd39f5f6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.249025, - "y": -2649.544578 - }, - "endPoint": { - "x": 307.258772, - "y": -2648.859992 - } - } - }, - { - "id": "4cffe42f-67ca-5e55-b7d3-d4249ff47fb4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.258772, - "y": -2648.859992 - }, - "endPoint": { - "x": 307.209832, - "y": -2647.969947 - } - } - }, - { - "id": "2cc72936-be97-5bc2-a774-19502575f3a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.209832, - "y": -2647.969947 - }, - "endPoint": { - "x": 307.072862, - "y": -2647.627681 - } - } - }, - { - "id": "34165500-bd6b-506a-a585-d0201a55b1fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.072862, - "y": -2647.627681 - }, - "endPoint": { - "x": 306.994477, - "y": -2647.471165 - } - } - }, - { - "id": "a340c4b3-a8ca-5737-a19d-eefb4039927f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.994477, - "y": -2647.471165 - }, - "endPoint": { - "x": 306.887158, - "y": -2647.441106 - } - } - }, - { - "id": "bdb2634c-84aa-5014-b4fc-b89975f8afad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.887158, - "y": -2647.441106 - }, - "endPoint": { - "x": 306.752856, - "y": -2647.417543 - } - } - }, - { - "id": "92ac6b53-f813-56e1-86b4-90cabc6cad34", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.752856, - "y": -2647.417543 - }, - "endPoint": { - "x": 306.571563, - "y": -2647.481075 - } - } - }, - { - "id": "e4b61144-2103-5699-b6fd-664f57d9a96a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.571563, - "y": -2647.481075 - }, - "endPoint": { - "x": 306.39499, - "y": -2647.575216 - } - } - }, - { - "id": "8e0dcb31-c4ce-57a4-a50e-f0f9454a6da8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.39499, - "y": -2647.575216 - }, - "endPoint": { - "x": 305.804737, - "y": -2647.597237 - } - } - }, - { - "id": "197588d8-813a-5d05-968a-64028424f64f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.804737, - "y": -2647.597237 - }, - "endPoint": { - "x": 305.122863, - "y": -2647.578409 - } - } - }, - { - "id": "9b800f52-ded9-5992-8218-8160ce72b763", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.122863, - "y": -2647.578409 - }, - "endPoint": { - "x": 304.866776, - "y": -2647.672495 - } - } - }, - { - "id": "4d726b6e-9767-5bcb-a906-4b9f726c1aa6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.866776, - "y": -2647.672495 - }, - "endPoint": { - "x": 304.685893, - "y": -2647.830607 - } - } - }, - { - "id": "3552a02d-3414-5167-937f-2ea9ef1227c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.685893, - "y": -2647.830607 - }, - "endPoint": { - "x": 304.441092, - "y": -2647.951064 - } - } - }, - { - "id": "b8e55da1-cc6a-5985-bded-2bfae628ac7d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.441092, - "y": -2647.951064 - }, - "endPoint": { - "x": 304.248924, - "y": -2648.222036 - } - } - }, - { - "id": "b212416e-9648-57e1-9273-baf4217d7074", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.248924, - "y": -2648.222036 - }, - "endPoint": { - "x": 304.20378, - "y": -2648.429091 - } - } - }, - { - "id": "5d2f2a31-5304-5c7b-8b3d-af8ebd9c1ed0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.20378, - "y": -2648.429091 - }, - "endPoint": { - "x": 303.992734, - "y": -2648.688832 - } - } - }, - { - "id": "649b6ab3-ac5e-5d21-b139-b442c5510dda", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.992734, - "y": -2648.688832 - }, - "endPoint": { - "x": 303.939998, - "y": -2648.775375 - } - } - }, - { - "id": "b59ec3c7-12b8-5544-a486-dec88c46eab4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.939998, - "y": -2648.775375 - }, - "endPoint": { - "x": 303.886749, - "y": -2649.12744 - } - } - }, - { - "id": "3e2b0df4-a008-5228-8f30-a91c3dc55ea5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.886749, - "y": -2649.12744 - }, - "endPoint": { - "x": 303.916913, - "y": -2649.477469 - } - } - }, - { - "id": "18392626-f70a-5ba5-88d1-2ba9385ea217", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.916913, - "y": -2649.477469 - }, - "endPoint": { - "x": 303.973445, - "y": -2649.744752 - } - } - }, - { - "id": "632c797a-aee5-58fc-bc38-bec8410fa8a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.973445, - "y": -2649.744752 - }, - "endPoint": { - "x": 303.954567, - "y": -2649.917894 - } - } - }, - { - "id": "e95388de-41bd-51d9-8a67-afc1b734aa6c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.954567, - "y": -2649.917894 - }, - "endPoint": { - "x": 304.093999, - "y": -2650.072208 - } - } - }, - { - "id": "f6f13292-491e-5d85-a660-d2fac3966fac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.093999, - "y": -2650.072208 - }, - "endPoint": { - "x": 304.357679, - "y": -2650.29633 - } - } - }, - { - "id": "205606bd-20e8-5d97-91c7-89b6cb193646", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.357679, - "y": -2650.29633 - }, - "endPoint": { - "x": 304.892631, - "y": -2650.458186 - } - } - }, - { - "id": "2dec909b-3129-57a3-ac3e-ecae8746ceac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.892631, - "y": -2650.458186 - }, - "endPoint": { - "x": 305.393622, - "y": -2650.522213 - } - } - }, - { - "id": "13791cb8-489e-50eb-b7aa-2e4936d666d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.393622, - "y": -2650.522213 - }, - "endPoint": { - "x": 305.838082, - "y": -2650.428072 - } - } - }, - { - "id": "8c9a52b0-dd7f-59b0-aa91-22f6468884d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.838082, - "y": -2650.428072 - }, - "endPoint": { - "x": 306.212466, - "y": -2650.390746 - } - } - }, - { - "id": "ded72394-e10e-5c4e-a75f-dec089ebdaf6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.212466, - "y": -2650.390746 - }, - "endPoint": { - "x": 306.461064, - "y": -2650.225091 - } - } - }, - { - "id": "3341dce7-ffd9-56e3-ad9a-adcc2dbae1cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.461064, - "y": -2650.225091 - }, - "endPoint": { - "x": 306.656925, - "y": -2650.078319 - } - } - }, - { - "id": "a70e2af0-2120-5c86-94e4-c3136bbe708f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.656925, - "y": -2650.078319 - }, - "endPoint": { - "x": 306.90183, - "y": -2650.104635 - } - } - }, - { - "id": "b631bbc2-5ad8-59ca-a12f-f9c6e63e4cad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.90183, - "y": -2650.104635 - }, - "endPoint": { - "x": 307.218245, - "y": -2650.082063 - } - } - }, - { - "id": "493cc9bd-f3e5-5c5c-8ebc-533f28957773", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.218245, - "y": -2650.082063 - }, - "endPoint": { - "x": 307.338799, - "y": -2649.886349 - } - } - }, - { - "id": "91136507-d597-5a65-8b45-0e44b6bf8a63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.338799, - "y": -2649.886349 - }, - "endPoint": { - "x": 307.387739, - "y": -2649.769636 - } - } - }, - { - "id": "95bfa046-6fb1-5e35-8ba4-030759e088b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.387739, - "y": -2649.769636 - }, - "endPoint": { - "x": 307.395844, - "y": -2649.691295 - } - } - } - ] - }, - { - "id": "83fd7f99-6169-524f-a915-e5c215adcd6c", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "6acba158-dd91-58b6-b84b-9ca54a38d9a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.654155, - "y": -2649.566435 - }, - "endPoint": { - "x": 306.821187, - "y": -2649.378703 - } - } - }, - { - "id": "d56aae40-2812-55c7-b299-f6adc1f7659c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.821187, - "y": -2649.378703 - }, - "endPoint": { - "x": 306.857712, - "y": -2649.044971 - } - } - }, - { - "id": "0219e0f3-abd9-5a65-8b89-b23da356953e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.857712, - "y": -2649.044971 - }, - "endPoint": { - "x": 306.810722, - "y": -2648.695658 - } - } - }, - { - "id": "5d74d12b-ee55-5a9a-94b9-c9a43c74acf5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.810722, - "y": -2648.695658 - }, - "endPoint": { - "x": 306.638355, - "y": -2648.328949 - } - } - }, - { - "id": "1ccd0fd8-a127-561e-9f0b-6a054ed2a1d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.638355, - "y": -2648.328949 - }, - "endPoint": { - "x": 306.262637, - "y": -2648.052582 - } - } - }, - { - "id": "41eb61cf-b218-5f47-bf15-25709d5f4e53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.262637, - "y": -2648.052582 - }, - "endPoint": { - "x": 306.00696, - "y": -2647.927446 - } - } - }, - { - "id": "3709ede8-7c08-57e4-ac2e-9560caf5f406", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.00696, - "y": -2647.927446 - }, - "endPoint": { - "x": 305.719888, - "y": -2647.963946 - } - } - }, - { - "id": "27d639e1-44f8-56d3-afff-32c86a5d900e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.719888, - "y": -2647.963946 - }, - "endPoint": { - "x": 305.469443, - "y": -2647.979581 - } - } - }, - { - "id": "3b10bfdc-0705-5f6b-ad3a-b6c09ce701e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.469443, - "y": -2647.979581 - }, - "endPoint": { - "x": 305.333807, - "y": -2648.083852 - } - } - }, - { - "id": "3e2c5f17-66cb-590e-957c-0535b66709b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.333807, - "y": -2648.083852 - }, - "endPoint": { - "x": 305.093725, - "y": -2648.250718 - } - } - }, - { - "id": "db8fa2f0-878d-5c32-9e3d-1d314a9ef8a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.093725, - "y": -2648.250718 - }, - "endPoint": { - "x": 304.81722, - "y": -2648.412354 - } - } - }, - { - "id": "40013c29-f0f3-5c5f-8b2f-fb3b765d0105", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.81722, - "y": -2648.412354 - }, - "endPoint": { - "x": 304.634491, - "y": -2648.584451 - } - } - }, - { - "id": "2d975485-1a8c-5332-a049-242fd704b5cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.634491, - "y": -2648.584451 - }, - "endPoint": { - "x": 304.498855, - "y": -2648.865993 - } - } - }, - { - "id": "10e57ac1-8d61-5a5b-bc2a-24d97520034e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.498855, - "y": -2648.865993 - }, - "endPoint": { - "x": 304.524915, - "y": -2649.147535 - } - } - }, - { - "id": "6c3aad76-e0d7-5329-b9b8-ef24ddc21be8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.524915, - "y": -2649.147535 - }, - "endPoint": { - "x": 304.618896, - "y": -2649.507362 - } - } - }, - { - "id": "a6894ec2-e418-5733-b28e-adeaebd9ad80", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.618896, - "y": -2649.507362 - }, - "endPoint": { - "x": 304.926796, - "y": -2649.747174 - } - } - }, - { - "id": "fd1768cd-b095-52ee-bed4-ee30c4ad180a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.926796, - "y": -2649.747174 - }, - "endPoint": { - "x": 305.208533, - "y": -2649.945311 - } - } - }, - { - "id": "29dea809-ef22-5dfd-9668-96be56db012f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.208533, - "y": -2649.945311 - }, - "endPoint": { - "x": 305.599949, - "y": -2649.924445 - } - } - }, - { - "id": "5c490d90-4bca-5511-bdbc-76bb8a3bc860", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.599949, - "y": -2649.924445 - }, - "endPoint": { - "x": 306.043485, - "y": -2649.929676 - } - } - }, - { - "id": "1c35b646-8edd-5bd2-a76d-930ee6dde6e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.043485, - "y": -2649.929676 - }, - "endPoint": { - "x": 306.330455, - "y": -2649.903635 - } - } - }, - { - "id": "f21b82a6-64a5-5e4b-bc1e-f3a228208a05", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.330455, - "y": -2649.903635 - }, - "endPoint": { - "x": 306.534012, - "y": -2649.80977 - } - } - }, - { - "id": "40d4d6be-74dd-5010-9829-494b2f378c83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.534012, - "y": -2649.80977 - }, - "endPoint": { - "x": 306.549607, - "y": -2649.674174 - } - } - }, - { - "id": "4ad824a7-7f42-5556-9a6a-eece2e7271e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.549607, - "y": -2649.674174 - }, - "endPoint": { - "x": 306.654155, - "y": -2649.566435 - } - } - } - ] - }, - { - "id": "90e85f1c-e357-54cc-bab5-5020ea3788cd", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "a6797c6c-d40c-5478-966f-a2c6463fb3dc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.654155, - "y": -2649.566435 - }, - "endPoint": { - "x": 306.821187, - "y": -2649.378703 - } - } - }, - { - "id": "86302678-d08e-5308-9668-4f865f221087", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.821187, - "y": -2649.378703 - }, - "endPoint": { - "x": 306.857712, - "y": -2649.044971 - } - } - }, - { - "id": "5aa264c6-f9ef-5635-bf83-d2e8dd2a7380", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.857712, - "y": -2649.044971 - }, - "endPoint": { - "x": 306.810722, - "y": -2648.695658 - } - } - }, - { - "id": "9837b261-9aae-5bb3-a2dc-59d004fa9549", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.810722, - "y": -2648.695658 - }, - "endPoint": { - "x": 306.638355, - "y": -2648.328949 - } - } - }, - { - "id": "7c1a04ed-4cf0-5fd0-a84d-2d4b0b61b577", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.638355, - "y": -2648.328949 - }, - "endPoint": { - "x": 306.262637, - "y": -2648.052582 - } - } - }, - { - "id": "09129829-1d70-5ae2-a229-d8d688bcb9ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.262637, - "y": -2648.052582 - }, - "endPoint": { - "x": 306.00696, - "y": -2647.927446 - } - } - }, - { - "id": "a3cb1b86-487c-5c13-b2dd-f6962dccb040", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.00696, - "y": -2647.927446 - }, - "endPoint": { - "x": 305.719888, - "y": -2647.963946 - } - } - }, - { - "id": "81493fee-bd91-5b87-abbd-543e90eb0237", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.719888, - "y": -2647.963946 - }, - "endPoint": { - "x": 305.469443, - "y": -2647.979581 - } - } - }, - { - "id": "aca6db27-12b4-5db3-a499-9fc235142fe8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.469443, - "y": -2647.979581 - }, - "endPoint": { - "x": 305.333807, - "y": -2648.083852 - } - } - }, - { - "id": "251c2184-22f1-5d02-9e49-fc2106a32c55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.333807, - "y": -2648.083852 - }, - "endPoint": { - "x": 305.093725, - "y": -2648.250718 - } - } - }, - { - "id": "ed93ed4d-d4a7-5cc6-a736-2ee7925c256d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.093725, - "y": -2648.250718 - }, - "endPoint": { - "x": 304.81722, - "y": -2648.412354 - } - } - }, - { - "id": "d5ca3a1a-45fd-5966-8e9e-d267dfccc504", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.81722, - "y": -2648.412354 - }, - "endPoint": { - "x": 304.634491, - "y": -2648.584451 - } - } - }, - { - "id": "57a269a6-e388-533a-a23d-091fe91f4788", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.634491, - "y": -2648.584451 - }, - "endPoint": { - "x": 304.498855, - "y": -2648.865993 - } - } - }, - { - "id": "3ed16156-ad33-54b2-a4d6-07e9b08f8223", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.498855, - "y": -2648.865993 - }, - "endPoint": { - "x": 304.524915, - "y": -2649.147535 - } - } - }, - { - "id": "c7d4f46c-fa70-57f6-8c58-8c53a7f60bca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.524915, - "y": -2649.147535 - }, - "endPoint": { - "x": 304.618896, - "y": -2649.507362 - } - } - }, - { - "id": "61397a32-f953-5aa7-af10-9cda96b92ca7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.618896, - "y": -2649.507362 - }, - "endPoint": { - "x": 304.926796, - "y": -2649.747174 - } - } - }, - { - "id": "a3a7efa9-076f-5512-8c2d-528eca294d9d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.926796, - "y": -2649.747174 - }, - "endPoint": { - "x": 305.208533, - "y": -2649.945311 - } - } - }, - { - "id": "2d863a0d-b02b-5c47-9eee-2e3a431e2d97", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.208533, - "y": -2649.945311 - }, - "endPoint": { - "x": 305.599949, - "y": -2649.924445 - } - } - }, - { - "id": "77803f1b-a813-5a78-ac2d-eeca9d777526", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.599949, - "y": -2649.924445 - }, - "endPoint": { - "x": 306.043485, - "y": -2649.929676 - } - } - }, - { - "id": "d01a2cf3-e10c-5807-9b01-195c61f938cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.043485, - "y": -2649.929676 - }, - "endPoint": { - "x": 306.330455, - "y": -2649.903635 - } - } - }, - { - "id": "616cf424-f843-597c-964f-3e2fe6c5a2a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.330455, - "y": -2649.903635 - }, - "endPoint": { - "x": 306.534012, - "y": -2649.80977 - } - } - }, - { - "id": "82f28129-aee5-5fde-baee-1e70441c4b85", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.534012, - "y": -2649.80977 - }, - "endPoint": { - "x": 306.549607, - "y": -2649.674174 - } - } - }, - { - "id": "43623142-c36d-5fca-bd80-ddc54e7b587b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.549607, - "y": -2649.674174 - }, - "endPoint": { - "x": 306.654155, - "y": -2649.566435 - } - } - } - ] - }, - { - "id": "9c33d574-82c9-5ded-ae50-79973c96d27d", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "d51bcfa8-dbd2-5e29-a3f9-4cf898cbf743", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.751623, - "y": -2649.579537 - }, - "endPoint": { - "x": 309.811438, - "y": -2648.891758 - } - } - }, - { - "id": "a50ab69f-5ae0-59dd-a62e-67909a3bf138", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.811438, - "y": -2648.891758 - }, - "endPoint": { - "x": 309.766603, - "y": -2648.29366 - } - } - }, - { - "id": "eed2d3b9-9c1b-5547-905a-f23135a10694", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.766603, - "y": -2648.29366 - }, - "endPoint": { - "x": 309.676726, - "y": -2648.02456 - } - } - }, - { - "id": "960925d3-fcc6-5d83-9b6f-2121308d56cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.676726, - "y": -2648.02456 - }, - "endPoint": { - "x": 309.497177, - "y": -2647.725511 - } - } - }, - { - "id": "d84d8d18-d2d5-5e2b-8633-2bb847b2e36d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.497177, - "y": -2647.725511 - }, - "endPoint": { - "x": 309.542116, - "y": -2647.48625 - } - } - }, - { - "id": "ab96dc3b-a56f-5a5a-9698-12627a55fa69", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.542116, - "y": -2647.48625 - }, - "endPoint": { - "x": 309.287772, - "y": -2647.276937 - } - } - }, - { - "id": "550697ac-ac80-584a-b2e5-68288c464981", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.287772, - "y": -2647.276937 - }, - "endPoint": { - "x": 308.928573, - "y": -2646.977888 - } - } - }, - { - "id": "add13abc-3d9a-5920-84c9-83e636ed0638", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.928573, - "y": -2646.977888 - }, - "endPoint": { - "x": 308.344989, - "y": -2647.097519 - } - } - }, - { - "id": "17cbbcc5-45b0-5daf-a14c-9ba1c046f17e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.344989, - "y": -2647.097519 - }, - "endPoint": { - "x": 308.225358, - "y": -2647.516199 - } - } - }, - { - "id": "f48a798e-8dce-5ade-86c9-a38bc5179697", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.225358, - "y": -2647.516199 - }, - "endPoint": { - "x": 308.210379, - "y": -2648.233872 - } - } - }, - { - "id": "0b5b548b-8f72-5f65-b6c8-5d3131f3cc03", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.210379, - "y": -2648.233872 - }, - "endPoint": { - "x": 308.175187, - "y": -2648.994817 - } - } - }, - { - "id": "0e5769e8-1a53-5444-8929-adb7efc9de17", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.175187, - "y": -2648.994817 - }, - "endPoint": { - "x": 308.152513, - "y": -2649.75323 - } - } - }, - { - "id": "06a322ef-5ee6-5f07-997a-e32f64b00b52", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.152513, - "y": -2649.75323 - }, - "endPoint": { - "x": 308.323546, - "y": -2650.147521 - } - } - }, - { - "id": "1b0e706b-c755-5845-8cbf-2644078e28d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.323546, - "y": -2650.147521 - }, - "endPoint": { - "x": 308.441945, - "y": -2650.200097 - } - } - }, - { - "id": "a88d9c46-0117-54bc-b6ed-ebfa953b80a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.441945, - "y": -2650.200097 - }, - "endPoint": { - "x": 308.678641, - "y": -2650.489291 - } - } - }, - { - "id": "889adaa3-3af0-5d3f-bc72-d4743aaa0175", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.678641, - "y": -2650.489291 - }, - "endPoint": { - "x": 309.139106, - "y": -2650.489291 - } - } - }, - { - "id": "42cf22d4-5c76-50f8-a0ad-4e22cbb5c222", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.139106, - "y": -2650.489291 - }, - "endPoint": { - "x": 309.481172, - "y": -2650.173836 - } - } - }, - { - "id": "14487888-f809-5d76-b398-7fc9b2be61e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.481172, - "y": -2650.173836 - }, - "endPoint": { - "x": 309.665337, - "y": -2649.77949 - } - } - }, - { - "id": "2ba58c17-a2a3-5d15-bc2e-87e670d4f68b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.665337, - "y": -2649.77949 - }, - "endPoint": { - "x": 309.751623, - "y": -2649.579537 - } - } - } - ] - }, - { - "id": "ffb2fb13-70e4-5661-b443-76e2470fcc4a", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "center": { - "x": 311.58219692558123, - "y": -2644.971199457894 - }, - "radius": 10.608872725901202 - } - }, - { - "id": "5551ab2b-d8d1-5ed4-bc0d-4eb878e2b150", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "16db497e-0e28-5505-86db-3fd8a23a038d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.95478, - "y": -2644.968337 - }, - "endPoint": { - "x": 322.896087, - "y": -2646.130677 - } - } - }, - { - "id": "39da6388-0136-52d0-ad4b-cb86e30eefc7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.896087, - "y": -2646.130677 - }, - "endPoint": { - "x": 322.723817, - "y": -2647.25944 - } - } - }, - { - "id": "6c5579a9-921b-543e-87ad-d4410e556ec8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.723817, - "y": -2647.25944 - }, - "endPoint": { - "x": 322.443685, - "y": -2648.348914 - } - } - }, - { - "id": "98806b01-60a1-53b6-b1b2-fb1e92372c11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.443685, - "y": -2648.348914 - }, - "endPoint": { - "x": 322.061405, - "y": -2649.393382 - } - } - }, - { - "id": "729381c3-7d9d-5e45-8bea-f7a6556bcef1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.061405, - "y": -2649.393382 - }, - "endPoint": { - "x": 321.582691, - "y": -2650.387131 - } - } - }, - { - "id": "56bec9e9-aabc-5a09-a2b1-6f7e366f0f3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.582691, - "y": -2650.387131 - }, - "endPoint": { - "x": 321.013258, - "y": -2651.324447 - } - } - }, - { - "id": "1a3c54e4-1cbf-5b8b-9477-595c518029b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.013258, - "y": -2651.324447 - }, - "endPoint": { - "x": 320.358819, - "y": -2652.199615 - } - } - }, - { - "id": "c0345948-ba17-5906-8d3d-7f8f2ed9011e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.358819, - "y": -2652.199615 - }, - "endPoint": { - "x": 319.62509, - "y": -2653.006921 - } - } - }, - { - "id": "3f9269c8-6c0a-527a-8bc0-886a53309a1c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.62509, - "y": -2653.006921 - }, - "endPoint": { - "x": 318.817784, - "y": -2653.74065 - } - } - }, - { - "id": "c764e213-8e46-5514-9211-0bcaad5574ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.817784, - "y": -2653.74065 - }, - "endPoint": { - "x": 317.942616, - "y": -2654.395088 - } - } - }, - { - "id": "e9fb8a3a-a895-51a3-aa21-e7e04eb72178", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.942616, - "y": -2654.395088 - }, - "endPoint": { - "x": 317.005301, - "y": -2654.964522 - } - } - }, - { - "id": "77b28bfd-dbbc-5992-b199-bf0df3cb4a67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.005301, - "y": -2654.964522 - }, - "endPoint": { - "x": 316.011551, - "y": -2655.443236 - } - } - }, - { - "id": "fcec020a-c37f-5fd3-8448-13ed823cf09f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.011551, - "y": -2655.443236 - }, - "endPoint": { - "x": 314.967083, - "y": -2655.825516 - } - } - }, - { - "id": "a30ba128-2785-501b-aaea-bb3238a0ed5d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.967083, - "y": -2655.825516 - }, - "endPoint": { - "x": 313.87761, - "y": -2656.105648 - } - } - }, - { - "id": "b971bba0-108f-5717-ad33-554e9ec121a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.87761, - "y": -2656.105648 - }, - "endPoint": { - "x": 312.748846, - "y": -2656.277918 - } - } - }, - { - "id": "b6dca54c-4e94-5631-916a-852c3e3acb91", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.748846, - "y": -2656.277918 - }, - "endPoint": { - "x": 311.586506, - "y": -2656.336611 - } - } - }, - { - "id": "d85d1904-c58d-5591-875a-addaeeb3af76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.586506, - "y": -2656.336611 - }, - "endPoint": { - "x": 310.424166, - "y": -2656.277918 - } - } - }, - { - "id": "b2a633b7-b95d-5a7d-9266-d5b3e800edab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.424166, - "y": -2656.277918 - }, - "endPoint": { - "x": 309.295402, - "y": -2656.105648 - } - } - }, - { - "id": "a7560e94-2922-5457-8ce1-a589575ac854", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.295402, - "y": -2656.105648 - }, - "endPoint": { - "x": 308.205929, - "y": -2655.825516 - } - } - }, - { - "id": "aad03529-8ff7-55b0-993c-b152c48d1f78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.205929, - "y": -2655.825516 - }, - "endPoint": { - "x": 307.161461, - "y": -2655.443236 - } - } - }, - { - "id": "cb5cb2c4-801c-5615-a6f8-927dbaf48bd3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.161461, - "y": -2655.443236 - }, - "endPoint": { - "x": 306.167712, - "y": -2654.964522 - } - } - }, - { - "id": "68b340e2-f326-5cbf-959c-afc152e3dce4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.167712, - "y": -2654.964522 - }, - "endPoint": { - "x": 305.230396, - "y": -2654.395088 - } - } - }, - { - "id": "f4f43523-60a3-5584-8534-774f6f3ff86a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.230396, - "y": -2654.395088 - }, - "endPoint": { - "x": 304.355228, - "y": -2653.74065 - } - } - }, - { - "id": "30edb4b9-bce2-5061-a05e-c59fa52195ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.355228, - "y": -2653.74065 - }, - "endPoint": { - "x": 303.547922, - "y": -2653.006921 - } - } - }, - { - "id": "60a7999e-38d5-5f81-839b-336f4c59342e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.547922, - "y": -2653.006921 - }, - "endPoint": { - "x": 302.814193, - "y": -2652.199615 - } - } - }, - { - "id": "a9436a08-c007-588b-9be1-0cb12968c526", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.814193, - "y": -2652.199615 - }, - "endPoint": { - "x": 302.159755, - "y": -2651.324447 - } - } - }, - { - "id": "dc9bdd13-5b64-53cd-b6a6-35315b8737ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.159755, - "y": -2651.324447 - }, - "endPoint": { - "x": 301.590321, - "y": -2650.387131 - } - } - }, - { - "id": "242290a7-3e7c-5fb9-afdb-0dc91a2a8d7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.590321, - "y": -2650.387131 - }, - "endPoint": { - "x": 301.111607, - "y": -2649.393382 - } - } - }, - { - "id": "6cfe54fd-45e5-5bbf-9e99-b1124ac9d7cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.111607, - "y": -2649.393382 - }, - "endPoint": { - "x": 300.729327, - "y": -2648.348914 - } - } - }, - { - "id": "0924bb71-916c-582d-90a8-71ddc8aa9c4f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.729327, - "y": -2648.348914 - }, - "endPoint": { - "x": 300.449195, - "y": -2647.25944 - } - } - }, - { - "id": "c3c570c7-305e-59ed-b19f-b75ba85f231b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.449195, - "y": -2647.25944 - }, - "endPoint": { - "x": 300.276925, - "y": -2646.130677 - } - } - }, - { - "id": "bea1be8a-9c15-52e3-bed8-448921aac3d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.276925, - "y": -2646.130677 - }, - "endPoint": { - "x": 300.218232, - "y": -2644.968337 - } - } - }, - { - "id": "d998d63d-5916-57e0-9f11-da1c97eec21e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.218232, - "y": -2644.968337 - }, - "endPoint": { - "x": 300.276925, - "y": -2643.805997 - } - } - }, - { - "id": "de155be1-9dd3-5ab1-9439-908ff5dbb133", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.276925, - "y": -2643.805997 - }, - "endPoint": { - "x": 300.449195, - "y": -2642.677233 - } - } - }, - { - "id": "4b731d9d-36ee-5f0f-a9e2-9d76e126d717", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.449195, - "y": -2642.677233 - }, - "endPoint": { - "x": 300.729327, - "y": -2641.58776 - } - } - }, - { - "id": "ecb4b0c0-6de0-597c-aeae-65b93c93b18b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.729327, - "y": -2641.58776 - }, - "endPoint": { - "x": 301.111607, - "y": -2640.543291 - } - } - }, - { - "id": "264d4a10-596a-5ea2-b288-a2134bd37be8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.111607, - "y": -2640.543291 - }, - "endPoint": { - "x": 301.590321, - "y": -2639.549542 - } - } - }, - { - "id": "4a6a8303-79e0-5c69-8fe3-9e202769d03e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.590321, - "y": -2639.549542 - }, - "endPoint": { - "x": 302.159755, - "y": -2638.612226 - } - } - }, - { - "id": "ac5e649e-6dba-56af-9b9d-b8df77dfa2a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.159755, - "y": -2638.612226 - }, - "endPoint": { - "x": 302.814193, - "y": -2637.737059 - } - } - }, - { - "id": "770533ab-cbca-533e-9b9c-fee48f09e9ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.814193, - "y": -2637.737059 - }, - "endPoint": { - "x": 303.547922, - "y": -2636.929753 - } - } - }, - { - "id": "5ddd1ee5-9040-5641-95ca-3df5fbf9563f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 303.547922, - "y": -2636.929753 - }, - "endPoint": { - "x": 304.355228, - "y": -2636.196024 - } - } - }, - { - "id": "dd28e8ff-3d53-5aab-8440-c8c73d663af3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.355228, - "y": -2636.196024 - }, - "endPoint": { - "x": 305.230396, - "y": -2635.541585 - } - } - }, - { - "id": "9aaf1bd8-c686-5d95-8112-9e804f1c256c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.230396, - "y": -2635.541585 - }, - "endPoint": { - "x": 306.167712, - "y": -2634.972152 - } - } - }, - { - "id": "97b0c5cf-2020-5e42-b22a-cc018d69ac7a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 306.167712, - "y": -2634.972152 - }, - "endPoint": { - "x": 307.161461, - "y": -2634.493438 - } - } - }, - { - "id": "9c67c9e0-5f27-54f2-8bb1-972994e83a06", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.161461, - "y": -2634.493438 - }, - "endPoint": { - "x": 308.205929, - "y": -2634.111158 - } - } - }, - { - "id": "7ee0770c-3286-57b3-a78d-58472fa9c359", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.205929, - "y": -2634.111158 - }, - "endPoint": { - "x": 309.295402, - "y": -2633.831025 - } - } - }, - { - "id": "a37c0da0-8b01-5740-931b-c78a3ada665c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.295402, - "y": -2633.831025 - }, - "endPoint": { - "x": 310.424166, - "y": -2633.658756 - } - } - }, - { - "id": "2f5d91bb-42e0-530b-88c6-7269cefeac88", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.424166, - "y": -2633.658756 - }, - "endPoint": { - "x": 311.586506, - "y": -2633.600062 - } - } - }, - { - "id": "90532d56-1d66-5964-9472-fc02efd81865", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.586506, - "y": -2633.600062 - }, - "endPoint": { - "x": 312.748846, - "y": -2633.658756 - } - } - }, - { - "id": "18bdf91e-6601-5b0b-ad77-87044aa09a3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.748846, - "y": -2633.658756 - }, - "endPoint": { - "x": 313.87761, - "y": -2633.831025 - } - } - }, - { - "id": "44424fe8-86b4-5e17-b58f-9fb67534c735", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.87761, - "y": -2633.831025 - }, - "endPoint": { - "x": 314.967083, - "y": -2634.111158 - } - } - }, - { - "id": "e6480c30-f50e-506d-bfb6-46cd58d35bd2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.967083, - "y": -2634.111158 - }, - "endPoint": { - "x": 316.011551, - "y": -2634.493438 - } - } - }, - { - "id": "370ae28a-9d7c-5fe6-a9a8-4b9de671a45a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 316.011551, - "y": -2634.493438 - }, - "endPoint": { - "x": 317.005301, - "y": -2634.972152 - } - } - }, - { - "id": "a3beabce-0859-550f-a3fe-70c7d711463a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.005301, - "y": -2634.972152 - }, - "endPoint": { - "x": 317.942616, - "y": -2635.541585 - } - } - }, - { - "id": "58aa6b6e-6a59-580f-b085-b7238e7878a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.942616, - "y": -2635.541585 - }, - "endPoint": { - "x": 318.817784, - "y": -2636.196024 - } - } - }, - { - "id": "bef81f7e-2d0d-5c26-8e69-1da9b206a2ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 318.817784, - "y": -2636.196024 - }, - "endPoint": { - "x": 319.62509, - "y": -2636.929753 - } - } - }, - { - "id": "c87ead8d-24dc-5c30-bd18-9ecd329a8405", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.62509, - "y": -2636.929753 - }, - "endPoint": { - "x": 320.358819, - "y": -2637.737059 - } - } - }, - { - "id": "6b1f2906-9264-5e99-9376-bb6a5dd55696", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.358819, - "y": -2637.737059 - }, - "endPoint": { - "x": 321.013258, - "y": -2638.612226 - } - } - }, - { - "id": "1570bdb3-1b0e-565f-b712-6e36301121d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.013258, - "y": -2638.612226 - }, - "endPoint": { - "x": 321.582691, - "y": -2639.549542 - } - } - }, - { - "id": "dc5936ca-274f-57ff-a291-0113cd88eb40", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.582691, - "y": -2639.549542 - }, - "endPoint": { - "x": 322.061405, - "y": -2640.543291 - } - } - }, - { - "id": "5b9ae5ff-a73b-5534-96c8-c0f5250ea810", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.061405, - "y": -2640.543291 - }, - "endPoint": { - "x": 322.443685, - "y": -2641.58776 - } - } - }, - { - "id": "507c367a-6b63-5a3d-b80d-3f285e856bde", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.443685, - "y": -2641.58776 - }, - "endPoint": { - "x": 322.723817, - "y": -2642.677233 - } - } - }, - { - "id": "f27a079d-194c-5bb7-825b-18feeafbf53b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.723817, - "y": -2642.677233 - }, - "endPoint": { - "x": 322.896087, - "y": -2643.805997 - } - } - }, - { - "id": "eccd217f-4c03-5723-9b4e-29dedbfcba20", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.896087, - "y": -2643.805997 - }, - "endPoint": { - "x": 322.95478, - "y": -2644.968337 - } - } - } - ] - }, - { - "id": "55f97ec3-9d68-5508-930e-b9f1ba649c28", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "308ecc35-02ae-5eca-8b6f-15d278b1722e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.19107, - "y": -2644.971199 - }, - "endPoint": { - "x": 322.136297, - "y": -2643.886504 - } - } - }, - { - "id": "3dd80ead-0bbe-5b98-bdf6-7d283600364b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.136297, - "y": -2643.886504 - }, - "endPoint": { - "x": 321.975535, - "y": -2642.833142 - } - } - }, - { - "id": "d597f0fa-cbce-54c3-b767-dd7f132e12b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.975535, - "y": -2642.833142 - }, - "endPoint": { - "x": 321.714116, - "y": -2641.816445 - } - } - }, - { - "id": "02fec817-2e2e-51db-bcd0-ce340c9c95b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.714116, - "y": -2641.816445 - }, - "endPoint": { - "x": 321.357372, - "y": -2640.841747 - } - } - }, - { - "id": "9ac5df20-e041-5424-a63b-2d8e5e5dc83b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.357372, - "y": -2640.841747 - }, - "endPoint": { - "x": 320.379241, - "y": -2639.039678 - } - } - }, - { - "id": "47d4f16e-0b57-5832-9103-7bc25c48d027", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.379241, - "y": -2639.039678 - }, - "endPoint": { - "x": 319.083803, - "y": -2637.469594 - } - } - }, - { - "id": "e2b4fb47-d37e-5a67-9789-1cefb670cad6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.083803, - "y": -2637.469594 - }, - "endPoint": { - "x": 317.513719, - "y": -2636.174156 - } - } - }, - { - "id": "bcb69be2-fa1b-5c7e-a196-d2ab662d2385", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.513719, - "y": -2636.174156 - }, - "endPoint": { - "x": 315.711649, - "y": -2635.196025 - } - } - }, - { - "id": "a16a442b-feba-5e76-bfe6-ec865e969dfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.711649, - "y": -2635.196025 - }, - "endPoint": { - "x": 314.736951, - "y": -2634.839281 - } - } - }, - { - "id": "60f8304e-37c7-56fd-aa7f-1eb82ec3334f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.736951, - "y": -2634.839281 - }, - "endPoint": { - "x": 313.720255, - "y": -2634.577861 - } - } - }, - { - "id": "9af41f5f-4ed1-535e-9b2a-f501af4fd1be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.720255, - "y": -2634.577861 - }, - "endPoint": { - "x": 312.666893, - "y": -2634.417099 - } - } - }, - { - "id": "3fe343fb-abef-54c2-8dc9-2a3adbd82a3a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.666893, - "y": -2634.417099 - }, - "endPoint": { - "x": 311.582197, - "y": -2634.362327 - } - } - }, - { - "id": "50900898-6d70-5383-b32c-0605d2de77b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.582197, - "y": -2634.362327 - }, - "endPoint": { - "x": 310.497501, - "y": -2634.417099 - } - } - }, - { - "id": "8d53b1ab-2791-5430-9071-dd1d63e47f50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.497501, - "y": -2634.417099 - }, - "endPoint": { - "x": 309.444139, - "y": -2634.577861 - } - } - }, - { - "id": "5994506c-2c76-5e7c-bb8e-b853b617287b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.444139, - "y": -2634.577861 - }, - "endPoint": { - "x": 308.427443, - "y": -2634.839281 - } - } - }, - { - "id": "731d3a6f-f6f0-5c61-8a65-85c57bd0236b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.427443, - "y": -2634.839281 - }, - "endPoint": { - "x": 307.452745, - "y": -2635.196025 - } - } - }, - { - "id": "3b449876-ed1e-56c0-829c-03125da1e809", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.452745, - "y": -2635.196025 - }, - "endPoint": { - "x": 305.650675, - "y": -2636.174156 - } - } - }, - { - "id": "bfa187d3-d25b-5969-94be-9b76a58bf909", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.650675, - "y": -2636.174156 - }, - "endPoint": { - "x": 304.080591, - "y": -2637.469594 - } - } - }, - { - "id": "6b34fb39-558c-5fd6-8a01-946e47ae2003", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.080591, - "y": -2637.469594 - }, - "endPoint": { - "x": 302.785153, - "y": -2639.039678 - } - } - }, - { - "id": "bfdb024b-07c8-5216-97fd-a046e1199c1b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.785153, - "y": -2639.039678 - }, - "endPoint": { - "x": 301.807022, - "y": -2640.841747 - } - } - }, - { - "id": "092284b7-c39a-5fde-9752-0790715c6844", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.807022, - "y": -2640.841747 - }, - "endPoint": { - "x": 301.450278, - "y": -2641.816445 - } - } - }, - { - "id": "93b75d17-e7de-57a4-87f6-b91b38895336", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.450278, - "y": -2641.816445 - }, - "endPoint": { - "x": 301.188859, - "y": -2642.833142 - } - } - }, - { - "id": "cc6eff23-29e8-52f8-afdd-ec114cea4c62", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.188859, - "y": -2642.833142 - }, - "endPoint": { - "x": 301.028097, - "y": -2643.886504 - } - } - }, - { - "id": "c89a6d70-4e9f-568b-9f6d-7cf867b64210", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.028097, - "y": -2643.886504 - }, - "endPoint": { - "x": 300.973324, - "y": -2644.971199 - } - } - }, - { - "id": "95081a27-7678-55d0-a4d8-6681f71942c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 300.973324, - "y": -2644.971199 - }, - "endPoint": { - "x": 301.028097, - "y": -2646.055895 - } - } - }, - { - "id": "e0c453f6-2047-51f9-9c75-fc6cb9d7d37a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.028097, - "y": -2646.055895 - }, - "endPoint": { - "x": 301.188859, - "y": -2647.109257 - } - } - }, - { - "id": "77b615de-a87c-5be6-bf64-a45bdb892866", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.188859, - "y": -2647.109257 - }, - "endPoint": { - "x": 301.450278, - "y": -2648.125954 - } - } - }, - { - "id": "b11e26cf-8593-5dde-b969-0f25858c2d2f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.450278, - "y": -2648.125954 - }, - "endPoint": { - "x": 301.807022, - "y": -2649.100651 - } - } - }, - { - "id": "02f9da16-8041-53ec-8be5-fc7cf429990f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 301.807022, - "y": -2649.100651 - }, - "endPoint": { - "x": 302.785153, - "y": -2650.902721 - } - } - }, - { - "id": "cb0d39d4-c5ae-5135-b8e0-7c7195f01145", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 302.785153, - "y": -2650.902721 - }, - "endPoint": { - "x": 304.080591, - "y": -2652.472805 - } - } - }, - { - "id": "5087dac6-5fdd-5e3e-9c8b-83553bb549e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 304.080591, - "y": -2652.472805 - }, - "endPoint": { - "x": 305.650675, - "y": -2653.768243 - } - } - }, - { - "id": "528fe9c0-f124-5dcf-8bb1-e708c6928b81", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 305.650675, - "y": -2653.768243 - }, - "endPoint": { - "x": 307.452745, - "y": -2654.746374 - } - } - }, - { - "id": "150b2104-40ab-5a61-a5e4-de6d432f1a9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 307.452745, - "y": -2654.746374 - }, - "endPoint": { - "x": 308.427443, - "y": -2655.103118 - } - } - }, - { - "id": "c9409827-e5b2-5184-abde-a64a67163ea8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 308.427443, - "y": -2655.103118 - }, - "endPoint": { - "x": 309.444139, - "y": -2655.364538 - } - } - }, - { - "id": "50b72592-f58a-5666-87ae-538ab40e89ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 309.444139, - "y": -2655.364538 - }, - "endPoint": { - "x": 310.497501, - "y": -2655.5253 - } - } - }, - { - "id": "3b5bedc8-ab1e-55e4-b84a-994557cf9edf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 310.497501, - "y": -2655.5253 - }, - "endPoint": { - "x": 311.582197, - "y": -2655.580072 - } - } - }, - { - "id": "8ee10983-ab04-5058-af3d-9901f3ee670b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 311.582197, - "y": -2655.580072 - }, - "endPoint": { - "x": 312.666893, - "y": -2655.5253 - } - } - }, - { - "id": "dd43f9ef-5656-5e53-a1b4-a14ccef1b5f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 312.666893, - "y": -2655.5253 - }, - "endPoint": { - "x": 313.720255, - "y": -2655.364538 - } - } - }, - { - "id": "ddec37c2-a140-5f63-8f8c-e9a23bb5653d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 313.720255, - "y": -2655.364538 - }, - "endPoint": { - "x": 314.736951, - "y": -2655.103118 - } - } - }, - { - "id": "76947d64-bbc6-50d0-8dd4-8cf69cb5db3b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 314.736951, - "y": -2655.103118 - }, - "endPoint": { - "x": 315.711649, - "y": -2654.746374 - } - } - }, - { - "id": "208a90a6-3b21-5e09-a736-4beb9ad81e99", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 315.711649, - "y": -2654.746374 - }, - "endPoint": { - "x": 317.513719, - "y": -2653.768243 - } - } - }, - { - "id": "880c8c11-dddf-5584-98ba-d03b9e24549a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 317.513719, - "y": -2653.768243 - }, - "endPoint": { - "x": 319.083803, - "y": -2652.472805 - } - } - }, - { - "id": "ab628bb8-663f-5465-a16b-1b38747caed0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 319.083803, - "y": -2652.472805 - }, - "endPoint": { - "x": 320.379241, - "y": -2650.902721 - } - } - }, - { - "id": "5b3d88b9-cdd2-570e-b5c6-f43177a879da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 320.379241, - "y": -2650.902721 - }, - "endPoint": { - "x": 321.357372, - "y": -2649.100651 - } - } - }, - { - "id": "dce76de9-82dd-590f-85c3-5feb58a3d419", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.357372, - "y": -2649.100651 - }, - "endPoint": { - "x": 321.714116, - "y": -2648.125954 - } - } - }, - { - "id": "26d91c9a-39aa-56a4-ba7c-d0d2dbdf46d4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.714116, - "y": -2648.125954 - }, - "endPoint": { - "x": 321.975535, - "y": -2647.109257 - } - } - }, - { - "id": "93153fb7-e538-5bf7-8d36-63f922da806e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 321.975535, - "y": -2647.109257 - }, - "endPoint": { - "x": 322.136297, - "y": -2646.055895 - } - } - }, - { - "id": "de782f1c-9cab-56d3-8753-0cb8ca47a52e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 322.136297, - "y": -2646.055895 - }, - "endPoint": { - "x": 322.19107, - "y": -2644.971199 - } - } - } - ] - }, - { - "id": "9bf3f763-0ba7-5d16-81fc-0eb57ae2263e", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "center": { - "x": 311.58650608927564, - "y": -2644.9683366917816 - }, - "radius": 11.368274263557154 - } - }, - { - "id": "a65e4f91-90bd-56f2-8461-e5da3ca4cc86", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.9145661734724, - "y": -2099.072176031947 - }, - "endPoint": { - "x": -13.86008171385826, - "y": -2099.072176031947 - } - } - }, - { - "id": "5906105c-a360-5f27-8486-811a47851d00", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.9274769714898, - "y": -2100.059265233813 - }, - "endPoint": { - "x": -12.87299251205029, - "y": -2100.059265233813 - } - } - }, - { - "id": "c9d6dcf6-7ca7-5400-bce1-3a7b70911026", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "85829869-579f-5ba2-a355-78722a6ded78", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.914566, - "y": -2099.072176 - }, - "endPoint": { - "x": 755.927477, - "y": -2100.059265 - } - } - }, - { - "id": "a9904a1a-c66a-5b44-8418-38fecea0bedf", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.927477, - "y": -2100.059265 - }, - "endPoint": { - "x": -12.872993, - "y": -2100.059265 - } - } - }, - { - "id": "18f9a28f-320d-5996-a26b-fe8c6b93b3e2", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -12.872993, - "y": -2100.059265 - }, - "endPoint": { - "x": -13.860082, - "y": -2099.072176 - } - } - }, - { - "id": "eee7a234-818e-5751-892d-f04a4d490a89", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -13.860082, - "y": -2099.072176 - }, - "endPoint": { - "x": 756.914566, - "y": -2099.072176 - } - } - } - ] - }, - { - "id": "2f484bc5-2163-5c5b-9c0b-46395c6081ba", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "8e362635-bb0d-5489-ba94-aa9c2010f8ae", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -13.860082, - "y": -2099.072176 - }, - "endPoint": { - "x": -12.872993, - "y": -2100.059265 - } - } - }, - { - "id": "25e36b47-e3e9-5729-96e1-9f596955167c", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -12.872993, - "y": -2100.059265 - }, - "endPoint": { - "x": -12.872993, - "y": -2652.829218 - } - } - }, - { - "id": "03188561-3165-528d-9c92-43d2f72cec82", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -12.872993, - "y": -2652.829218 - }, - "endPoint": { - "x": -13.860082, - "y": -2653.816307 - } - } - }, - { - "id": "0cb71c4a-6e54-5381-96be-f840d0f3ab39", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -13.860082, - "y": -2653.816307 - }, - "endPoint": { - "x": -13.860082, - "y": -2099.072176 - } - } - } - ] - }, - { - "id": "c24fa025-d7b9-5b75-9f06-5ff6e4285344", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -13.86008171385826, - "y": -2099.072176031947 - }, - "endPoint": { - "x": -13.86008171385826, - "y": -2653.816307487378 - } - } - }, - { - "id": "2e3e2d67-48a9-5eb4-930f-b1ea7656ee93", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -12.87299251205029, - "y": -2100.059265233813 - }, - "endPoint": { - "x": -12.87299251205029, - "y": -2652.8292182854534 - } - } - }, - { - "id": "7c297142-47eb-55cf-924e-42d87be474c3", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "530f259d-e075-5172-a98a-381f60f8f77a", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.914566, - "y": -2653.816307 - }, - "endPoint": { - "x": 755.927477, - "y": -2652.829218 - } - } - }, - { - "id": "0e0b3d4c-e429-56f7-962a-af1fbe4628d0", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.927477, - "y": -2652.829218 - }, - "endPoint": { - "x": 755.927477, - "y": -2100.059265 - } - } - }, - { - "id": "e91cae7c-049e-57de-9939-baeac068d148", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.927477, - "y": -2100.059265 - }, - "endPoint": { - "x": 756.914566, - "y": -2099.072176 - } - } - }, - { - "id": "e365c3e3-1591-5bd9-ab12-2b37a5d3eb79", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.914566, - "y": -2099.072176 - }, - "endPoint": { - "x": 756.914566, - "y": -2653.816307 - } - } - } - ] - }, - { - "id": "8958e0f4-44f3-54e4-b95d-bad3de701ccf", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.9145661734724, - "y": -2099.072176031947 - }, - "endPoint": { - "x": 756.9145661734724, - "y": -2653.816307487378 - } - } - }, - { - "id": "f5fa8fba-35e3-5d37-aa27-c7957d586e6f", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.9274769714898, - "y": -2100.059265233813 - }, - "endPoint": { - "x": 755.9274769714898, - "y": -2652.8292182854534 - } - } - }, - { - "id": "cdb5f220-8a72-5fcf-8b5b-1494c8f3b2b8", - "type": "PolyLine", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": null, - "children": [ - { - "id": "271bf8de-e324-51db-b2a9-60208ef16f1c", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": -55.372771, - "y": -2671.444283 - }, - "endPoint": { - "x": 785.627321, - "y": -2671.444283 - } - } - }, - { - "id": "ccbc7854-7e02-5e95-9d36-662ecea8bdf7", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": 785.627321, - "y": -2671.444283 - }, - "endPoint": { - "x": 785.627321, - "y": -2079.444259 - } - } - }, - { - "id": "e188e760-a43e-595a-9317-7012f1fbd2ab", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": 785.627321, - "y": -2079.444259 - }, - "endPoint": { - "x": -55.372771, - "y": -2079.444259 - } - } - }, - { - "id": "0f920bb4-81af-572e-899b-93df2ce53cc1", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": -55.372771, - "y": -2079.444259 - }, - "endPoint": { - "x": -55.372771, - "y": -2671.444283 - } - } - } - ] - }, - { - "id": "ac41b8fa-7464-52ce-b9a9-61272b6b6106", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.9274910699098, - "y": -2623.216537943474 - }, - "endPoint": { - "x": -13.86006203455195, - "y": -2623.216537943474 - } - } - }, - { - "id": "d7babc1a-7a22-5ec8-bacf-49bacaa37595", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.9145802647361, - "y": -2653.8163029798893 - }, - "endPoint": { - "x": -13.86006203455195, - "y": -2653.816302979882 - } - } - }, - { - "id": "8a5eaf86-d17c-5b68-9d5d-ecb3bc011428", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.9274910699098, - "y": -2652.829213785121 - }, - "endPoint": { - "x": -13.86006203455195, - "y": -2652.829213785121 - } - } - }, - { - "id": "8a2ee8bd-89bc-584d-993d-09c932193821", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "5a8dde13-f7e8-5791-b71f-c581ac4e6d2f", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -13.860062, - "y": -2653.816303 - }, - "endPoint": { - "x": -12.872973, - "y": -2652.829214 - } - } - }, - { - "id": "d623d6f6-a447-5a89-ad89-65a61d61b74f", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -12.872973, - "y": -2652.829214 - }, - "endPoint": { - "x": 755.927491, - "y": -2652.829214 - } - } - }, - { - "id": "d6bbe337-bc8f-5842-8287-08c378860c47", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.927491, - "y": -2652.829214 - }, - "endPoint": { - "x": 756.91458, - "y": -2653.816303 - } - } - }, - { - "id": "36568733-d27d-56b9-a1ca-81d4ac317a55", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.91458, - "y": -2653.816303 - }, - "endPoint": { - "x": -13.860062, - "y": -2653.816303 - } - } - } - ] - }, - { - "id": "a8e57900-a7d1-52f0-8123-c3a81d74b276", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "d4a4c77e-e7bc-5f86-83a1-bc39bf86d3da", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 32.66503, - "y": -2628.9515 - }, - "endPoint": { - "x": 61.416837, - "y": -2628.9515 - } - } - } - ] - }, - { - "id": "2c9df5a0-12d4-5e77-84e8-3ec6b937e69f", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.9274911004318, - "y": -2623.216537943474 - }, - "endPoint": { - "x": -13.86006200403022, - "y": -2623.216537943474 - } - } - }, - { - "id": "48d1e621-3d36-56f7-8176-a08992de9c8b", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.914580295258, - "y": -2653.8163029798893 - }, - "endPoint": { - "x": -13.86006200403022, - "y": -2653.816302979882 - } - } - }, - { - "id": "4c0da4a3-160e-5f9a-a3b0-ce7a56640151", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.9274911004318, - "y": -2652.829213785121 - }, - "endPoint": { - "x": -13.86006200403022, - "y": -2652.829213785121 - } - } - }, - { - "id": "5e6cf59d-6d47-549c-9af9-894a626db878", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "32ed84d6-9fea-511a-8235-bdb18b935201", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -13.860062, - "y": -2653.816303 - }, - "endPoint": { - "x": -12.872973, - "y": -2652.829214 - } - } - }, - { - "id": "68d500f2-ce8a-56cc-b001-7b5f82f16803", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": -12.872973, - "y": -2652.829214 - }, - "endPoint": { - "x": 755.927491, - "y": -2652.829214 - } - } - }, - { - "id": "b5644836-0a56-5c61-9355-1d5a135dd048", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.927491, - "y": -2652.829214 - }, - "endPoint": { - "x": 756.91458, - "y": -2653.816303 - } - } - }, - { - "id": "c79d2199-df9c-54e5-bc69-7d37652a6e77", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 756.91458, - "y": -2653.816303 - }, - "endPoint": { - "x": -13.860062, - "y": -2653.816303 - } - } - } - ] - }, - { - "id": "392a4643-ee49-5c5a-8afe-ba2c536009cc", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "그루터기 ENG", - "basePoint": { - "x": 33.833734, - "y": -2638.734019 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 7.0615, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "594521a1-8264-5b86-bbe1-54753a693342", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "경북 성주군 선남면 성주로 4200", - "basePoint": { - "x": 34.115815, - "y": -2644.882726 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.623, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "29a25fb9-cd08-5242-aad9-bdd3612865f6", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "TEL. 053-583-7883", - "basePoint": { - "x": 34.734639, - "y": -2650.036712 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.623, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6edc56f4-2de0-5eb8-a9a1-ed1f476661c0", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "FAX. 053-583-7886", - "basePoint": { - "x": 70.872888, - "y": -2649.664539 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.623, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ab7f50a7-8d92-503b-880a-5f1d0febb364", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "산림설계,감리,산림조사", - "basePoint": { - "x": 33.690241, - "y": -2628.069603 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.4212, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1dfe6f19-e9ea-54d1-afec-b987dc1cae63", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "b5110277-3f68-5e84-ad6b-d4a745ec5b20", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 33.652119, - "y": -2628.9515 - }, - "endPoint": { - "x": 69.892732, - "y": -2628.9515 - } - } - } - ] - }, - { - "id": "a9482750-8a32-541d-8c96-2395c2ac829b", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "\"함께하는숲, 함께하는미래\"", - "basePoint": { - "x": -6.480434, - "y": -2648.096263 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.2137, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "959cf544-dbc8-5318-a3d7-58a42b3f94b7", - "type": "PolyLine", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "c66a4a80-9062-56c8-bd22-1ce1cfa569bf", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 0.852558, - "y": -2643.525565 - }, - "endPoint": { - "x": -2.626126, - "y": -2643.525565 - } - } - }, - { - "id": "3c1f7557-2155-5a8f-a8ca-d9dff9eafd30", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -2.626126, - "y": -2643.525565 - }, - "endPoint": { - "x": -2.941346, - "y": -2643.503059 - } - } - }, - { - "id": "d6f4b8ea-3aa1-5482-9a23-273cab52dec2", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -2.941346, - "y": -2643.503059 - }, - "endPoint": { - "x": -3.124374, - "y": -2643.328086 - } - } - }, - { - "id": "9a5b5374-319a-5f55-bad2-51a63c0f9af5", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.124374, - "y": -2643.328086 - }, - "endPoint": { - "x": -3.290571, - "y": -2643.095513 - } - } - }, - { - "id": "fa703445-0aa0-5925-81bd-ca9ceeceb60a", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.290571, - "y": -2643.095513 - }, - "endPoint": { - "x": -3.512168, - "y": -2642.741117 - } - } - }, - { - "id": "e9451539-3fbd-525e-bfb6-dba11b75648d", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.512168, - "y": -2642.741117 - }, - "endPoint": { - "x": -3.639585, - "y": -2642.525156 - } - } - }, - { - "id": "3c78f841-24e1-515a-9d3d-f5f153339b65", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.639585, - "y": -2642.525156 - }, - "endPoint": { - "x": -3.678365, - "y": -2642.264896 - } - } - }, - { - "id": "d0fc05e6-a3df-51be-a259-73c9448ea55f", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.678365, - "y": -2642.264896 - }, - "endPoint": { - "x": -3.578647, - "y": -2641.904963 - } - } - }, - { - "id": "d8f58f89-099f-5059-8e5f-b2b8708fd6e9", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.578647, - "y": -2641.904963 - }, - "endPoint": { - "x": 0.935926, - "y": -2630.431023 - } - } - }, - { - "id": "545eb118-497f-5afd-a54d-17d389743639", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 0.935926, - "y": -2630.431023 - }, - "endPoint": { - "x": 1.105577, - "y": -2630.420621 - } - } - }, - { - "id": "75311b79-bb2d-595a-9fed-bebf6c6f2505", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 1.105577, - "y": -2630.420621 - }, - "endPoint": { - "x": 4.193759, - "y": -2635.568066 - } - } - }, - { - "id": "7de2ff08-e3ec-5ec3-9cc2-25fb9234f300", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 4.193759, - "y": -2635.568066 - }, - "endPoint": { - "x": 3.825466, - "y": -2636.16676 - } - } - }, - { - "id": "37246d20-4116-5353-b4d5-4faba5f96770", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.825466, - "y": -2636.16676 - }, - "endPoint": { - "x": 3.692684, - "y": -2636.399024 - } - } - }, - { - "id": "d8f3d241-c5a2-58c9-ad44-3a27f3cf09f1", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.692684, - "y": -2636.399024 - }, - "endPoint": { - "x": 0.852558, - "y": -2643.525565 - } - } - } - ] - }, - { - "id": "e8fbf2d7-0d1f-5f32-b314-b68b17948709", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.6926841261629306, - "y": -2636.3990241533375 - }, - "endPoint": { - "x": 0.8525581607482309, - "y": -2643.5255647722424 - } - } - }, - { - "id": "3eaacc05-fdd8-5f09-a3cd-2da495e6e9c3", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "97e03dcf-4885-569b-ba3f-924f711eae9e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 7.723828, - "y": -2643.502954 - }, - "endPoint": { - "x": 3.249584, - "y": -2643.502954 - } - } - }, - { - "id": "2b9b3f70-17cb-5b7b-a533-003df9f565e3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.249584, - "y": -2643.502954 - }, - "endPoint": { - "x": 2.967099, - "y": -2643.478087 - } - } - }, - { - "id": "6b34797e-045c-5e3d-8504-5aa9390c4188", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 2.967099, - "y": -2643.478087 - }, - "endPoint": { - "x": 2.791143, - "y": -2643.292439 - } - } - }, - { - "id": "770e0471-b2dd-55ef-b7d6-c426a6968e18", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 2.791143, - "y": -2643.292439 - }, - "endPoint": { - "x": -1.026587, - "y": -2636.910333 - } - } - }, - { - "id": "4012670f-0d70-5fab-8508-6fc2141a7e6c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -1.026587, - "y": -2636.910333 - }, - "endPoint": { - "x": -1.097997, - "y": -2636.65494 - } - } - }, - { - "id": "e078a03d-50b5-58ca-85cf-908789134e64", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -1.097997, - "y": -2636.65494 - }, - "endPoint": { - "x": -1.070604, - "y": -2636.435893 - } - } - }, - { - "id": "f247a19b-3c80-5454-939e-44f051bad2b1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -1.070604, - "y": -2636.435893 - }, - "endPoint": { - "x": 3.255139, - "y": -2636.435893 - } - } - }, - { - "id": "754bc2bd-c71b-5a5d-a7ad-bd6cb0b5b276", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.255139, - "y": -2636.435893 - }, - "endPoint": { - "x": 3.524636, - "y": -2636.435893 - } - } - }, - { - "id": "aa2730ec-9d05-525f-a7d7-2ad62ea83fb0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.524636, - "y": -2636.435893 - }, - "endPoint": { - "x": 3.596644, - "y": -2636.485324 - } - } - }, - { - "id": "0bb5c3e4-9c0c-50c1-9968-5bd9848fc2d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.596644, - "y": -2636.485324 - }, - "endPoint": { - "x": 7.723828, - "y": -2643.502954 - } - } - } - ] - }, - { - "id": "a74a9006-8405-5034-8928-3e726661d0a9", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.596643945982578, - "y": -2636.4853238923897 - }, - "endPoint": { - "x": 7.723827639045339, - "y": -2643.502954135458 - } - } - }, - { - "id": "6255b5b8-641b-5a75-b16e-2798274a7d84", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 5.791996234571343, - "y": -2630.4206211247565 - }, - "endPoint": { - "x": 1.105576868967546, - "y": -2630.4206211247565 - } - } - }, - { - "id": "62ab1c68-2995-5ad0-9d51-2f7e84c4cfba", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 12.709084441963569, - "y": -2633.4367765584793 - }, - "endPoint": { - "x": 9.190867405512108, - "y": -2633.4367765584793 - } - } - }, - { - "id": "2ccb09fc-82e4-53e1-b1cc-99bb686198be", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 6.033780398480303, - "y": -2630.782703799505 - }, - "endPoint": { - "x": 5.791996234571343, - "y": -2630.4206211247565 - } - } - }, - { - "id": "4365e34e-e6ec-55b4-a3cf-a7c77355664a", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 1.105576868967546, - "y": -2630.4206211247565 - }, - "endPoint": { - "x": 4.193759366664381, - "y": -2635.568065932477 - } - } - }, - { - "id": "da3712de-fc87-525f-98a6-9ae2358eb585", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.524635898975248, - "y": -2636.4358934011707 - }, - "endPoint": { - "x": 3.596643945982578, - "y": -2636.4853238923897 - } - } - }, - { - "id": "4bd40db1-c287-56bd-9178-eacad246a0af", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.255139322121977, - "y": -2636.4358934011707 - }, - "endPoint": { - "x": 3.524635898975248, - "y": -2636.4358934011707 - } - } - }, - { - "id": "4746015f-ad7e-5ef8-b3ab-7e701b7b7f8c", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -1.0706038328316936, - "y": -2636.4358934011707 - }, - "endPoint": { - "x": 3.255139322121977, - "y": -2636.4358934011707 - } - } - }, - { - "id": "f550d0b7-3e8a-5d08-9bb8-07b06fc3328e", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -1.0979968459287193, - "y": -2636.6549398010775 - }, - "endPoint": { - "x": -1.0706038328316936, - "y": -2636.4358934011707 - } - } - }, - { - "id": "0faed83e-f2fd-5dae-bba6-40c2b3f6d6ac", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -1.0265866094669036, - "y": -2636.9103327697267 - }, - "endPoint": { - "x": -1.0979968459287193, - "y": -2636.6549398010775 - } - } - }, - { - "id": "d8585607-61ca-52c0-9424-4cd9bdc79c78", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 2.7911430192561966, - "y": -2643.292438556169 - }, - "endPoint": { - "x": -1.0265866094669036, - "y": -2636.9103327697267 - } - } - }, - { - "id": "a849aea5-590d-5585-be40-f711b232a199", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 2.967098921044453, - "y": -2643.478087319134 - }, - "endPoint": { - "x": 2.7911430192561966, - "y": -2643.292438556169 - } - } - }, - { - "id": "3be68362-7b99-51e6-aab6-38c7d5496903", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.249583815480946, - "y": -2643.502954135458 - }, - "endPoint": { - "x": 2.967098921044453, - "y": -2643.478087319134 - } - } - }, - { - "id": "94ef2b85-a2d0-5f9a-95d7-ea0c9c98e960", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 7.723827639045339, - "y": -2643.502954135458 - }, - "endPoint": { - "x": 3.249583815480946, - "y": -2643.502954135458 - } - } - }, - { - "id": "9f84e101-e8e5-5931-99b9-63ad3b93a744", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 3.825465762251042, - "y": -2636.166759516751 - }, - "endPoint": { - "x": 3.6926841261629306, - "y": -2636.3990241533375 - } - } - }, - { - "id": "56e1773a-7c7a-5ff9-94dc-07c7642a8228", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 4.193759366664381, - "y": -2635.568065932477 - }, - "endPoint": { - "x": 3.825465762251042, - "y": -2636.166759516751 - } - } - }, - { - "id": "e539a071-e619-5714-bc84-6aca64b68b56", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 4.193759366664381, - "y": -2635.568065932477 - }, - "endPoint": { - "x": 4.193759366664381, - "y": -2635.568065932477 - } - } - }, - { - "id": "573bcaca-e18d-554a-b124-91867adbe7f7", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 0.9359263502392423, - "y": -2630.4310225011122 - }, - "endPoint": { - "x": 1.105576868967546, - "y": -2630.4206211247565 - } - } - }, - { - "id": "085de418-c263-5140-a445-6e501610a6ed", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.5786465391320235, - "y": -2641.9049625311272 - }, - "endPoint": { - "x": 0.9359263502392423, - "y": -2630.4310225011122 - } - } - }, - { - "id": "13bcfc13-4bd8-5de6-b880-bd509e83e0e0", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.67836467277084, - "y": -2642.2648963032734 - }, - "endPoint": { - "x": -3.5786465391320235, - "y": -2641.9049625311272 - } - } - }, - { - "id": "dd8631f2-cad1-5aca-9fa0-825bc84dd974", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.6395853847534454, - "y": -2642.525156230424 - }, - "endPoint": { - "x": -3.67836467277084, - "y": -2642.2648963032734 - } - } - }, - { - "id": "95352a4c-9197-509c-bbab-24c175ae380a", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.5121676174512686, - "y": -2642.741116518633 - }, - "endPoint": { - "x": -3.6395853847534454, - "y": -2642.525156230424 - } - } - }, - { - "id": "ac9d4aff-cf24-57ac-88ea-32cf7c12d87d", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.2905712948104338, - "y": -2643.0955128826317 - }, - "endPoint": { - "x": -3.5121676174512686, - "y": -2642.741116518633 - } - } - }, - { - "id": "ad98c7cb-762e-5645-af9f-2eff13f0e3ba", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -3.124373990613094, - "y": -2643.3280855198664 - }, - "endPoint": { - "x": -3.2905712948104338, - "y": -2643.0955128826317 - } - } - }, - { - "id": "18e7b492-4fe0-5ff3-ae36-efaba6a47c9f", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -2.941346154353596, - "y": -2643.5030590450624 - }, - "endPoint": { - "x": -3.124373990613094, - "y": -2643.3280855198664 - } - } - }, - { - "id": "216f2066-6e46-5119-a7b8-6a6e76a3c6b2", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": -2.626125781736846, - "y": -2643.5255647722424 - }, - "endPoint": { - "x": -2.941346154353596, - "y": -2643.5030590450624 - } - } - }, - { - "id": "e42ee049-488a-5c62-9c81-d355b0d3655c", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 0.8525581607482309, - "y": -2643.5255647722424 - }, - "endPoint": { - "x": -2.626125781736846, - "y": -2643.5255647722424 - } - } - }, - { - "id": "c3dfd2bc-bc1d-5ef6-a13c-fba3a9b38fb9", - "type": "PolyLine", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "c2b33992-0c97-55f1-8af2-e2a94358b089", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 18.734303, - "y": -2643.300667 - }, - "endPoint": { - "x": 18.692456, - "y": -2643.415248 - } - } - }, - { - "id": "b18c82fb-0b12-5b8f-9394-e164ab184c03", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 18.692456, - "y": -2643.415248 - }, - "endPoint": { - "x": 18.463086, - "y": -2643.546649 - } - } - }, - { - "id": "af8b0ef1-ebac-5b53-8189-a75f65de825a", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 18.463086, - "y": -2643.546649 - }, - "endPoint": { - "x": 15.006875, - "y": -2643.546649 - } - } - }, - { - "id": "dc194af6-052f-5650-afab-8a794030f046", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 15.006875, - "y": -2643.546649 - }, - "endPoint": { - "x": 14.742735, - "y": -2643.336984 - } - } - }, - { - "id": "c276cee0-2e84-57fe-a99d-1b58662d438f", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 14.742735, - "y": -2643.336984 - }, - "endPoint": { - "x": 9.021679, - "y": -2633.845466 - } - } - }, - { - "id": "c4b7be96-9214-5df6-955f-9651f1f07786", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 9.021679, - "y": -2633.845466 - }, - "endPoint": { - "x": 8.993481, - "y": -2633.591797 - } - } - }, - { - "id": "bec0fab2-9301-5d37-97f1-dcf1e78cef61", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 8.993481, - "y": -2633.591797 - }, - "endPoint": { - "x": 9.190867, - "y": -2633.436777 - } - } - }, - { - "id": "887ce9ea-368f-5070-acc3-72ba530d31b4", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 9.190867, - "y": -2633.436777 - }, - "endPoint": { - "x": 12.709084, - "y": -2633.436777 - } - } - }, - { - "id": "6dbae5c3-c3af-55d3-adff-9aa4b83c1cc1", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 12.709084, - "y": -2633.436777 - }, - "endPoint": { - "x": 12.868162, - "y": -2633.605259 - } - } - }, - { - "id": "4c610130-cab0-574a-94d5-2572da50ed6f", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 12.868162, - "y": -2633.605259 - }, - "endPoint": { - "x": 18.734303, - "y": -2643.300667 - } - } - } - ] - }, - { - "id": "d696d245-35d0-524a-8af6-cafbf661f199", - "type": "PolyLine", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "3dbd9ab9-fae0-588a-96a4-60417e489685", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 18.734303, - "y": -2643.300667 - }, - "endPoint": { - "x": 18.692456, - "y": -2643.415248 - } - } - }, - { - "id": "0393aa29-fddb-59da-bf68-015df90e1cea", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 18.692456, - "y": -2643.415248 - }, - "endPoint": { - "x": 18.463086, - "y": -2643.546649 - } - } - }, - { - "id": "180d4336-033a-52f2-9bd7-85e972b64586", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 18.463086, - "y": -2643.546649 - }, - "endPoint": { - "x": 15.006875, - "y": -2643.546649 - } - } - }, - { - "id": "0d81f1c1-fd55-562c-83fa-ae8c4e8f966c", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 15.006875, - "y": -2643.546649 - }, - "endPoint": { - "x": 14.742735, - "y": -2643.336984 - } - } - }, - { - "id": "61f76d70-f283-5672-b744-a62f60713539", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 14.742735, - "y": -2643.336984 - }, - "endPoint": { - "x": 9.021679, - "y": -2633.845466 - } - } - }, - { - "id": "59aeb8ee-4e75-5ab6-ac21-73f1d7061c81", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 9.021679, - "y": -2633.845466 - }, - "endPoint": { - "x": 8.993481, - "y": -2633.591797 - } - } - }, - { - "id": "13d51bb6-a2da-5e46-99d4-8fcbbc2639f8", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 8.993481, - "y": -2633.591797 - }, - "endPoint": { - "x": 9.190867, - "y": -2633.436777 - } - } - }, - { - "id": "ec1e8e9a-700b-565a-9e60-bc90892b4764", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 9.190867, - "y": -2633.436777 - }, - "endPoint": { - "x": 12.709084, - "y": -2633.436777 - } - } - }, - { - "id": "d2018c2e-2d5b-58da-af1b-3a69095e375c", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 12.709084, - "y": -2633.436777 - }, - "endPoint": { - "x": 12.868162, - "y": -2633.605259 - } - } - }, - { - "id": "7edb158d-622c-5caf-b74c-1c2a0a740dba", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 12.868162, - "y": -2633.605259 - }, - "endPoint": { - "x": 18.734303, - "y": -2643.300667 - } - } - } - ] - }, - { - "id": "0ac5893f-c64d-53e2-9e16-3474d0d6da28", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "ecbf33bd-36b3-5582-8c1a-39f1455c864d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 13.690634, - "y": -2643.520679 - }, - "endPoint": { - "x": 9.055719, - "y": -2643.520679 - } - } - }, - { - "id": "38908ba8-ec2b-54fa-9e28-b2bc44fa09d3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 9.055719, - "y": -2643.520679 - }, - "endPoint": { - "x": 8.911078, - "y": -2643.449355 - } - } - }, - { - "id": "de57c3fa-d44d-578e-819d-6939466da31c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 8.911078, - "y": -2643.449355 - }, - "endPoint": { - "x": 4.193759, - "y": -2635.568066 - } - } - }, - { - "id": "c9680383-0362-57fa-828d-a66d3decdd33", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 4.193759, - "y": -2635.568066 - }, - "endPoint": { - "x": 1.105577, - "y": -2630.420621 - } - } - }, - { - "id": "b12db243-2130-523d-88be-5303ea442d4c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 1.105577, - "y": -2630.420621 - }, - "endPoint": { - "x": 5.791996, - "y": -2630.420621 - } - } - }, - { - "id": "6aa230b1-cbf2-53e9-a54b-e8985c344ce6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 5.791996, - "y": -2630.420621 - }, - "endPoint": { - "x": 6.03378, - "y": -2630.782704 - } - } - }, - { - "id": "1864c2f8-ce86-5ac5-9faa-a060836509a2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 6.03378, - "y": -2630.782704 - }, - "endPoint": { - "x": 13.697503, - "y": -2643.429689 - } - } - }, - { - "id": "4bead553-dbe9-5330-baeb-c7421f065dc8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 13.697503, - "y": -2643.429689 - }, - "endPoint": { - "x": 13.690634, - "y": -2643.520679 - } - } - } - ] - }, - { - "id": "490d96c2-6c6a-58a0-aac4-4a479794b844", - "type": "PolyLine", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "3c399e5f-1e02-52c9-a912-fd38c0dd31e3", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 13.690634, - "y": -2643.520679 - }, - "endPoint": { - "x": 9.055719, - "y": -2643.520679 - } - } - }, - { - "id": "efe977af-caac-5e30-a443-d2ba1f524b85", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 9.055719, - "y": -2643.520679 - }, - "endPoint": { - "x": 8.911078, - "y": -2643.449355 - } - } - }, - { - "id": "2a53ed7d-d9f5-56b5-9e06-9b8ddc815112", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 8.911078, - "y": -2643.449355 - }, - "endPoint": { - "x": 4.193759, - "y": -2635.568066 - } - } - }, - { - "id": "600a8fa3-0452-5071-a77c-80de4d365763", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 4.193759, - "y": -2635.568066 - }, - "endPoint": { - "x": 1.105577, - "y": -2630.420621 - } - } - }, - { - "id": "3ab5ab76-626a-56a8-8b40-bf54150f1e83", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 1.105577, - "y": -2630.420621 - }, - "endPoint": { - "x": 5.791996, - "y": -2630.420621 - } - } - }, - { - "id": "d9c34288-f310-59f4-a1c5-eadc8a99fac6", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 5.791996, - "y": -2630.420621 - }, - "endPoint": { - "x": 6.03378, - "y": -2630.782704 - } - } - }, - { - "id": "fb2bfdc5-ff34-5896-be34-08cfec491c43", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 6.03378, - "y": -2630.782704 - }, - "endPoint": { - "x": 13.697503, - "y": -2643.429689 - } - } - }, - { - "id": "19227372-ab7e-57aa-9a43-d78f5591349f", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 13.697503, - "y": -2643.429689 - }, - "endPoint": { - "x": 13.690634, - "y": -2643.520679 - } - } - } - ] - }, - { - "id": "7162cdc8-d5e7-5391-a2fe-21889bbaad7c", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 755.9274910699098, - "y": -2634.237136751625 - }, - "endPoint": { - "x": 108.1528140077875, - "y": -2634.237136751625 - } - } - }, - { - "id": "f324f346-62cb-5346-8561-52442ca63ad3", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 245.7378351748832, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 245.7378351748832, - "y": -2652.829213785121 - } - } - }, - { - "id": "7c02e3af-65eb-5bb5-908e-fe577d46c687", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 643.775453551392, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 643.775453551392, - "y": -2652.829213785121 - } - } - }, - { - "id": "0381e96d-34ae-5284-93ef-4659344f51ad", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 531.5316450139821, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 531.5316450139821, - "y": -2652.829213785121 - } - } - }, - { - "id": "face7299-02aa-53a5-b763-f41046a3a11d", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 696.7021393866185, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 696.7021393866185, - "y": -2652.829213785121 - } - } - }, - { - "id": "7284469a-9227-57eb-a040-1cb8927596c6", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "책 임 기 술 자", - "basePoint": { - "x": 280.694618, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a304d5fa-f394-547d-83ae-c79401f8ca37", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 320.9391437974027, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 320.9391437974027, - "y": -2652.829213785121 - } - } - }, - { - "id": "36b63ae5-1d9a-5f21-8871-51f8ca3801ea", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 377.1015926263164, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 377.1015926263164, - "y": -2652.829213785121 - } - } - }, - { - "id": "c26357e0-4824-572b-ad5d-9056f48bd9f8", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "승 인", - "basePoint": { - "x": 348.913257, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d0095ed9-d4cd-52af-8342-4dcacfb7f989", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "공 사 명", - "basePoint": { - "x": 451.655613, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "aae05031-5294-538b-8f1a-a7e33c01a9d6", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 582.5771426366816, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 582.5771426366816, - "y": -2652.829213785121 - } - } - }, - { - "id": "1961766e-419d-557e-acc0-4bd8f6bce407", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "도 면 명", - "basePoint": { - "x": 556.644084, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "21857fa0-24f8-51be-aa0b-3953c1e0b6fa", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "노 선 명", - "basePoint": { - "x": 728.40806, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b5d01221-b3f2-582b-a44a-540d4d0659b2", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "설 계 일 자", - "basePoint": { - "x": 670.872419, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5053d561-c507-503f-a23d-53b46a14768a", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 643.775453551392, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 643.775453551392, - "y": -2652.829213785121 - } - } - }, - { - "id": "63899ec6-6b6c-57ad-bf65-94a24389b61b", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 108.1528140077875, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 108.1528140077875, - "y": -2652.829213785121 - } - } - }, - { - "id": "a2b16a98-7bf7-56de-803f-6b32e018044a", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "발 주 처", - "basePoint": { - "x": 185.002325, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "85c89b54-3cef-5209-aad9-aa2e42c5a8d9", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "축 척", - "basePoint": { - "x": 614.411308, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0ecc1280-eebd-5027-8695-7a2735864b59", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "남부지방산림청", - "basePoint": { - "x": 176.945325, - "y": -2643.533175 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 5.4, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "92674472-592a-510c-800a-d2d75f39009b", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2024년 간선임도사업(기번3)(3공구)", - "basePoint": { - "x": 454.588258, - "y": -2640.523455 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 4.3, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b38216bc-1b30-59f1-94ac-f8a85daca763", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "타이틀", - "shapeData": { - "label": "안 덕 상", - "basePoint": { - "x": 279.760326, - "y": -2648.773413 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 3.9, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5074ec1c-f9bd-5dc4-83dd-76a21bd82325", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "타이틀", - "shapeData": { - "label": "산림공학기술자 기술고급", - "basePoint": { - "x": 279.553509, - "y": -2640.872744 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 3.9, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0cdb4ccc-2b21-5d00-991e-2904cf9ba3af", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "- 울진 울진 대흥 산65 외2 -", - "basePoint": { - "x": 454.588258, - "y": -2646.523455 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 4.3, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c246bae8-7465-5ae5-bf64-6597217d6619", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "종 단 면 도(1)", - "basePoint": { - "x": 375.044159, - "y": -2122.541462 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 12.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7bdfa088-e63b-53d6-b092-20f1122dfca1", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "A1", - "basePoint": { - "x": 584.523752, - "y": -2645.065384 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.6666, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "49239f9e-4282-5bc1-a8fd-150ebae08684", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "V = 1 : 200", - "basePoint": { - "x": 590.425466, - "y": -2647.193802 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3efd859d-feff-50c3-ad13-c3cc452cc989", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "H = 1 : 1,000", - "basePoint": { - "x": 590.06081, - "y": -2642.595759 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3172cc9a-e589-5033-b885-8d558cb72c44", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "A3", - "basePoint": { - "x": 614.322317, - "y": -2645.065384 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.6666, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8ba2b8cb-8dd9-51be-9c2e-1c059300e775", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "V = 1 : 400", - "basePoint": { - "x": 620.22403, - "y": -2647.193802 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2b7014bf-f6e3-501c-aed7-20c5ad9c12cf", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "H = 1 : 2,000", - "basePoint": { - "x": 619.859374, - "y": -2642.595759 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ae35c4c5-a9f5-5758-bc6e-774d0bd1e979", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "타이틀", - "shapeData": { - "label": "종 단 면 도(1)", - "basePoint": { - "x": 556.123535, - "y": -2645.980227 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 4.4, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ec7ba212-7e4e-5df0-9f89-6a3354d1d50e", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "77f45a9c-02e9-542e-a9f2-7fc71757c8c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.115974, - "y": -2637.139277 - }, - "endPoint": { - "x": 1210.362725, - "y": -2636.988651 - } - } - }, - { - "id": "2d67e859-a665-574a-8bd7-1bde8fac3023", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.362725, - "y": -2636.988651 - }, - "endPoint": { - "x": 1210.591008, - "y": -2636.72368 - } - } - }, - { - "id": "cbbd16a4-821f-5fab-80a7-85087a50990c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.591008, - "y": -2636.72368 - }, - "endPoint": { - "x": 1210.795796, - "y": -2636.360219 - } - } - }, - { - "id": "aaf09469-5d42-50d8-b42b-4bb63b80ec9d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.795796, - "y": -2636.360219 - }, - "endPoint": { - "x": 1210.993915, - "y": -2636.118756 - } - } - }, - { - "id": "4d295270-68c2-5dce-b809-4096c632c0cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.993915, - "y": -2636.118756 - }, - "endPoint": { - "x": 1211.255645, - "y": -2635.961084 - } - } - }, - { - "id": "9a014c3f-30f3-5442-9ca8-374e9668ba37", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.255645, - "y": -2635.961084 - }, - "endPoint": { - "x": 1211.534304, - "y": -2635.833635 - } - } - }, - { - "id": "f98df0da-2e7c-50bc-8af1-3306a270d320", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.534304, - "y": -2635.833635 - }, - "endPoint": { - "x": 1211.779311, - "y": -2635.84371 - } - } - }, - { - "id": "63ab3047-6652-5cd2-8e50-ab03cd29d580", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.779311, - "y": -2635.84371 - }, - "endPoint": { - "x": 1212.068025, - "y": -2635.964442 - } - } - }, - { - "id": "19ca3214-f8e4-58b1-8aa4-621b4916bd5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.068025, - "y": -2635.964442 - }, - "endPoint": { - "x": 1212.366794, - "y": -2636.195885 - } - } - }, - { - "id": "3d532361-f306-5e73-90dc-bf895c0c2087", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.366794, - "y": -2636.195885 - }, - "endPoint": { - "x": 1212.589742, - "y": -2636.461462 - } - } - }, - { - "id": "78823020-5f52-5522-b712-ebbc6b5ed9c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.589742, - "y": -2636.461462 - }, - "endPoint": { - "x": 1212.710604, - "y": -2636.723075 - } - } - }, - { - "id": "39548a53-9c30-527c-baad-304aefff1967", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.710604, - "y": -2636.723075 - }, - "endPoint": { - "x": 1212.831465, - "y": -2636.934369 - } - } - }, - { - "id": "809ba820-25c8-5fac-8b4c-d5a8b95044fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.831465, - "y": -2636.934369 - }, - "endPoint": { - "x": 1213.103353, - "y": -2637.045026 - } - } - }, - { - "id": "37979bcf-14ef-58e0-ab19-af00b9a7972c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.103353, - "y": -2637.045026 - }, - "endPoint": { - "x": 1213.502771, - "y": -2637.071892 - } - } - }, - { - "id": "577369e9-11ca-522c-b397-ca38c1f69f45", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.502771, - "y": -2637.071892 - }, - "endPoint": { - "x": 1213.757936, - "y": -2637.128927 - } - } - }, - { - "id": "7634ea79-0d6f-5920-b2b9-450f2490aee1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.757936, - "y": -2637.128927 - }, - "endPoint": { - "x": 1214.246102, - "y": -2637.115549 - } - } - }, - { - "id": "e7386d86-2ff7-531b-b40b-1df39b52bda1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.246102, - "y": -2637.115549 - }, - "endPoint": { - "x": 1214.45089, - "y": -2636.988101 - } - } - }, - { - "id": "0d5afc67-e6c0-5ce1-b2c8-dd22666cebf0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.45089, - "y": -2636.988101 - }, - "endPoint": { - "x": 1214.498804, - "y": -2636.958702 - } - } - }, - { - "id": "d050dd55-b9f7-5238-9c03-aba7f8b5af6f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.498804, - "y": -2636.958702 - }, - "endPoint": { - "x": 1214.723393, - "y": -2637.109108 - } - } - }, - { - "id": "8e7504df-5c74-525d-bff2-8cd593056ba0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.723393, - "y": -2637.109108 - }, - "endPoint": { - "x": 1215.11009, - "y": -2637.500096 - } - } - }, - { - "id": "96828e76-d2f0-5faf-8c33-eb587ddadbf5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.11009, - "y": -2637.500096 - }, - "endPoint": { - "x": 1215.660021, - "y": -2637.952688 - } - } - }, - { - "id": "0db7b2fc-b1f0-5c6b-be3e-0f4aecf2bb74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.660021, - "y": -2637.952688 - }, - "endPoint": { - "x": 1215.938578, - "y": -2638.302055 - } - } - }, - { - "id": "967489b2-b975-56a8-adb5-b16f369ef793", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.938578, - "y": -2638.302055 - }, - "endPoint": { - "x": 1215.964433, - "y": -2638.339547 - } - } - }, - { - "id": "269e8c1d-92d9-5795-9111-a61c8e9bdf11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.964433, - "y": -2638.339547 - }, - "endPoint": { - "x": 1215.820383, - "y": -2638.319617 - } - } - }, - { - "id": "8b24ae7d-ec9b-5318-9729-0899334698ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.820383, - "y": -2638.319617 - }, - "endPoint": { - "x": 1215.736252, - "y": -2638.311084 - } - } - }, - { - "id": "3a73ca4d-2797-5fc9-bf85-b427f2273c48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.736252, - "y": -2638.311084 - }, - "endPoint": { - "x": 1215.633653, - "y": -2638.313947 - } - } - }, - { - "id": "d8c3b01a-669f-5525-aa70-de13bb30de8f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.633653, - "y": -2638.313947 - }, - "endPoint": { - "x": 1215.550958, - "y": -2638.336739 - } - } - }, - { - "id": "da7ab5f6-89a9-5f03-8a4a-c49cc791dced", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.550958, - "y": -2638.336739 - }, - "endPoint": { - "x": 1215.536697, - "y": -2638.382323 - } - } - }, - { - "id": "19538ad2-15f1-51a3-8938-bccc104e16a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.536697, - "y": -2638.382323 - }, - "endPoint": { - "x": 1215.556601, - "y": -2638.439303 - } - } - }, - { - "id": "25d70d19-05b4-54d7-830e-f1f1c542b560", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.556601, - "y": -2638.439303 - }, - "endPoint": { - "x": 1215.562347, - "y": -2638.500522 - } - } - }, - { - "id": "bcf6bfe8-c26d-5edc-9139-23cf19d8cd1e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.562347, - "y": -2638.500522 - }, - "endPoint": { - "x": 1215.530541, - "y": -2638.628466 - } - } - }, - { - "id": "651d7979-d61d-56ac-8d22-6e8435b83a52", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.530541, - "y": -2638.628466 - }, - "endPoint": { - "x": 1215.525206, - "y": -2638.75184 - } - } - }, - { - "id": "52187da7-25e2-5d79-b83a-37b66ccb86f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.525206, - "y": -2638.75184 - }, - "endPoint": { - "x": 1215.537723, - "y": -2638.8609 - } - } - }, - { - "id": "a42dd51d-817c-5c42-a256-ecb518e79597", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.537723, - "y": -2638.8609 - }, - "endPoint": { - "x": 1215.544905, - "y": -2638.972934 - } - } - }, - { - "id": "f5d2a2d0-3b77-582c-ad85-516c47b73cee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.544905, - "y": -2638.972934 - }, - "endPoint": { - "x": 1215.568092, - "y": -2639.123119 - } - } - }, - { - "id": "6710b4a8-9b48-5c8e-a592-173060899abc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.568092, - "y": -2639.123119 - }, - "endPoint": { - "x": 1215.557422, - "y": -2639.257283 - } - } - }, - { - "id": "1e131e07-819f-5beb-a9d3-02a6ab733b54", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.557422, - "y": -2639.257283 - }, - "endPoint": { - "x": 1215.510842, - "y": -2639.402128 - } - } - }, - { - "id": "300bfefe-2c5a-5adc-8ed3-3154ef2b264c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.510842, - "y": -2639.402128 - }, - "endPoint": { - "x": 1215.399522, - "y": -2639.545652 - } - } - }, - { - "id": "3a022522-b9d6-5efa-8a7d-c4931abb7265", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.399522, - "y": -2639.545652 - }, - "endPoint": { - "x": 1215.283277, - "y": -2639.652951 - } - } - }, - { - "id": "122c24f0-ac66-5065-9111-be3cab7ce52a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.283277, - "y": -2639.652951 - }, - "endPoint": { - "x": 1215.140048, - "y": -2639.72986 - } - } - }, - { - "id": "ec700562-f776-5274-972a-f58c3ccff0c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.140048, - "y": -2639.72986 - }, - "endPoint": { - "x": 1215.102497, - "y": -2639.778142 - } - } - }, - { - "id": "c98cbcfa-e3d9-5913-a471-4565b751c544", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.102497, - "y": -2639.778142 - }, - "endPoint": { - "x": 1215.060945, - "y": -2639.823671 - } - } - }, - { - "id": "8301b794-0129-5faf-abe3-d30f234934e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.060945, - "y": -2639.823671 - }, - "endPoint": { - "x": 1214.770999, - "y": -2639.837985 - } - } - }, - { - "id": "583ec127-265d-5192-b137-bddb63a748a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.770999, - "y": -2639.837985 - }, - "endPoint": { - "x": 1214.395179, - "y": -2639.837985 - } - } - }, - { - "id": "7fb885e9-5a2e-50d4-98d7-b55262d814f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.395179, - "y": -2639.837985 - }, - "endPoint": { - "x": 1214.259235, - "y": -2639.741421 - } - } - }, - { - "id": "3e79d882-e91b-52ed-bb26-66e002ddddc6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.259235, - "y": -2639.741421 - }, - "endPoint": { - "x": 1214.214399, - "y": -2639.575106 - } - } - }, - { - "id": "0666f351-9d53-5f0a-908b-fcf090442c21", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.214399, - "y": -2639.575106 - }, - "endPoint": { - "x": 1214.230199, - "y": -2639.443253 - } - } - }, - { - "id": "b626b5ba-9457-51d5-bc10-68e833c531ff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.230199, - "y": -2639.443253 - }, - "endPoint": { - "x": 1214.207012, - "y": -2639.303803 - } - } - }, - { - "id": "4ba43aa9-7299-5af2-bf51-1ab51d161ed7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.207012, - "y": -2639.303803 - }, - "endPoint": { - "x": 1214.149659, - "y": -2639.219737 - } - } - }, - { - "id": "8e9ce789-f035-5438-a402-b11f81a3f72c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.149659, - "y": -2639.219737 - }, - "endPoint": { - "x": 1214.122881, - "y": -2639.142828 - } - } - }, - { - "id": "dacc46fb-71de-59c4-9c4d-9530a3850fe3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.122881, - "y": -2639.142828 - }, - "endPoint": { - "x": 1214.110364, - "y": -2638.862112 - } - } - }, - { - "id": "618b147c-d0f7-5f7a-86bf-41455cb30912", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.110364, - "y": -2638.862112 - }, - "endPoint": { - "x": 1214.029823, - "y": -2638.733342 - } - } - }, - { - "id": "f418cb93-2848-5cc3-adc8-32632db4f3ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.029823, - "y": -2638.733342 - }, - "endPoint": { - "x": 1213.947436, - "y": -2638.6332 - } - } - }, - { - "id": "d351b5da-c0be-5d29-8b49-01237285e5ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.947436, - "y": -2638.6332 - }, - "endPoint": { - "x": 1213.875925, - "y": -2638.572367 - } - } - }, - { - "id": "ab115620-4268-559b-8303-d497f6fe7a69", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.875925, - "y": -2638.572367 - }, - "endPoint": { - "x": 1213.828729, - "y": -2638.569999 - } - } - }, - { - "id": "245730ed-2d03-5eb9-8022-7be6efbc5c5b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.828729, - "y": -2638.569999 - }, - "endPoint": { - "x": 1213.726745, - "y": -2638.612886 - } - } - }, - { - "id": "c160580c-31ab-5762-aec3-2ed035894e22", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.726745, - "y": -2638.612886 - }, - "endPoint": { - "x": 1213.622915, - "y": -2638.696952 - } - } - }, - { - "id": "bcc3690a-b6dc-50a2-a688-2cec4e041da7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.622915, - "y": -2638.696952 - }, - "endPoint": { - "x": 1213.571, - "y": -2638.786358 - } - } - }, - { - "id": "30b67c32-edf7-54c6-91c1-3640548a171a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.571, - "y": -2638.786358 - }, - "endPoint": { - "x": 1213.556739, - "y": -2638.965171 - } - } - }, - { - "id": "a4cc4789-36e6-536f-af34-d9be9976ed79", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.556739, - "y": -2638.965171 - }, - "endPoint": { - "x": 1213.51375, - "y": -2639.054578 - } - } - }, - { - "id": "3b44e034-310e-516f-aa3b-4990d7655944", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.51375, - "y": -2639.054578 - }, - "endPoint": { - "x": 1213.567409, - "y": -2639.169033 - } - } - }, - { - "id": "fa494e3d-5d88-58a5-aad8-9681694661d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.567409, - "y": -2639.169033 - }, - "endPoint": { - "x": 1213.567409, - "y": -2639.28448 - } - } - }, - { - "id": "a9f1e2db-da74-5dbc-bf83-a95d42e4d355", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.567409, - "y": -2639.28448 - }, - "endPoint": { - "x": 1213.569153, - "y": -2639.500839 - } - } - }, - { - "id": "46a3b5da-9f5c-5276-9cbb-f17b3946e01c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.569153, - "y": -2639.500839 - }, - "endPoint": { - "x": 1213.597778, - "y": -2639.643922 - } - } - }, - { - "id": "cbacbc94-cc80-57b2-b519-77d30978fcf9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.597778, - "y": -2639.643922 - }, - "endPoint": { - "x": 1213.683654, - "y": -2639.695782 - } - } - }, - { - "id": "c67a2af7-867c-55c3-94cf-7f4181a9dc8b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.683654, - "y": -2639.695782 - }, - "endPoint": { - "x": 1213.758859, - "y": -2639.854335 - } - } - }, - { - "id": "147ac2ae-6c2b-504b-9653-78cd46608a0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.758859, - "y": -2639.854335 - }, - "endPoint": { - "x": 1213.916349, - "y": -2639.938402 - } - } - }, - { - "id": "1870bb84-bbdb-5475-a020-99ece700c06e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.916349, - "y": -2639.938402 - }, - "endPoint": { - "x": 1214.170076, - "y": -2639.940604 - } - } - }, - { - "id": "24a78f59-07d2-51e3-8b51-0e3c145e1166", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.170076, - "y": -2639.940604 - }, - "endPoint": { - "x": 1214.39169, - "y": -2639.926675 - } - } - }, - { - "id": "227652a1-4b89-5339-8767-fe2c3f5bde47", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.39169, - "y": -2639.926675 - }, - "endPoint": { - "x": 1214.692306, - "y": -2639.937521 - } - } - }, - { - "id": "56e0dccf-c8e0-5674-b54c-2d134f02f33d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.692306, - "y": -2639.937521 - }, - "endPoint": { - "x": 1215.122299, - "y": -2639.952991 - } - } - }, - { - "id": "39108661-0e11-5148-b645-5e5a84e1ca3f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.122299, - "y": -2639.952991 - }, - "endPoint": { - "x": 1215.503455, - "y": -2640.007218 - } - } - }, - { - "id": "3d63e655-351f-533d-8a9e-625ad72897e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.503455, - "y": -2640.007218 - }, - "endPoint": { - "x": 1215.853728, - "y": -2640.083081 - } - } - }, - { - "id": "4fa92d3e-772e-5d5b-9eb6-3e3366a22b78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.853728, - "y": -2640.083081 - }, - "endPoint": { - "x": 1216.082832, - "y": -2640.261123 - } - } - }, - { - "id": "a9cd6123-2778-51f5-bc67-eb9a20bac332", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.082832, - "y": -2640.261123 - }, - "endPoint": { - "x": 1216.257353, - "y": -2640.514809 - } - } - }, - { - "id": "7f57339a-408b-5c8b-8e24-5d6db2e810d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.257353, - "y": -2640.514809 - }, - "endPoint": { - "x": 1216.265356, - "y": -2640.827896 - } - } - }, - { - "id": "12755e30-a1da-559f-ae07-3f36efff1784", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.265356, - "y": -2640.827896 - }, - "endPoint": { - "x": 1216.281156, - "y": -2641.041888 - } - } - }, - { - "id": "df7738e4-8aea-5bfd-bcd4-d150533a5007", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.281156, - "y": -2641.041888 - }, - "endPoint": { - "x": 1216.185944, - "y": -2641.25588 - } - } - }, - { - "id": "94208fd2-2705-54ae-81fd-a4333ecef529", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.185944, - "y": -2641.25588 - }, - "endPoint": { - "x": 1216.094733, - "y": -2641.39065 - } - } - }, - { - "id": "496da8c8-773c-571b-a0b7-d312e4f00cc8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.094733, - "y": -2641.39065 - }, - "endPoint": { - "x": 1215.884508, - "y": -2641.505546 - } - } - }, - { - "id": "f1640ab6-40b4-54ef-9334-1c3a366c50f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.884508, - "y": -2641.505546 - }, - "endPoint": { - "x": 1215.499864, - "y": -2641.54122 - } - } - }, - { - "id": "9cec8588-fea5-571a-9053-0b03b08925d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.499864, - "y": -2641.54122 - }, - "endPoint": { - "x": 1215.059611, - "y": -2641.553112 - } - } - }, - { - "id": "1833054a-b7b9-5a65-ada9-776110a068d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.059611, - "y": -2641.553112 - }, - "endPoint": { - "x": 1214.55985, - "y": -2641.521401 - } - } - }, - { - "id": "2043a101-2e45-54b9-96a7-f0e27e4d1241", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.55985, - "y": -2641.521401 - }, - "endPoint": { - "x": 1214.417032, - "y": -2641.461944 - } - } - }, - { - "id": "1184e76c-09da-5ccc-89aa-70bbd4bdef63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.417032, - "y": -2641.461944 - }, - "endPoint": { - "x": 1214.119597, - "y": -2641.446088 - } - } - }, - { - "id": "71f1252e-ab1b-50c4-b527-d730b7ded9f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.119597, - "y": -2641.446088 - }, - "endPoint": { - "x": 1213.89747, - "y": -2641.461944 - } - } - }, - { - "id": "f8a07c71-d0d3-528d-9906-a399bc4f09e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.89747, - "y": -2641.461944 - }, - "endPoint": { - "x": 1213.725822, - "y": -2641.698067 - } - } - }, - { - "id": "5709a379-c01e-571e-a149-2e77c66ad961", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.725822, - "y": -2641.698067 - }, - "endPoint": { - "x": 1213.678216, - "y": -2641.816982 - } - } - }, - { - "id": "f7617684-92f9-5aa8-8bc4-5266b8442b93", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.678216, - "y": -2641.816982 - }, - "endPoint": { - "x": 1213.598907, - "y": -2641.924005 - } - } - }, - { - "id": "6fb6325a-4202-5f4f-8c5f-244f9f1015e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.598907, - "y": -2641.924005 - }, - "endPoint": { - "x": 1213.444187, - "y": -2642.102322 - } - } - }, - { - "id": "eb5aab97-2551-5e64-b5b8-27563f054e3e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.444187, - "y": -2642.102322 - }, - "endPoint": { - "x": 1213.348975, - "y": -2642.201418 - } - } - }, - { - "id": "bc566907-134f-5a5e-9382-7d207220ae0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.348975, - "y": -2642.201418 - }, - "endPoint": { - "x": 1213.333175, - "y": -2642.407482 - } - } - }, - { - "id": "64cebdea-6fd7-5157-b47b-69dddb9c1554", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.333175, - "y": -2642.407482 - }, - "endPoint": { - "x": 1213.392683, - "y": -2642.554089 - } - } - }, - { - "id": "a1e1467b-5737-5150-ab04-be5a6e1c741a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.392683, - "y": -2642.554089 - }, - "endPoint": { - "x": 1213.499694, - "y": -2642.621474 - } - } - }, - { - "id": "3a5b71a4-d65f-50bc-b9e7-7864f29bd539", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.499694, - "y": -2642.621474 - }, - "endPoint": { - "x": 1213.832936, - "y": -2642.633366 - } - } - }, - { - "id": "0801c29e-e0bd-53ca-a5b5-c4ff513c409c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.832936, - "y": -2642.633366 - }, - "endPoint": { - "x": 1214.364399, - "y": -2642.637329 - } - } - }, - { - "id": "935549ff-118a-5824-aa5b-fc4a599cdd9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.364399, - "y": -2642.637329 - }, - "endPoint": { - "x": 1214.570623, - "y": -2642.633366 - } - } - }, - { - "id": "a124722b-f8d0-5a5f-a5c1-c473151c89bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.570623, - "y": -2642.633366 - }, - "endPoint": { - "x": 1214.721341, - "y": -2642.51847 - } - } - }, - { - "id": "90218c50-af9e-5132-8739-5aebcbc29973", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.721341, - "y": -2642.51847 - }, - "endPoint": { - "x": 1214.96327, - "y": -2642.447121 - } - } - }, - { - "id": "83425b39-ad87-57aa-a728-1681f0c97c85", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.96327, - "y": -2642.447121 - }, - "endPoint": { - "x": 1215.19812, - "y": -2642.403684 - } - } - }, - { - "id": "fa3847c3-ada0-521f-bc8a-08c0fdde37cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.19812, - "y": -2642.403684 - }, - "endPoint": { - "x": 1215.475753, - "y": -2642.407647 - } - } - }, - { - "id": "c0a89991-91f3-5afe-b3aa-802947207e18", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.475753, - "y": -2642.407647 - }, - "endPoint": { - "x": 1215.793092, - "y": -2642.39972 - } - } - }, - { - "id": "bae9e574-11dc-5a26-a75d-c951998453fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.793092, - "y": -2642.39972 - }, - "endPoint": { - "x": 1215.931909, - "y": -2642.387828 - } - } - }, - { - "id": "bebd0802-2c1e-5044-b76a-50d36ea8e497", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.931909, - "y": -2642.387828 - }, - "endPoint": { - "x": 1215.991416, - "y": -2642.463141 - } - } - }, - { - "id": "b935c331-ef64-5cd3-89f6-73b963d73f03", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.991416, - "y": -2642.463141 - }, - "endPoint": { - "x": 1216.122333, - "y": -2642.498816 - } - } - }, - { - "id": "36893942-cfdf-5671-b294-983446bb1c91", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.122333, - "y": -2642.498816 - }, - "endPoint": { - "x": 1216.209542, - "y": -2642.502779 - } - } - }, - { - "id": "5bebd70f-73eb-5313-8b21-32b906ac475d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.209542, - "y": -2642.502779 - }, - "endPoint": { - "x": 1216.265048, - "y": -2642.558273 - } - } - }, - { - "id": "5ab513cc-33b3-567a-a25c-15c3547a7cd1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.265048, - "y": -2642.558273 - }, - "endPoint": { - "x": 1216.304754, - "y": -2642.669205 - } - } - }, - { - "id": "7f0fb924-d9a2-528c-897c-31ce4a043231", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.304754, - "y": -2642.669205 - }, - "endPoint": { - "x": 1216.36816, - "y": -2642.744518 - } - } - }, - { - "id": "33bcf0a3-fd91-5801-aab0-7bfe460b4ec2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.36816, - "y": -2642.744518 - }, - "endPoint": { - "x": 1216.397401, - "y": -2643.08794 - } - } - }, - { - "id": "675b9ae1-04c5-570a-a92b-03bb9a20563d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.397401, - "y": -2643.08794 - }, - "endPoint": { - "x": 1216.407148, - "y": -2643.317346 - } - } - }, - { - "id": "cd32261c-4d9c-56ba-88fa-2d8a62f470d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.407148, - "y": -2643.317346 - }, - "endPoint": { - "x": 1216.399248, - "y": -2643.694406 - } - } - }, - { - "id": "d238edda-dcec-5fb0-97cf-bf9d6a7179ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.399248, - "y": -2643.694406 - }, - "endPoint": { - "x": 1216.191587, - "y": -2644.166102 - } - } - }, - { - "id": "0b3eb348-4d3e-53a1-b7b5-e97eb25489a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.191587, - "y": -2644.166102 - }, - "endPoint": { - "x": 1215.858858, - "y": -2644.502862 - } - } - }, - { - "id": "eb2268f1-5ce7-5d50-885a-1c0fec2c5a10", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.858858, - "y": -2644.502862 - }, - "endPoint": { - "x": 1215.526232, - "y": -2644.599095 - } - } - }, - { - "id": "189b2c95-7f05-5999-80f0-e800eafeef30", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.526232, - "y": -2644.599095 - }, - "endPoint": { - "x": 1215.32483, - "y": -2644.647211 - } - } - }, - { - "id": "e57b7e6f-c4ba-5107-acb6-880e776fa4d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.32483, - "y": -2644.647211 - }, - "endPoint": { - "x": 1214.856464, - "y": -2644.699677 - } - } - }, - { - "id": "fffa8ff0-8b37-51ec-979d-56dfef1d58e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.856464, - "y": -2644.699677 - }, - "endPoint": { - "x": 1214.677019, - "y": -2644.73904 - } - } - }, - { - "id": "7c7b79e2-dbdf-54f8-8969-e865130a21a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.677019, - "y": -2644.73904 - }, - "endPoint": { - "x": 1213.770966, - "y": -2644.577239 - } - } - }, - { - "id": "cdb8cfb6-0ca7-5ee3-8d10-9ba95071a0c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.770966, - "y": -2644.577239 - }, - "endPoint": { - "x": 1213.363852, - "y": -2644.502862 - } - } - }, - { - "id": "e7c4588f-e4b3-5921-952d-f47cd179a2ff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.363852, - "y": -2644.502862 - }, - "endPoint": { - "x": 1212.831465, - "y": -2644.301147 - } - } - }, - { - "id": "890f6ebb-1ed5-529e-a488-8fd500178aee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.831465, - "y": -2644.301147 - }, - "endPoint": { - "x": 1212.603798, - "y": -2644.22677 - } - } - }, - { - "id": "d6b2031d-3c56-533e-ace2-743c3ea563cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.603798, - "y": -2644.22677 - }, - "endPoint": { - "x": 1212.393675, - "y": -2644.051811 - } - } - }, - { - "id": "3a5d6cb2-0291-5fbc-a239-374d8a24e42c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.393675, - "y": -2644.051811 - }, - "endPoint": { - "x": 1212.218641, - "y": -2643.872503 - } - } - }, - { - "id": "a82fcd3e-2d3b-5bea-a8fa-993da48ef49a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.218641, - "y": -2643.872503 - }, - "endPoint": { - "x": 1212.082902, - "y": -2643.863749 - } - } - }, - { - "id": "6fa0492b-719f-5de6-8a70-706783c46d10", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.082902, - "y": -2643.863749 - }, - "endPoint": { - "x": 1211.921001, - "y": -2643.959982 - } - } - }, - { - "id": "63bee026-1e8a-5d93-a227-cbfb801374e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.921001, - "y": -2643.959982 - }, - "endPoint": { - "x": 1211.658347, - "y": -2644.152448 - } - } - }, - { - "id": "e39cb009-d1e0-5c47-a21a-58761f4f0d5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.658347, - "y": -2644.152448 - }, - "endPoint": { - "x": 1211.417649, - "y": -2644.222421 - } - } - }, - { - "id": "ea115328-9846-5e3b-b854-92d5e950ab72", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.417649, - "y": -2644.222421 - }, - "endPoint": { - "x": 1211.211835, - "y": -2644.336106 - } - } - }, - { - "id": "a9953053-1109-5a74-91ab-9b93a6a34a6f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.211835, - "y": -2644.336106 - }, - "endPoint": { - "x": 1210.949284, - "y": -2644.458599 - } - } - }, - { - "id": "3a452bdf-c76e-5e4b-ace0-c3b2f3508f96", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.949284, - "y": -2644.458599 - }, - "endPoint": { - "x": 1210.594702, - "y": -2644.633558 - } - } - }, - { - "id": "7e379668-664d-516b-8e16-81619c54e391", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.594702, - "y": -2644.633558 - }, - "endPoint": { - "x": 1210.318915, - "y": -2644.725387 - } - } - }, - { - "id": "71af5f57-fba5-5327-885a-a4bca3df4839", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.318915, - "y": -2644.725387 - }, - "endPoint": { - "x": 1210.174456, - "y": -2644.804113 - } - } - }, - { - "id": "acb1db11-b88d-54bf-addb-389692c80b44", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.174456, - "y": -2644.804113 - }, - "endPoint": { - "x": 1209.671104, - "y": -2644.825969 - } - } - }, - { - "id": "916bb466-b5c6-5613-9993-081b833b22b0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.671104, - "y": -2644.825969 - }, - "endPoint": { - "x": 1209.059613, - "y": -2644.796516 - } - } - }, - { - "id": "a5cacca7-57c4-5c3d-b138-82a4e6591d54", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.059613, - "y": -2644.796516 - }, - "endPoint": { - "x": 1208.69631, - "y": -2644.757153 - } - } - }, - { - "id": "f1ca5bc1-7de0-59a4-be30-ae92bf76ee15", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.69631, - "y": -2644.757153 - }, - "endPoint": { - "x": 1208.402979, - "y": -2644.542831 - } - } - }, - { - "id": "db725df5-6dbb-57d0-a4cd-3b6c0725810f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.402979, - "y": -2644.542831 - }, - "endPoint": { - "x": 1208.074662, - "y": -2644.381029 - } - } - }, - { - "id": "18f331bf-6798-5fd9-979c-b596338b8251", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.074662, - "y": -2644.381029 - }, - "endPoint": { - "x": 1207.794566, - "y": -2643.982995 - } - } - }, - { - "id": "f2cb444b-a6ba-5b74-bc43-7f6970f823a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.794566, - "y": -2643.982995 - }, - "endPoint": { - "x": 1207.662726, - "y": -2643.80187 - } - } - }, - { - "id": "b6fe4057-bc76-5f49-b418-80aa802443b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.662726, - "y": -2643.80187 - }, - "endPoint": { - "x": 1207.658314, - "y": -2643.360123 - } - } - }, - { - "id": "0a36bc5b-f513-5a95-a0ad-3589aff733a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.658314, - "y": -2643.360123 - }, - "endPoint": { - "x": 1207.737111, - "y": -2643.193917 - } - } - }, - { - "id": "95c34f0f-35dc-5708-aa0c-57b38e9e52e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.737111, - "y": -2643.193917 - }, - "endPoint": { - "x": 1207.776509, - "y": -2643.018958 - } - } - }, - { - "id": "32fe3d67-8d98-581d-9ebf-24827e0e0aa2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.776509, - "y": -2643.018958 - }, - "endPoint": { - "x": 1208.008485, - "y": -2642.721561 - } - } - }, - { - "id": "da51e388-d156-5b72-b669-00429c6d05c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.008485, - "y": -2642.721561 - }, - "endPoint": { - "x": 1208.266727, - "y": -2642.494081 - } - } - }, - { - "id": "edf2645c-5193-5246-85af-9fc6c104d6bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.266727, - "y": -2642.494081 - }, - "endPoint": { - "x": 1208.695694, - "y": -2642.432862 - } - } - }, - { - "id": "9513d1a0-50fc-5dfb-8759-435c6620a97d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.695694, - "y": -2642.432862 - }, - "endPoint": { - "x": 1208.995284, - "y": -2642.461545 - } - } - }, - { - "id": "730970fa-86f8-5806-b945-b1b5a6fd392b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.995284, - "y": -2642.461545 - }, - "endPoint": { - "x": 1209.415427, - "y": -2642.465894 - } - } - }, - { - "id": "81f76c85-1e8e-5f59-8713-afc96fefb0db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.415427, - "y": -2642.465894 - }, - "endPoint": { - "x": 1209.564299, - "y": -2642.48775 - } - } - }, - { - "id": "84ab125d-8881-5ae2-938f-d032f8038809", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.564299, - "y": -2642.48775 - }, - "endPoint": { - "x": 1209.686802, - "y": -2642.583983 - } - } - }, - { - "id": "7abf7b05-c81b-51fc-82b9-124a49d64261", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.686802, - "y": -2642.583983 - }, - "endPoint": { - "x": 1209.752465, - "y": -2642.614592 - } - } - }, - { - "id": "268abfa4-9817-5450-9a93-4ff05eda7434", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.752465, - "y": -2642.614592 - }, - "endPoint": { - "x": 1210.015119, - "y": -2642.618997 - } - } - }, - { - "id": "2ec4172c-2d48-51d5-a1ec-019b740a0aed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.015119, - "y": -2642.618997 - }, - "endPoint": { - "x": 1210.444086, - "y": -2642.623346 - } - } - }, - { - "id": "ab175e51-6bb3-566a-9ba4-473171f6c7f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.444086, - "y": -2642.623346 - }, - "endPoint": { - "x": 1210.592957, - "y": -2642.632099 - } - } - }, - { - "id": "1f0e919a-c1b3-5eea-8950-14830304f074", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.592957, - "y": -2642.632099 - }, - "endPoint": { - "x": 1210.623532, - "y": -2642.518359 - } - } - }, - { - "id": "a1f4b8d9-f46f-5f75-b135-cb26af8f85ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.623532, - "y": -2642.518359 - }, - "endPoint": { - "x": 1210.540427, - "y": -2642.295339 - } - } - }, - { - "id": "90db07c3-19d6-502c-972c-2974cb40da88", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.540427, - "y": -2642.295339 - }, - "endPoint": { - "x": 1210.321583, - "y": -2642.011044 - } - } - }, - { - "id": "5f7a03c4-14df-58ea-98fe-09538dce8553", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.321583, - "y": -2642.011044 - }, - "endPoint": { - "x": 1210.225242, - "y": -2641.840434 - } - } - }, - { - "id": "debe4379-ea55-5b2b-9ec5-07f1e980bd47", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.225242, - "y": -2641.840434 - }, - "endPoint": { - "x": 1209.984442, - "y": -2641.818578 - } - } - }, - { - "id": "8aa91b79-0aab-5573-b071-5f0f5a570daa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.984442, - "y": -2641.818578 - }, - "endPoint": { - "x": 1209.86635, - "y": -2641.787969 - } - } - }, - { - "id": "b6e34cb8-4093-5376-ab99-4ad814a9bacd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.86635, - "y": -2641.787969 - }, - "endPoint": { - "x": 1209.800687, - "y": -2641.726694 - } - } - }, - { - "id": "3986bddd-a607-5cb7-be88-67508664cc36", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.800687, - "y": -2641.726694 - }, - "endPoint": { - "x": 1209.503047, - "y": -2641.726694 - } - } - }, - { - "id": "684c785d-1834-5ebd-b3ed-936929913bce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.503047, - "y": -2641.726694 - }, - "endPoint": { - "x": 1209.476781, - "y": -2641.805476 - } - } - }, - { - "id": "35bfa11d-921e-5d5a-a6bd-e5effb3036f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.476781, - "y": -2641.805476 - }, - "endPoint": { - "x": 1209.17473, - "y": -2641.822927 - } - } - }, - { - "id": "ca44e84c-ab4c-5bb5-acde-956f2ebe38cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.17473, - "y": -2641.822927 - }, - "endPoint": { - "x": 1208.351782, - "y": -2641.840434 - } - } - }, - { - "id": "24b9aa30-3234-5f34-967a-33bd35100bd3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.351782, - "y": -2641.840434 - }, - "endPoint": { - "x": 1207.984067, - "y": -2641.814174 - } - } - }, - { - "id": "f22af51c-c522-565c-b612-2fd79e115c7a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.984067, - "y": -2641.814174 - }, - "endPoint": { - "x": 1207.900961, - "y": -2641.735448 - } - } - }, - { - "id": "d42f81cb-a3f5-52fe-ae70-c272b0dadf06", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.900961, - "y": -2641.735448 - }, - "endPoint": { - "x": 1207.769634, - "y": -2641.626112 - } - } - }, - { - "id": "002fec82-e517-5933-a102-330af6344865", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.769634, - "y": -2641.626112 - }, - "endPoint": { - "x": 1207.667343, - "y": -2641.541385 - } - } - }, - { - "id": "d049b2c7-6734-575a-898b-77764f735a4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.667343, - "y": -2641.541385 - }, - "endPoint": { - "x": 1207.632357, - "y": -2641.458255 - } - } - }, - { - "id": "cf6bc84f-39a7-5e99-b06a-f774521a67e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.632357, - "y": -2641.458255 - }, - "endPoint": { - "x": 1207.575414, - "y": -2641.217728 - } - } - }, - { - "id": "eede5645-eeff-53e3-a333-e43f2797ba70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.575414, - "y": -2641.217728 - }, - "endPoint": { - "x": 1207.557972, - "y": -2641.016508 - } - } - }, - { - "id": "edabb24d-862d-5aa0-9124-8d1650b6e6ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.557972, - "y": -2641.016508 - }, - "endPoint": { - "x": 1207.627945, - "y": -2640.535398 - } - } - }, - { - "id": "00dafe89-7e62-5d27-be4d-99d3565ffc96", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.627945, - "y": -2640.535398 - }, - "endPoint": { - "x": 1207.820318, - "y": -2640.252755 - } - } - }, - { - "id": "d668d2b4-e573-535d-9328-337320f2cabe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.820318, - "y": -2640.252755 - }, - "endPoint": { - "x": 1208.1354, - "y": -2640.099707 - } - } - }, - { - "id": "dafa4975-6216-5ec3-95f1-c007f4d07a30", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.1354, - "y": -2640.099707 - }, - "endPoint": { - "x": 1208.481262, - "y": -2640.095303 - } - } - }, - { - "id": "39ade8d7-82a6-56cc-b7d9-2e7081edf102", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.481262, - "y": -2640.095303 - }, - "endPoint": { - "x": 1208.50527, - "y": -2640.043278 - } - } - }, - { - "id": "ea3a1067-1d0e-561f-bac4-c72dfbd68527", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.50527, - "y": -2640.043278 - }, - "endPoint": { - "x": 1208.459101, - "y": -2639.989436 - } - } - }, - { - "id": "7e544ed8-118b-596b-9715-863c5014f25f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.459101, - "y": -2639.989436 - }, - "endPoint": { - "x": 1208.174388, - "y": -2639.877953 - } - } - }, - { - "id": "0105639f-0bd5-5339-ad14-313b66801503", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.174388, - "y": -2639.877953 - }, - "endPoint": { - "x": 1207.912658, - "y": -2639.697214 - } - } - }, - { - "id": "c03fa553-e3c9-5430-a956-5c0a035dd0a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.912658, - "y": -2639.697214 - }, - "endPoint": { - "x": 1207.808827, - "y": -2639.501114 - } - } - }, - { - "id": "9de2422d-b3b6-526c-b49e-ff0ff8306040", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.808827, - "y": -2639.501114 - }, - "endPoint": { - "x": 1207.777535, - "y": -2638.895144 - } - } - }, - { - "id": "a77ab7f2-a477-5aa1-bef8-67de34a4ea6b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.777535, - "y": -2638.895144 - }, - "endPoint": { - "x": 1207.862281, - "y": -2638.422182 - } - } - }, - { - "id": "cbe8a7fd-d91d-5297-8af4-b6106e799d61", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.862281, - "y": -2638.422182 - }, - "endPoint": { - "x": 1207.958417, - "y": -2637.995409 - } - } - }, - { - "id": "ef5f8ba2-4593-578f-b821-0a68ff131c6d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.958417, - "y": -2637.995409 - }, - "endPoint": { - "x": 1208.30551, - "y": -2637.612514 - } - } - }, - { - "id": "e36bd289-4ee3-596a-a4fd-16e51f34d821", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.30551, - "y": -2637.612514 - }, - "endPoint": { - "x": 1208.632596, - "y": -2637.389494 - } - } - }, - { - "id": "07b6a17f-32bd-5005-8f86-cef38faa6622", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.632596, - "y": -2637.389494 - }, - "endPoint": { - "x": 1208.794189, - "y": -2637.254944 - } - } - }, - { - "id": "605f88c7-ccd4-5693-8e4a-2af44fc0451b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.794189, - "y": -2637.254944 - }, - "endPoint": { - "x": 1209.102089, - "y": -2637.239529 - } - } - }, - { - "id": "bc33cf0d-1649-51ad-861e-3a65e519c3c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.102089, - "y": -2637.239529 - }, - "endPoint": { - "x": 1209.198225, - "y": -2637.158821 - } - } - }, - { - "id": "8580436f-118f-58ee-b6ea-a4d5774deaec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.198225, - "y": -2637.158821 - }, - "endPoint": { - "x": 1209.613854, - "y": -2637.135754 - } - } - }, - { - "id": "b9fbe0aa-5c86-5e62-837c-b3c3ba9efb4a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.613854, - "y": -2637.135754 - }, - "endPoint": { - "x": 1210.025584, - "y": -2637.139552 - } - } - }, - { - "id": "82a17ee3-941e-5389-a80d-1fb54e390d3f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.025584, - "y": -2637.139552 - }, - "endPoint": { - "x": 1210.115974, - "y": -2637.139277 - } - } - } - ] - }, - { - "id": "85eac55a-6458-562b-9b34-8249ef932a9f", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "8f5f52d4-6ea0-5a18-b942-bd1900f1573c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.259475, - "y": -2639.073351 - }, - "endPoint": { - "x": 1212.131329, - "y": -2638.890464 - } - } - }, - { - "id": "41778579-0938-53ca-966d-fb0b79e5deaa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.131329, - "y": -2638.890464 - }, - "endPoint": { - "x": 1211.943059, - "y": -2638.741545 - } - } - }, - { - "id": "d481e54d-92c3-5c7a-8cce-91b392aaf3bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.943059, - "y": -2638.741545 - }, - "endPoint": { - "x": 1211.739092, - "y": -2638.710165 - } - } - }, - { - "id": "c43127af-79d8-53ef-ae42-ff236c50fd9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.739092, - "y": -2638.710165 - }, - "endPoint": { - "x": 1211.576986, - "y": -2638.817298 - } - } - }, - { - "id": "01805de4-d444-5e40-b128-8cdd1e00a514", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.576986, - "y": -2638.817298 - }, - "endPoint": { - "x": 1211.472437, - "y": -2638.960987 - } - } - }, - { - "id": "54313b2f-bc35-5bda-a1ff-79273dd40b38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.472437, - "y": -2638.960987 - }, - "endPoint": { - "x": 1211.359989, - "y": -2639.151691 - } - } - }, - { - "id": "c6628b41-53a8-5b89-b88a-d9f8130e28bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.359989, - "y": -2639.151691 - }, - "endPoint": { - "x": 1211.323361, - "y": -2639.318943 - } - } - }, - { - "id": "544a31ef-acb4-5fdf-ac8d-5141015a8fc3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.323361, - "y": -2639.318943 - }, - "endPoint": { - "x": 1211.341726, - "y": -2639.475679 - } - } - }, - { - "id": "24f1d681-d6d3-51cc-9929-4046d83fd8d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.341726, - "y": -2639.475679 - }, - "endPoint": { - "x": 1211.446274, - "y": -2639.621956 - } - } - }, - { - "id": "5a99f0ed-d1c4-5e37-89b5-8259f5346f7d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.446274, - "y": -2639.621956 - }, - "endPoint": { - "x": 1211.608381, - "y": -2639.82312 - } - } - }, - { - "id": "29e1f7e2-3aad-587b-8e16-b179ba80930a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.608381, - "y": -2639.82312 - }, - "endPoint": { - "x": 1211.799318, - "y": -2639.930254 - } - } - }, - { - "id": "a959fddf-9711-5b54-be85-53f50b85022b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.799318, - "y": -2639.930254 - }, - "endPoint": { - "x": 1211.963887, - "y": -2639.953872 - } - } - }, - { - "id": "d18495bc-7a69-596e-95e4-bbf25725ebb7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.963887, - "y": -2639.953872 - }, - "endPoint": { - "x": 1212.129174, - "y": -2639.863309 - } - } - }, - { - "id": "9c35173b-13f4-5361-98ae-dca50643aaa1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.129174, - "y": -2639.863309 - }, - "endPoint": { - "x": 1212.257115, - "y": -2639.671559 - } - } - }, - { - "id": "029f1ca9-6994-59bc-a706-802a6181d11d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.257115, - "y": -2639.671559 - }, - "endPoint": { - "x": 1212.272505, - "y": -2639.350268 - } - } - }, - { - "id": "23e0f715-d0fc-5ad5-a5d5-a3c7e743dbef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.272505, - "y": -2639.350268 - }, - "endPoint": { - "x": 1212.259475, - "y": -2639.073351 - } - } - } - ] - }, - { - "id": "f7405ea4-1297-5bf5-8d25-6df9b45046ab", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "8f93d80b-f1ba-578a-a23b-670e8051c6c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.582048, - "y": -2639.594925 - }, - "endPoint": { - "x": 1209.33304, - "y": -2639.870741 - } - } - }, - { - "id": "25e4a656-021c-59d7-99d5-7bec30b42ac5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.33304, - "y": -2639.870741 - }, - "endPoint": { - "x": 1209.296002, - "y": -2639.889019 - } - } - }, - { - "id": "34c002cc-82e3-597d-a599-55572ff0014e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.296002, - "y": -2639.889019 - }, - "endPoint": { - "x": 1209.286768, - "y": -2639.935484 - } - } - }, - { - "id": "7fb0b88a-2729-5a8a-9608-6a13e4cafbf9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.286768, - "y": -2639.935484 - }, - "endPoint": { - "x": 1209.290461, - "y": -2639.985637 - } - } - }, - { - "id": "288ea56e-2d16-57d4-b0e0-eb434ff6ad93", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.290461, - "y": -2639.985637 - }, - "endPoint": { - "x": 1209.338478, - "y": -2640.016742 - } - } - }, - { - "id": "32ff1ce8-686c-588a-968f-b6fcd5be800e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.338478, - "y": -2640.016742 - }, - "endPoint": { - "x": 1209.544189, - "y": -2640.000557 - } - } - }, - { - "id": "9a61917b-1a3e-5cee-b0da-847fdf60a0a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.544189, - "y": -2640.000557 - }, - "endPoint": { - "x": 1209.820181, - "y": -2639.957285 - } - } - }, - { - "id": "cdaa76a8-d78d-5c37-ab49-cbe0d62b43bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.820181, - "y": -2639.957285 - }, - "endPoint": { - "x": 1209.912212, - "y": -2639.865346 - } - } - }, - { - "id": "32028755-726e-5eea-b7b7-291de7a571e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.912212, - "y": -2639.865346 - }, - "endPoint": { - "x": 1210.025789, - "y": -2639.740981 - } - } - }, - { - "id": "5b31abf0-aebf-55c6-8f7e-9661966cb1ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.025789, - "y": -2639.740981 - }, - "endPoint": { - "x": 1210.144907, - "y": -2639.622011 - } - } - }, - { - "id": "b0ef8818-a075-58c4-8614-4166a966207f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.144907, - "y": -2639.622011 - }, - "endPoint": { - "x": 1210.193642, - "y": -2639.4868 - } - } - }, - { - "id": "6dac6eff-30b8-529b-9a46-c9be841f6037", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.193642, - "y": -2639.4868 - }, - "endPoint": { - "x": 1210.177328, - "y": -2639.254256 - } - } - }, - { - "id": "8d756d15-ab32-5cb0-ad22-f8b210d5c805", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.177328, - "y": -2639.254256 - }, - "endPoint": { - "x": 1210.15568, - "y": -2639.108254 - } - } - }, - { - "id": "2e8c5a18-9517-545a-afdf-ec1bd39f97bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.15568, - "y": -2639.108254 - }, - "endPoint": { - "x": 1210.074524, - "y": -2638.99468 - } - } - }, - { - "id": "b25fffc2-32d6-550e-99b3-bab6764085ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.074524, - "y": -2638.99468 - }, - "endPoint": { - "x": 1210.004141, - "y": -2638.832438 - } - } - }, - { - "id": "71dd3f84-b159-52d2-9ba3-f3a756429007", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.004141, - "y": -2638.832438 - }, - "endPoint": { - "x": 1209.841829, - "y": -2638.751345 - } - } - }, - { - "id": "350e373c-ac05-50a7-8fd0-1adb2e5d1079", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.841829, - "y": -2638.751345 - }, - "endPoint": { - "x": 1209.739025, - "y": -2638.805407 - } - } - }, - { - "id": "91e14394-bf37-5436-b3b7-fea13b00779f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.739025, - "y": -2638.805407 - }, - "endPoint": { - "x": 1209.711939, - "y": -2638.956803 - } - } - }, - { - "id": "342e985d-476d-5775-8bbf-773578e5c072", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.711939, - "y": -2638.956803 - }, - "endPoint": { - "x": 1209.701063, - "y": -2639.329954 - } - } - }, - { - "id": "2efd6a81-ea37-5f0d-992e-ac580f416f3a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.701063, - "y": -2639.329954 - }, - "endPoint": { - "x": 1209.582048, - "y": -2639.594925 - } - } - } - ] - }, - { - "id": "f52e1684-b54b-5fd0-bf67-773672fb413d", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "e4479c6a-e4f6-5a7e-9a26-a8bf9856f69d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.916897, - "y": -2641.307189 - }, - "endPoint": { - "x": 1211.732218, - "y": -2641.37061 - } - } - }, - { - "id": "0cb1cfb6-fc14-516c-8b50-672af13f4a91", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.732218, - "y": -2641.37061 - }, - "endPoint": { - "x": 1211.634133, - "y": -2641.459962 - } - } - }, - { - "id": "5fea6ca0-5941-53af-a3c2-e67f7c7193d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.634133, - "y": -2641.459962 - }, - "endPoint": { - "x": 1211.631261, - "y": -2641.581079 - } - } - }, - { - "id": "a530d155-d5e1-57fd-b7c6-d1d1c733c837", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.631261, - "y": -2641.581079 - }, - "endPoint": { - "x": 1211.691794, - "y": -2641.624296 - } - } - }, - { - "id": "a1225a79-c157-5783-82ab-410ca8c4e361", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.691794, - "y": -2641.624296 - }, - "endPoint": { - "x": 1211.795727, - "y": -2641.690635 - } - } - }, - { - "id": "e35ad2ec-939a-5f64-b43d-b69f0de9cd2a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.795727, - "y": -2641.690635 - }, - "endPoint": { - "x": 1211.90243, - "y": -2641.785767 - } - } - }, - { - "id": "6c170720-b056-5d7d-b3dd-7aec424b1d5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.90243, - "y": -2641.785767 - }, - "endPoint": { - "x": 1212.026473, - "y": -2641.791547 - } - } - }, - { - "id": "9c62410a-bc37-5d30-b464-c1557b408aea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.026473, - "y": -2641.791547 - }, - "endPoint": { - "x": 1212.179448, - "y": -2641.771343 - } - } - }, - { - "id": "f2a1547c-07fe-56f5-8679-0d5c10640990", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.179448, - "y": -2641.771343 - }, - "endPoint": { - "x": 1212.280405, - "y": -2641.696415 - } - } - }, - { - "id": "70754fd7-6ae3-51f0-a225-eed86216e8fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.280405, - "y": -2641.696415 - }, - "endPoint": { - "x": 1212.280405, - "y": -2641.526301 - } - } - }, - { - "id": "3de5f082-2550-5d46-97d2-63ddf3814a2d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.280405, - "y": -2641.526301 - }, - "endPoint": { - "x": 1212.27466, - "y": -2641.382117 - } - } - }, - { - "id": "06b74769-fc81-51cc-ac06-a4a597bae3f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.27466, - "y": -2641.382117 - }, - "endPoint": { - "x": 1212.17083, - "y": -2641.321613 - } - } - }, - { - "id": "969a8950-0cea-5a92-8ae5-9aa7d308c6c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.17083, - "y": -2641.321613 - }, - "endPoint": { - "x": 1212.084236, - "y": -2641.286985 - } - } - }, - { - "id": "389d4fec-7309-5bc9-8692-5bae2ca225bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.084236, - "y": -2641.286985 - }, - "endPoint": { - "x": 1211.916897, - "y": -2641.307189 - } - } - } - ] - }, - { - "id": "ae36d26a-48ce-5a16-a183-0d29459da997", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "c37626a3-212f-5db4-9c86-35198f221913", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.115974, - "y": -2637.139277 - }, - "endPoint": { - "x": 1210.362725, - "y": -2636.988651 - } - } - }, - { - "id": "c856d210-0ecf-5e1f-8616-1704f496af48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.362725, - "y": -2636.988651 - }, - "endPoint": { - "x": 1210.591008, - "y": -2636.72368 - } - } - }, - { - "id": "4298d2e6-0d26-5831-b6a4-99010120e99b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.591008, - "y": -2636.72368 - }, - "endPoint": { - "x": 1210.795796, - "y": -2636.360219 - } - } - }, - { - "id": "32134f42-81f5-55c6-aa00-34b2e1b13b64", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.795796, - "y": -2636.360219 - }, - "endPoint": { - "x": 1210.993915, - "y": -2636.118756 - } - } - }, - { - "id": "c5d1ad7c-35bb-56ad-8b83-893e1f77b3c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.993915, - "y": -2636.118756 - }, - "endPoint": { - "x": 1211.255645, - "y": -2635.961084 - } - } - }, - { - "id": "082f2b7f-a163-5dca-80d1-566c8038d471", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.255645, - "y": -2635.961084 - }, - "endPoint": { - "x": 1211.534304, - "y": -2635.833635 - } - } - }, - { - "id": "a4ce908a-afe0-53f4-8365-9fe40b329104", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.534304, - "y": -2635.833635 - }, - "endPoint": { - "x": 1211.779311, - "y": -2635.84371 - } - } - }, - { - "id": "0b5ad470-1c43-5c21-b4cc-881cfd9662ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.779311, - "y": -2635.84371 - }, - "endPoint": { - "x": 1212.068025, - "y": -2635.964442 - } - } - }, - { - "id": "ce14f825-3dbe-5ec9-bf4d-1b33dddcf97d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.068025, - "y": -2635.964442 - }, - "endPoint": { - "x": 1212.366794, - "y": -2636.195885 - } - } - }, - { - "id": "0a726731-da7e-5d8a-b75a-8e53ee5e3397", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.366794, - "y": -2636.195885 - }, - "endPoint": { - "x": 1212.589742, - "y": -2636.461462 - } - } - }, - { - "id": "d97b3e04-f9b5-5428-8594-26d8c6ae2648", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.589742, - "y": -2636.461462 - }, - "endPoint": { - "x": 1212.710604, - "y": -2636.723075 - } - } - }, - { - "id": "2abfa5d7-9461-5701-8208-eb60d1a485c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.710604, - "y": -2636.723075 - }, - "endPoint": { - "x": 1212.831465, - "y": -2636.934369 - } - } - }, - { - "id": "89158081-fc73-534a-855e-84db82356f38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.831465, - "y": -2636.934369 - }, - "endPoint": { - "x": 1213.103353, - "y": -2637.045026 - } - } - }, - { - "id": "78282e95-29fe-5724-ae33-51e6685ad851", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.103353, - "y": -2637.045026 - }, - "endPoint": { - "x": 1213.502771, - "y": -2637.071892 - } - } - }, - { - "id": "6965baa7-ab7e-5871-bb0d-df11ec25509d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.502771, - "y": -2637.071892 - }, - "endPoint": { - "x": 1213.757936, - "y": -2637.128927 - } - } - }, - { - "id": "8b0cc4b2-deba-5e62-b482-8aaf4fa4906f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.757936, - "y": -2637.128927 - }, - "endPoint": { - "x": 1214.246102, - "y": -2637.115549 - } - } - }, - { - "id": "d72f8d1f-664f-5b05-8849-22e706f7003a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.246102, - "y": -2637.115549 - }, - "endPoint": { - "x": 1214.45089, - "y": -2636.988101 - } - } - }, - { - "id": "fe2f573e-3c82-5069-a5c5-2a61384018e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.45089, - "y": -2636.988101 - }, - "endPoint": { - "x": 1214.498804, - "y": -2636.958702 - } - } - }, - { - "id": "882be337-551d-5113-bfff-e957acb6abeb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.498804, - "y": -2636.958702 - }, - "endPoint": { - "x": 1214.723393, - "y": -2637.109108 - } - } - }, - { - "id": "ca07f3a1-8ff3-5caf-b265-70fa0efba7c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.723393, - "y": -2637.109108 - }, - "endPoint": { - "x": 1215.11009, - "y": -2637.500096 - } - } - }, - { - "id": "6c352953-42da-5ef9-97bb-e806f51e0bf4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.11009, - "y": -2637.500096 - }, - "endPoint": { - "x": 1215.660021, - "y": -2637.952688 - } - } - }, - { - "id": "50503c21-0cc5-5410-8b97-5d2493745cb2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.660021, - "y": -2637.952688 - }, - "endPoint": { - "x": 1215.938578, - "y": -2638.302055 - } - } - }, - { - "id": "73ca6da0-f70c-5649-a811-cfa4be578686", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.938578, - "y": -2638.302055 - }, - "endPoint": { - "x": 1215.964433, - "y": -2638.339547 - } - } - }, - { - "id": "a7feefee-1c01-5b44-92ec-9aa35c187ae3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.964433, - "y": -2638.339547 - }, - "endPoint": { - "x": 1215.820383, - "y": -2638.319617 - } - } - }, - { - "id": "e17b9742-bc41-5021-b057-e27942d6e503", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.820383, - "y": -2638.319617 - }, - "endPoint": { - "x": 1215.736252, - "y": -2638.311084 - } - } - }, - { - "id": "f6173de1-8f33-55a0-a679-084d1d3e9571", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.736252, - "y": -2638.311084 - }, - "endPoint": { - "x": 1215.633653, - "y": -2638.313947 - } - } - }, - { - "id": "59e57da3-a374-5256-9537-9fe9a676bba6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.633653, - "y": -2638.313947 - }, - "endPoint": { - "x": 1215.550958, - "y": -2638.336739 - } - } - }, - { - "id": "3901d3ac-ba2f-52a4-ab18-6f0fdbf22338", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.550958, - "y": -2638.336739 - }, - "endPoint": { - "x": 1215.536697, - "y": -2638.382323 - } - } - }, - { - "id": "13ba3431-0fde-52e8-acba-21f10dd43175", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.536697, - "y": -2638.382323 - }, - "endPoint": { - "x": 1215.556601, - "y": -2638.439303 - } - } - }, - { - "id": "eb38bd21-9c40-5443-a1f8-cd10c6c9b355", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.556601, - "y": -2638.439303 - }, - "endPoint": { - "x": 1215.562347, - "y": -2638.500522 - } - } - }, - { - "id": "2c27de66-3d3d-5b8c-bcfb-1b36dbf089fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.562347, - "y": -2638.500522 - }, - "endPoint": { - "x": 1215.530541, - "y": -2638.628466 - } - } - }, - { - "id": "5a49bbff-27bd-52f3-9e8e-2707dac9c4d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.530541, - "y": -2638.628466 - }, - "endPoint": { - "x": 1215.525206, - "y": -2638.75184 - } - } - }, - { - "id": "99332a05-48e9-52d2-91ed-41f8da439a48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.525206, - "y": -2638.75184 - }, - "endPoint": { - "x": 1215.537723, - "y": -2638.8609 - } - } - }, - { - "id": "c3f02290-40e6-5208-9901-2931c5f59f7a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.537723, - "y": -2638.8609 - }, - "endPoint": { - "x": 1215.544905, - "y": -2638.972934 - } - } - }, - { - "id": "52925dbc-0f07-55d3-9746-67143f42880d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.544905, - "y": -2638.972934 - }, - "endPoint": { - "x": 1215.568092, - "y": -2639.123119 - } - } - }, - { - "id": "a960ac22-82d8-5cfd-8ea5-f707145b867c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.568092, - "y": -2639.123119 - }, - "endPoint": { - "x": 1215.557422, - "y": -2639.257283 - } - } - }, - { - "id": "50582a7e-aaab-5ea8-ba51-81ac9cdaf07d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.557422, - "y": -2639.257283 - }, - "endPoint": { - "x": 1215.510842, - "y": -2639.402128 - } - } - }, - { - "id": "e1561242-ddfa-542c-b039-67c196cb3f02", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.510842, - "y": -2639.402128 - }, - "endPoint": { - "x": 1215.399522, - "y": -2639.545652 - } - } - }, - { - "id": "13b9948c-aade-5c87-b13e-e1c59627578b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.399522, - "y": -2639.545652 - }, - "endPoint": { - "x": 1215.283277, - "y": -2639.652951 - } - } - }, - { - "id": "51dd7a2c-cdf5-5732-8260-7551307d954e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.283277, - "y": -2639.652951 - }, - "endPoint": { - "x": 1215.140048, - "y": -2639.72986 - } - } - }, - { - "id": "82fd5bd8-69c0-5763-9bfc-3dc5db6a2316", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.140048, - "y": -2639.72986 - }, - "endPoint": { - "x": 1215.102497, - "y": -2639.778142 - } - } - }, - { - "id": "6806d986-613d-5132-8baa-0dd3df410d30", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.102497, - "y": -2639.778142 - }, - "endPoint": { - "x": 1215.060945, - "y": -2639.823671 - } - } - }, - { - "id": "af09955a-bd33-5ef5-a19a-ae80935a29c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.060945, - "y": -2639.823671 - }, - "endPoint": { - "x": 1214.770999, - "y": -2639.837985 - } - } - }, - { - "id": "25c6f08c-3662-5d74-823b-3c16cebea6bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.770999, - "y": -2639.837985 - }, - "endPoint": { - "x": 1214.395179, - "y": -2639.837985 - } - } - }, - { - "id": "b2d5516c-6ceb-52a7-b32b-f557d76a1227", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.395179, - "y": -2639.837985 - }, - "endPoint": { - "x": 1214.259235, - "y": -2639.741421 - } - } - }, - { - "id": "036f0567-b17a-5e89-adf4-cfdefbccf85c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.259235, - "y": -2639.741421 - }, - "endPoint": { - "x": 1214.214399, - "y": -2639.575106 - } - } - }, - { - "id": "0a794085-c4c9-5795-b193-2466dcd549cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.214399, - "y": -2639.575106 - }, - "endPoint": { - "x": 1214.230199, - "y": -2639.443253 - } - } - }, - { - "id": "6678694d-1b68-5c06-929a-d45639b4e042", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.230199, - "y": -2639.443253 - }, - "endPoint": { - "x": 1214.207012, - "y": -2639.303803 - } - } - }, - { - "id": "f75b740f-b0db-5402-9c88-53a8c27e4d25", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.207012, - "y": -2639.303803 - }, - "endPoint": { - "x": 1214.149659, - "y": -2639.219737 - } - } - }, - { - "id": "9285a8be-4f81-52fb-86da-369bc020f1cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.149659, - "y": -2639.219737 - }, - "endPoint": { - "x": 1214.122881, - "y": -2639.142828 - } - } - }, - { - "id": "c64f3741-d74f-5be3-9189-f69ff3893363", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.122881, - "y": -2639.142828 - }, - "endPoint": { - "x": 1214.110364, - "y": -2638.862112 - } - } - }, - { - "id": "37aaaf04-ffc7-5ce5-b9a6-edfb3ee83cdd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.110364, - "y": -2638.862112 - }, - "endPoint": { - "x": 1214.029823, - "y": -2638.733342 - } - } - }, - { - "id": "ff92be33-1c36-596d-bf8b-eedcd10e42e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.029823, - "y": -2638.733342 - }, - "endPoint": { - "x": 1213.947436, - "y": -2638.6332 - } - } - }, - { - "id": "fe55f050-965d-5f8d-a845-06e891e844ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.947436, - "y": -2638.6332 - }, - "endPoint": { - "x": 1213.875925, - "y": -2638.572367 - } - } - }, - { - "id": "652ea140-3ae8-56dc-befd-c6735724d2fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.875925, - "y": -2638.572367 - }, - "endPoint": { - "x": 1213.828729, - "y": -2638.569999 - } - } - }, - { - "id": "44df90e0-b65a-5237-9a7a-101c32d58fa9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.828729, - "y": -2638.569999 - }, - "endPoint": { - "x": 1213.726745, - "y": -2638.612886 - } - } - }, - { - "id": "a41c6dcc-6692-5239-878b-e8137aeff941", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.726745, - "y": -2638.612886 - }, - "endPoint": { - "x": 1213.622915, - "y": -2638.696952 - } - } - }, - { - "id": "312452d4-2010-57ba-83c4-d2337a289a5f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.622915, - "y": -2638.696952 - }, - "endPoint": { - "x": 1213.571, - "y": -2638.786358 - } - } - }, - { - "id": "2147657b-7729-52f0-8958-5827e12c7431", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.571, - "y": -2638.786358 - }, - "endPoint": { - "x": 1213.556739, - "y": -2638.965171 - } - } - }, - { - "id": "3117c609-8870-5233-98b8-8bc02480ec72", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.556739, - "y": -2638.965171 - }, - "endPoint": { - "x": 1213.51375, - "y": -2639.054578 - } - } - }, - { - "id": "325e93f0-b784-5934-9409-676da7e72820", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.51375, - "y": -2639.054578 - }, - "endPoint": { - "x": 1213.567409, - "y": -2639.169033 - } - } - }, - { - "id": "9b334a98-4646-5551-8803-02776e5a06e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.567409, - "y": -2639.169033 - }, - "endPoint": { - "x": 1213.567409, - "y": -2639.28448 - } - } - }, - { - "id": "5c68db6d-b694-5efb-acce-efc9a2695783", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.567409, - "y": -2639.28448 - }, - "endPoint": { - "x": 1213.569153, - "y": -2639.500839 - } - } - }, - { - "id": "250b6b7d-ad2b-56de-a3ea-36aa9bcda78d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.569153, - "y": -2639.500839 - }, - "endPoint": { - "x": 1213.597778, - "y": -2639.643922 - } - } - }, - { - "id": "3bd2f62b-8b1c-5628-a1a0-83165f1039ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.597778, - "y": -2639.643922 - }, - "endPoint": { - "x": 1213.683654, - "y": -2639.695782 - } - } - }, - { - "id": "0e4aa29f-6fda-56da-be59-57d14f24bfb9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.683654, - "y": -2639.695782 - }, - "endPoint": { - "x": 1213.758859, - "y": -2639.854335 - } - } - }, - { - "id": "4b52adc5-d67a-5428-92fd-1724139795f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.758859, - "y": -2639.854335 - }, - "endPoint": { - "x": 1213.916349, - "y": -2639.938402 - } - } - }, - { - "id": "e62406c9-ff4d-5e4d-8610-225792876cc6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.916349, - "y": -2639.938402 - }, - "endPoint": { - "x": 1214.170076, - "y": -2639.940604 - } - } - }, - { - "id": "7e7a55d7-ea8d-5712-ab43-5e2d45600da8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.170076, - "y": -2639.940604 - }, - "endPoint": { - "x": 1214.39169, - "y": -2639.926675 - } - } - }, - { - "id": "8d40ee6d-82e0-5105-9cf8-b00f9e85d653", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.39169, - "y": -2639.926675 - }, - "endPoint": { - "x": 1214.692306, - "y": -2639.937521 - } - } - }, - { - "id": "a579243e-abca-53c4-98da-8240a8b59168", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.692306, - "y": -2639.937521 - }, - "endPoint": { - "x": 1215.122299, - "y": -2639.952991 - } - } - }, - { - "id": "25e6cc3c-7eaf-5095-81a4-c19e78a11b6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.122299, - "y": -2639.952991 - }, - "endPoint": { - "x": 1215.503455, - "y": -2640.007218 - } - } - }, - { - "id": "c9096bf2-9070-5332-9c9f-c6b8307b634c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.503455, - "y": -2640.007218 - }, - "endPoint": { - "x": 1215.853728, - "y": -2640.083081 - } - } - }, - { - "id": "55f9e8ad-4b44-520a-ace5-9afe93d32131", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.853728, - "y": -2640.083081 - }, - "endPoint": { - "x": 1216.082832, - "y": -2640.261123 - } - } - }, - { - "id": "142edf9c-affb-53bd-a8f4-93b6e7b4f7c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.082832, - "y": -2640.261123 - }, - "endPoint": { - "x": 1216.257353, - "y": -2640.514809 - } - } - }, - { - "id": "b45b5cb2-8f6a-514a-90d6-eba82d5762d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.257353, - "y": -2640.514809 - }, - "endPoint": { - "x": 1216.265356, - "y": -2640.827896 - } - } - }, - { - "id": "6f8ce55f-81ba-5574-a8ba-cf97bb5e7521", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.265356, - "y": -2640.827896 - }, - "endPoint": { - "x": 1216.281156, - "y": -2641.041888 - } - } - }, - { - "id": "a6084857-74a2-59c9-9dae-506014db0a89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.281156, - "y": -2641.041888 - }, - "endPoint": { - "x": 1216.185944, - "y": -2641.25588 - } - } - }, - { - "id": "2e4707d4-00e0-5640-bd4a-8f16fa83501b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.185944, - "y": -2641.25588 - }, - "endPoint": { - "x": 1216.094733, - "y": -2641.39065 - } - } - }, - { - "id": "02a02352-912a-5ff8-b316-56af6c3a5d73", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.094733, - "y": -2641.39065 - }, - "endPoint": { - "x": 1215.884508, - "y": -2641.505546 - } - } - }, - { - "id": "67d57b96-3593-5351-a6c3-7ec7cf4714bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.884508, - "y": -2641.505546 - }, - "endPoint": { - "x": 1215.499864, - "y": -2641.54122 - } - } - }, - { - "id": "438cad82-d9d8-5401-9a4b-4f279778d433", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.499864, - "y": -2641.54122 - }, - "endPoint": { - "x": 1215.059611, - "y": -2641.553112 - } - } - }, - { - "id": "33923567-b3b9-5e9d-8561-adfa2174e1d4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.059611, - "y": -2641.553112 - }, - "endPoint": { - "x": 1214.55985, - "y": -2641.521401 - } - } - }, - { - "id": "cf4d10af-a3d4-5021-9add-ce90bb35bdbd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.55985, - "y": -2641.521401 - }, - "endPoint": { - "x": 1214.417032, - "y": -2641.461944 - } - } - }, - { - "id": "b8019203-9a60-536f-897e-8a00e58d62ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.417032, - "y": -2641.461944 - }, - "endPoint": { - "x": 1214.119597, - "y": -2641.446088 - } - } - }, - { - "id": "df8926bd-9f3e-5eb2-a490-8678e245e0e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.119597, - "y": -2641.446088 - }, - "endPoint": { - "x": 1213.89747, - "y": -2641.461944 - } - } - }, - { - "id": "75c5c18d-45ea-56fd-ac45-5a24f932f8ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.89747, - "y": -2641.461944 - }, - "endPoint": { - "x": 1213.725822, - "y": -2641.698067 - } - } - }, - { - "id": "adda4e97-998b-555a-aa45-3cfc434a8bf9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.725822, - "y": -2641.698067 - }, - "endPoint": { - "x": 1213.678216, - "y": -2641.816982 - } - } - }, - { - "id": "bbc78f61-0f2c-5b0b-9d23-918270136d65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.678216, - "y": -2641.816982 - }, - "endPoint": { - "x": 1213.598907, - "y": -2641.924005 - } - } - }, - { - "id": "0b4883da-0613-5260-94b1-70222dfff690", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.598907, - "y": -2641.924005 - }, - "endPoint": { - "x": 1213.444187, - "y": -2642.102322 - } - } - }, - { - "id": "1874e42c-2add-578c-8be4-dcb603f5496c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.444187, - "y": -2642.102322 - }, - "endPoint": { - "x": 1213.348975, - "y": -2642.201418 - } - } - }, - { - "id": "896bb219-4db4-5141-bd20-443906314cf1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.348975, - "y": -2642.201418 - }, - "endPoint": { - "x": 1213.333175, - "y": -2642.407482 - } - } - }, - { - "id": "ebb4a871-6a2e-56f8-b310-bdffd41839ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.333175, - "y": -2642.407482 - }, - "endPoint": { - "x": 1213.392683, - "y": -2642.554089 - } - } - }, - { - "id": "74da0051-9221-5936-b38b-ff4b9592a596", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.392683, - "y": -2642.554089 - }, - "endPoint": { - "x": 1213.499694, - "y": -2642.621474 - } - } - }, - { - "id": "b30e70e1-38a0-5dde-8aa3-20a7985508b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.499694, - "y": -2642.621474 - }, - "endPoint": { - "x": 1213.832936, - "y": -2642.633366 - } - } - }, - { - "id": "7484ee6c-2d6b-5a47-97bd-121a211f29b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.832936, - "y": -2642.633366 - }, - "endPoint": { - "x": 1214.364399, - "y": -2642.637329 - } - } - }, - { - "id": "d0929ac1-1c0b-58e9-a333-c792c018e51c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.364399, - "y": -2642.637329 - }, - "endPoint": { - "x": 1214.570623, - "y": -2642.633366 - } - } - }, - { - "id": "b47e3411-3bc4-5afd-ad52-b69ddc0df6a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.570623, - "y": -2642.633366 - }, - "endPoint": { - "x": 1214.721341, - "y": -2642.51847 - } - } - }, - { - "id": "5f178d79-162e-5d1a-99df-857f3f5024c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.721341, - "y": -2642.51847 - }, - "endPoint": { - "x": 1214.96327, - "y": -2642.447121 - } - } - }, - { - "id": "aa6d0edb-8f51-55da-ad77-4fad8906b524", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.96327, - "y": -2642.447121 - }, - "endPoint": { - "x": 1215.19812, - "y": -2642.403684 - } - } - }, - { - "id": "81cbf3ae-54c4-50fb-9e69-9993a6cb12d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.19812, - "y": -2642.403684 - }, - "endPoint": { - "x": 1215.475753, - "y": -2642.407647 - } - } - }, - { - "id": "8fe47e69-5a30-5baf-a090-fd659bdab257", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.475753, - "y": -2642.407647 - }, - "endPoint": { - "x": 1215.793092, - "y": -2642.39972 - } - } - }, - { - "id": "8f3432a0-f872-59e7-bbc3-ac76c570ab48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.793092, - "y": -2642.39972 - }, - "endPoint": { - "x": 1215.931909, - "y": -2642.387828 - } - } - }, - { - "id": "98a87db0-84fa-51dd-bdf8-41d0d59806cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.931909, - "y": -2642.387828 - }, - "endPoint": { - "x": 1215.991416, - "y": -2642.463141 - } - } - }, - { - "id": "9d6c59bc-ac33-5225-9c40-307082085611", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.991416, - "y": -2642.463141 - }, - "endPoint": { - "x": 1216.122333, - "y": -2642.498816 - } - } - }, - { - "id": "f874c27d-44f0-5cd1-a991-32dfdeba0c2c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.122333, - "y": -2642.498816 - }, - "endPoint": { - "x": 1216.209542, - "y": -2642.502779 - } - } - }, - { - "id": "e5f53a07-ce8e-5b8c-aeb5-8880f3c5b8a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.209542, - "y": -2642.502779 - }, - "endPoint": { - "x": 1216.265048, - "y": -2642.558273 - } - } - }, - { - "id": "8410642f-51d2-5ad4-8a0a-4691444d5682", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.265048, - "y": -2642.558273 - }, - "endPoint": { - "x": 1216.304754, - "y": -2642.669205 - } - } - }, - { - "id": "dfdd57da-b60a-5829-b618-945b06c30161", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.304754, - "y": -2642.669205 - }, - "endPoint": { - "x": 1216.36816, - "y": -2642.744518 - } - } - }, - { - "id": "a768acbf-d996-540a-9690-0a7eb0cc6616", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.36816, - "y": -2642.744518 - }, - "endPoint": { - "x": 1216.397401, - "y": -2643.08794 - } - } - }, - { - "id": "a4e58107-a612-5aa4-885e-534d0c569313", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.397401, - "y": -2643.08794 - }, - "endPoint": { - "x": 1216.407148, - "y": -2643.317346 - } - } - }, - { - "id": "7871a895-ecae-55b6-bd48-d777119b03fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.407148, - "y": -2643.317346 - }, - "endPoint": { - "x": 1216.399248, - "y": -2643.694406 - } - } - }, - { - "id": "eb81f978-ff8f-52c1-b4fd-8a8e2b7a342c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.399248, - "y": -2643.694406 - }, - "endPoint": { - "x": 1216.191587, - "y": -2644.166102 - } - } - }, - { - "id": "09e17b67-c704-5522-8b72-7106952cf879", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.191587, - "y": -2644.166102 - }, - "endPoint": { - "x": 1215.858858, - "y": -2644.502862 - } - } - }, - { - "id": "662ac709-0a90-5603-af4c-7afc44ebc625", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.858858, - "y": -2644.502862 - }, - "endPoint": { - "x": 1215.526232, - "y": -2644.599095 - } - } - }, - { - "id": "43a3bf8c-19f8-5a41-a622-e6c554ac2e4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.526232, - "y": -2644.599095 - }, - "endPoint": { - "x": 1215.32483, - "y": -2644.647211 - } - } - }, - { - "id": "bde40cca-552a-5c7b-9dad-e98cc59af04f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.32483, - "y": -2644.647211 - }, - "endPoint": { - "x": 1214.856464, - "y": -2644.699677 - } - } - }, - { - "id": "1adc9f47-d524-51ba-af98-4697da009197", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.856464, - "y": -2644.699677 - }, - "endPoint": { - "x": 1214.677019, - "y": -2644.73904 - } - } - }, - { - "id": "34a74d7d-a019-5247-9324-e6e16ce6cdd0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.677019, - "y": -2644.73904 - }, - "endPoint": { - "x": 1213.770966, - "y": -2644.577239 - } - } - }, - { - "id": "9cc76353-bfba-54e7-89f1-7f567431f652", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.770966, - "y": -2644.577239 - }, - "endPoint": { - "x": 1213.363852, - "y": -2644.502862 - } - } - }, - { - "id": "77582326-f7d0-53eb-840a-64025c2a57ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.363852, - "y": -2644.502862 - }, - "endPoint": { - "x": 1212.831465, - "y": -2644.301147 - } - } - }, - { - "id": "0c5e6c24-2447-53b3-bb94-1326bded52da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.831465, - "y": -2644.301147 - }, - "endPoint": { - "x": 1212.603798, - "y": -2644.22677 - } - } - }, - { - "id": "2c34ee58-9156-5a86-974d-a8b1f4718372", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.603798, - "y": -2644.22677 - }, - "endPoint": { - "x": 1212.393675, - "y": -2644.051811 - } - } - }, - { - "id": "e39dc167-4449-5932-b483-9d50d03bb1e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.393675, - "y": -2644.051811 - }, - "endPoint": { - "x": 1212.218641, - "y": -2643.872503 - } - } - }, - { - "id": "5d648df2-dd16-5bec-bc70-4cc51adcd290", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.218641, - "y": -2643.872503 - }, - "endPoint": { - "x": 1212.082902, - "y": -2643.863749 - } - } - }, - { - "id": "e9a19a64-54ff-5c89-9dee-240ad9c27378", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.082902, - "y": -2643.863749 - }, - "endPoint": { - "x": 1211.921001, - "y": -2643.959982 - } - } - }, - { - "id": "3039e5fe-8005-5b3b-b6a8-8201db97dffc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.921001, - "y": -2643.959982 - }, - "endPoint": { - "x": 1211.658347, - "y": -2644.152448 - } - } - }, - { - "id": "12d1830a-ae6a-5a75-84ac-580ff18fb034", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.658347, - "y": -2644.152448 - }, - "endPoint": { - "x": 1211.417649, - "y": -2644.222421 - } - } - }, - { - "id": "e3001b54-4a9c-5d91-85be-140ff333cd2f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.417649, - "y": -2644.222421 - }, - "endPoint": { - "x": 1211.211835, - "y": -2644.336106 - } - } - }, - { - "id": "4dcc699b-416c-54e6-aed1-31e0dbf60896", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.211835, - "y": -2644.336106 - }, - "endPoint": { - "x": 1210.949284, - "y": -2644.458599 - } - } - }, - { - "id": "0270d82e-4546-5397-b4f7-43b18f5eaa18", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.949284, - "y": -2644.458599 - }, - "endPoint": { - "x": 1210.594702, - "y": -2644.633558 - } - } - }, - { - "id": "8ee3c84f-d800-566b-88b7-a839669784e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.594702, - "y": -2644.633558 - }, - "endPoint": { - "x": 1210.318915, - "y": -2644.725387 - } - } - }, - { - "id": "af130c91-98f1-54f6-9e49-5d7dbefb07fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.318915, - "y": -2644.725387 - }, - "endPoint": { - "x": 1210.174456, - "y": -2644.804113 - } - } - }, - { - "id": "7a8a4edb-bcde-5e23-ae44-c455097e33e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.174456, - "y": -2644.804113 - }, - "endPoint": { - "x": 1209.671104, - "y": -2644.825969 - } - } - }, - { - "id": "cdd7fb0c-6cb3-514a-8cc0-20f2c1bf8d9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.671104, - "y": -2644.825969 - }, - "endPoint": { - "x": 1209.059613, - "y": -2644.796516 - } - } - }, - { - "id": "57a72c69-9fb9-50c5-b1c9-bb9dd8dccfcb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.059613, - "y": -2644.796516 - }, - "endPoint": { - "x": 1208.69631, - "y": -2644.757153 - } - } - }, - { - "id": "bd8a2eab-95cc-57e2-80cf-df8a4330ed0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.69631, - "y": -2644.757153 - }, - "endPoint": { - "x": 1208.402979, - "y": -2644.542831 - } - } - }, - { - "id": "15bd2ad2-f3b1-533f-8682-f23efb6f48e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.402979, - "y": -2644.542831 - }, - "endPoint": { - "x": 1208.074662, - "y": -2644.381029 - } - } - }, - { - "id": "2c8fcba4-3982-5403-86ae-984fb21bdb10", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.074662, - "y": -2644.381029 - }, - "endPoint": { - "x": 1207.794566, - "y": -2643.982995 - } - } - }, - { - "id": "31a3ba30-cd1f-5b9c-bd5e-961e007674ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.794566, - "y": -2643.982995 - }, - "endPoint": { - "x": 1207.662726, - "y": -2643.80187 - } - } - }, - { - "id": "f993719a-72aa-538a-8b07-6fce04d156ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.662726, - "y": -2643.80187 - }, - "endPoint": { - "x": 1207.658314, - "y": -2643.360123 - } - } - }, - { - "id": "00f2db91-e81d-5093-ae57-1d125f7e1525", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.658314, - "y": -2643.360123 - }, - "endPoint": { - "x": 1207.737111, - "y": -2643.193917 - } - } - }, - { - "id": "024f3f01-48fa-5470-8f75-eafe558369d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.737111, - "y": -2643.193917 - }, - "endPoint": { - "x": 1207.776509, - "y": -2643.018958 - } - } - }, - { - "id": "0cc65787-df34-5fec-91d0-a99b40a6b756", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.776509, - "y": -2643.018958 - }, - "endPoint": { - "x": 1208.008485, - "y": -2642.721561 - } - } - }, - { - "id": "7e5b748b-a51b-56e9-84ec-0bccfc75fea2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.008485, - "y": -2642.721561 - }, - "endPoint": { - "x": 1208.266727, - "y": -2642.494081 - } - } - }, - { - "id": "5614cbb9-d2e3-5a94-8047-34f8e52561ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.266727, - "y": -2642.494081 - }, - "endPoint": { - "x": 1208.695694, - "y": -2642.432862 - } - } - }, - { - "id": "63414066-40dd-5f50-b279-fadcaa45e7af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.695694, - "y": -2642.432862 - }, - "endPoint": { - "x": 1208.995284, - "y": -2642.461545 - } - } - }, - { - "id": "6b448791-031f-5f8f-b58e-8c5ac76e19e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.995284, - "y": -2642.461545 - }, - "endPoint": { - "x": 1209.415427, - "y": -2642.465894 - } - } - }, - { - "id": "89e5cb7f-e703-5692-a123-42e24d49c1ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.415427, - "y": -2642.465894 - }, - "endPoint": { - "x": 1209.564299, - "y": -2642.48775 - } - } - }, - { - "id": "0820bc6d-6e18-5013-85ff-a819f33c0a03", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.564299, - "y": -2642.48775 - }, - "endPoint": { - "x": 1209.686802, - "y": -2642.583983 - } - } - }, - { - "id": "3507be2b-9b34-5726-9e7a-cf9f564c2cc5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.686802, - "y": -2642.583983 - }, - "endPoint": { - "x": 1209.752465, - "y": -2642.614592 - } - } - }, - { - "id": "d8eaf7a0-827a-5e46-8983-000e70649778", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.752465, - "y": -2642.614592 - }, - "endPoint": { - "x": 1210.015119, - "y": -2642.618997 - } - } - }, - { - "id": "6bba2a65-6450-5c24-a01f-73726c2640b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.015119, - "y": -2642.618997 - }, - "endPoint": { - "x": 1210.444086, - "y": -2642.623346 - } - } - }, - { - "id": "b1d3206e-be9b-5c2c-94d7-0958fc2972bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.444086, - "y": -2642.623346 - }, - "endPoint": { - "x": 1210.592957, - "y": -2642.632099 - } - } - }, - { - "id": "ea5f1405-becc-5165-9cf3-92bce89ecf26", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.592957, - "y": -2642.632099 - }, - "endPoint": { - "x": 1210.623532, - "y": -2642.518359 - } - } - }, - { - "id": "d6890f7e-1177-5e70-bb5e-1700c35c306d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.623532, - "y": -2642.518359 - }, - "endPoint": { - "x": 1210.540427, - "y": -2642.295339 - } - } - }, - { - "id": "249f3d70-4182-5d7f-9b1e-c4e08edd9155", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.540427, - "y": -2642.295339 - }, - "endPoint": { - "x": 1210.321583, - "y": -2642.011044 - } - } - }, - { - "id": "2e958215-9a68-5b80-9520-9c08b08a606b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.321583, - "y": -2642.011044 - }, - "endPoint": { - "x": 1210.225242, - "y": -2641.840434 - } - } - }, - { - "id": "25271397-9403-5d94-bba3-82e46eae52f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.225242, - "y": -2641.840434 - }, - "endPoint": { - "x": 1209.984442, - "y": -2641.818578 - } - } - }, - { - "id": "89d6616e-d05a-57ff-b754-b6e7061e5704", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.984442, - "y": -2641.818578 - }, - "endPoint": { - "x": 1209.86635, - "y": -2641.787969 - } - } - }, - { - "id": "aea6aabd-0b2f-53ab-b167-ab9a6691d5a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.86635, - "y": -2641.787969 - }, - "endPoint": { - "x": 1209.800687, - "y": -2641.726694 - } - } - }, - { - "id": "b50e78ee-6c6f-576b-8115-2f6ee65e2b46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.800687, - "y": -2641.726694 - }, - "endPoint": { - "x": 1209.503047, - "y": -2641.726694 - } - } - }, - { - "id": "8a92058e-ef76-56b3-885d-e3f07e55a8b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.503047, - "y": -2641.726694 - }, - "endPoint": { - "x": 1209.476781, - "y": -2641.805476 - } - } - }, - { - "id": "3ef41fb0-a88d-5d9c-8cec-ba00e7d0bfb6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.476781, - "y": -2641.805476 - }, - "endPoint": { - "x": 1209.17473, - "y": -2641.822927 - } - } - }, - { - "id": "97aa8db7-6fec-5b45-8b62-e08748b05241", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.17473, - "y": -2641.822927 - }, - "endPoint": { - "x": 1208.351782, - "y": -2641.840434 - } - } - }, - { - "id": "0c5be93f-cc74-5e5b-ae0d-bac5e79e2c81", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.351782, - "y": -2641.840434 - }, - "endPoint": { - "x": 1207.984067, - "y": -2641.814174 - } - } - }, - { - "id": "6a0289d6-5aa8-5ec1-a3d7-63da0e188d77", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.984067, - "y": -2641.814174 - }, - "endPoint": { - "x": 1207.900961, - "y": -2641.735448 - } - } - }, - { - "id": "45f43f38-24bc-59d9-9072-1672acffb7da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.900961, - "y": -2641.735448 - }, - "endPoint": { - "x": 1207.769634, - "y": -2641.626112 - } - } - }, - { - "id": "fe9bcdf4-3409-5413-872e-9510dcf18701", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.769634, - "y": -2641.626112 - }, - "endPoint": { - "x": 1207.667343, - "y": -2641.541385 - } - } - }, - { - "id": "b7652d01-d9a6-5eb2-a65b-6364031ed190", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.667343, - "y": -2641.541385 - }, - "endPoint": { - "x": 1207.632357, - "y": -2641.458255 - } - } - }, - { - "id": "3c0fb5e0-0476-5e86-acf8-a3c211a38682", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.632357, - "y": -2641.458255 - }, - "endPoint": { - "x": 1207.575414, - "y": -2641.217728 - } - } - }, - { - "id": "64894fa2-0e5e-538c-a68c-f8925aa55ebc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.575414, - "y": -2641.217728 - }, - "endPoint": { - "x": 1207.557972, - "y": -2641.016508 - } - } - }, - { - "id": "2a3adf43-73b5-5115-9ffc-c7cba006b05a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.557972, - "y": -2641.016508 - }, - "endPoint": { - "x": 1207.627945, - "y": -2640.535398 - } - } - }, - { - "id": "75ac98d8-ea39-5084-841c-695a6ed9d8a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.627945, - "y": -2640.535398 - }, - "endPoint": { - "x": 1207.820318, - "y": -2640.252755 - } - } - }, - { - "id": "5c5b31ad-c341-5b5a-8f69-caca8e83dc7d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.820318, - "y": -2640.252755 - }, - "endPoint": { - "x": 1208.1354, - "y": -2640.099707 - } - } - }, - { - "id": "5b574704-7d3c-598c-ace2-841f7d2665dc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.1354, - "y": -2640.099707 - }, - "endPoint": { - "x": 1208.481262, - "y": -2640.095303 - } - } - }, - { - "id": "d26560f2-5596-5e87-93b9-6d9d97b6b969", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.481262, - "y": -2640.095303 - }, - "endPoint": { - "x": 1208.50527, - "y": -2640.043278 - } - } - }, - { - "id": "af66fed2-c68b-5521-9b51-ea044029343b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.50527, - "y": -2640.043278 - }, - "endPoint": { - "x": 1208.459101, - "y": -2639.989436 - } - } - }, - { - "id": "51826514-acbd-568e-be97-848759f40dba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.459101, - "y": -2639.989436 - }, - "endPoint": { - "x": 1208.174388, - "y": -2639.877953 - } - } - }, - { - "id": "fe27b090-de32-5eb5-b8ed-2b9daf4a2284", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.174388, - "y": -2639.877953 - }, - "endPoint": { - "x": 1207.912658, - "y": -2639.697214 - } - } - }, - { - "id": "46c4be52-6341-5484-abf4-baae62236169", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.912658, - "y": -2639.697214 - }, - "endPoint": { - "x": 1207.808827, - "y": -2639.501114 - } - } - }, - { - "id": "e69fe7d5-bfaf-5cbd-b8a6-187533da1476", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.808827, - "y": -2639.501114 - }, - "endPoint": { - "x": 1207.777535, - "y": -2638.895144 - } - } - }, - { - "id": "b1fb2675-3902-598c-a426-214dbc0d1570", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.777535, - "y": -2638.895144 - }, - "endPoint": { - "x": 1207.862281, - "y": -2638.422182 - } - } - }, - { - "id": "0eee8338-931c-561c-80c2-a504f2e77237", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.862281, - "y": -2638.422182 - }, - "endPoint": { - "x": 1207.958417, - "y": -2637.995409 - } - } - }, - { - "id": "a44dba95-b482-5d15-85cd-bdbca28147b0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.958417, - "y": -2637.995409 - }, - "endPoint": { - "x": 1208.30551, - "y": -2637.612514 - } - } - }, - { - "id": "8cf2ec19-2f24-5955-9482-30c1a29ec6ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.30551, - "y": -2637.612514 - }, - "endPoint": { - "x": 1208.632596, - "y": -2637.389494 - } - } - }, - { - "id": "2e195eef-9169-535d-814f-b9f372a828fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.632596, - "y": -2637.389494 - }, - "endPoint": { - "x": 1208.794189, - "y": -2637.254944 - } - } - }, - { - "id": "3cd77e5f-a100-547a-a19f-b7492d52964c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.794189, - "y": -2637.254944 - }, - "endPoint": { - "x": 1209.102089, - "y": -2637.239529 - } - } - }, - { - "id": "b8c85249-4659-5039-a070-d76b851e4d89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.102089, - "y": -2637.239529 - }, - "endPoint": { - "x": 1209.198225, - "y": -2637.158821 - } - } - }, - { - "id": "5752cca5-32cb-54ae-86cc-4c609b5bac24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.198225, - "y": -2637.158821 - }, - "endPoint": { - "x": 1209.613854, - "y": -2637.135754 - } - } - }, - { - "id": "9aa37ac7-d391-537c-9e80-6b2d377d8b3b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.613854, - "y": -2637.135754 - }, - "endPoint": { - "x": 1210.025584, - "y": -2637.139552 - } - } - }, - { - "id": "73d3d4fb-6348-538b-b946-2ed77b4da63f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.025584, - "y": -2637.139552 - }, - "endPoint": { - "x": 1210.115974, - "y": -2637.139277 - } - } - } - ] - }, - { - "id": "f2274896-db6b-5b12-9824-e91b7a9379b2", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "51ae8ae7-6508-5bdf-a3e2-65f7a8036ee4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.33304, - "y": -2639.870741 - }, - "endPoint": { - "x": 1209.582048, - "y": -2639.594925 - } - } - }, - { - "id": "1b07b6c9-74e1-5519-b81f-b0440dfca53d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.582048, - "y": -2639.594925 - }, - "endPoint": { - "x": 1209.701063, - "y": -2639.329954 - } - } - }, - { - "id": "b123b5ce-a3d6-5f6b-b382-0aafc8963863", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.701063, - "y": -2639.329954 - }, - "endPoint": { - "x": 1209.711939, - "y": -2638.956803 - } - } - }, - { - "id": "9ea9cbf9-b665-5b64-b248-76bce12bc9e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.711939, - "y": -2638.956803 - }, - "endPoint": { - "x": 1209.739025, - "y": -2638.805407 - } - } - }, - { - "id": "d6dbd403-6cad-5aa8-bb6e-a43bc6ad63ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.739025, - "y": -2638.805407 - }, - "endPoint": { - "x": 1209.841829, - "y": -2638.751345 - } - } - }, - { - "id": "503d950e-bc46-588a-bb76-751f6e243abf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.841829, - "y": -2638.751345 - }, - "endPoint": { - "x": 1210.004141, - "y": -2638.832438 - } - } - }, - { - "id": "bca18401-bfaf-5b31-82ae-cece9d7e08eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.004141, - "y": -2638.832438 - }, - "endPoint": { - "x": 1210.074524, - "y": -2638.99468 - } - } - }, - { - "id": "cb503f67-11cd-5150-8401-22645f56dfc2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.074524, - "y": -2638.99468 - }, - "endPoint": { - "x": 1210.15568, - "y": -2639.108254 - } - } - }, - { - "id": "cdf12f57-d2dd-5fdd-9460-aa8c76becef4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.15568, - "y": -2639.108254 - }, - "endPoint": { - "x": 1210.177328, - "y": -2639.254256 - } - } - }, - { - "id": "be00d7d1-dae8-54f2-b143-908c96784616", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.177328, - "y": -2639.254256 - }, - "endPoint": { - "x": 1210.193642, - "y": -2639.4868 - } - } - }, - { - "id": "60268cf5-0405-5849-ac07-cb569c79da98", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.193642, - "y": -2639.4868 - }, - "endPoint": { - "x": 1210.144907, - "y": -2639.622011 - } - } - }, - { - "id": "f50dffb2-ef23-525a-85a7-cfc612119e2c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.144907, - "y": -2639.622011 - }, - "endPoint": { - "x": 1210.025789, - "y": -2639.740981 - } - } - }, - { - "id": "51769fb4-87e2-5a8a-96c2-9b0843e65e71", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.025789, - "y": -2639.740981 - }, - "endPoint": { - "x": 1209.912212, - "y": -2639.865346 - } - } - }, - { - "id": "b4a5545a-f5cb-57b0-880e-3f15c0ab51c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.912212, - "y": -2639.865346 - }, - "endPoint": { - "x": 1209.820181, - "y": -2639.957285 - } - } - }, - { - "id": "60bf2d5d-1379-53c6-ba9b-489ab08bec74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.820181, - "y": -2639.957285 - }, - "endPoint": { - "x": 1209.544189, - "y": -2640.000557 - } - } - }, - { - "id": "00f63a51-e9a9-5513-a242-5a80112cdaf1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.544189, - "y": -2640.000557 - }, - "endPoint": { - "x": 1209.338478, - "y": -2640.016742 - } - } - }, - { - "id": "4fe4be62-7777-5db5-b14c-0498a882225d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.338478, - "y": -2640.016742 - }, - "endPoint": { - "x": 1209.290461, - "y": -2639.985637 - } - } - }, - { - "id": "5b977f48-ae82-54f9-a640-1bdb50f1da51", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.290461, - "y": -2639.985637 - }, - "endPoint": { - "x": 1209.286768, - "y": -2639.935484 - } - } - }, - { - "id": "f603bc2c-7b5d-5630-bc38-aaa2892c7392", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.286768, - "y": -2639.935484 - }, - "endPoint": { - "x": 1209.296002, - "y": -2639.889019 - } - } - }, - { - "id": "d6ad0919-8075-5c94-83cd-65ef797bdd22", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.296002, - "y": -2639.889019 - }, - "endPoint": { - "x": 1209.33304, - "y": -2639.870741 - } - } - } - ] - }, - { - "id": "374ff694-563d-5393-932d-1f2494dc0d21", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "dbead856-94d4-5271-a086-cbe6d9c51149", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.963887, - "y": -2639.953872 - }, - "endPoint": { - "x": 1212.129174, - "y": -2639.863309 - } - } - }, - { - "id": "ef0fd1b5-38ba-58c1-9fde-3b478a57ce02", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.129174, - "y": -2639.863309 - }, - "endPoint": { - "x": 1212.257115, - "y": -2639.671559 - } - } - }, - { - "id": "f8dbddae-eb0a-59fc-b411-50b580036864", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.257115, - "y": -2639.671559 - }, - "endPoint": { - "x": 1212.272505, - "y": -2639.350268 - } - } - }, - { - "id": "4993b5ce-6a28-5f62-ae72-7acedf354281", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.272505, - "y": -2639.350268 - }, - "endPoint": { - "x": 1212.259475, - "y": -2639.073351 - } - } - }, - { - "id": "00517822-39e8-5b21-80d7-7d5375cb74f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.259475, - "y": -2639.073351 - }, - "endPoint": { - "x": 1212.131329, - "y": -2638.890464 - } - } - }, - { - "id": "2cfcb3c8-0244-5ed6-b11e-beaca3371288", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.131329, - "y": -2638.890464 - }, - "endPoint": { - "x": 1211.943059, - "y": -2638.741545 - } - } - }, - { - "id": "56123354-4b6f-5f2e-9523-2e793c592f92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.943059, - "y": -2638.741545 - }, - "endPoint": { - "x": 1211.739092, - "y": -2638.710165 - } - } - }, - { - "id": "1531100e-ad43-5e69-8225-ca1001556056", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.739092, - "y": -2638.710165 - }, - "endPoint": { - "x": 1211.576986, - "y": -2638.817298 - } - } - }, - { - "id": "b0de477d-e40b-543a-88b0-ccb011bf1604", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.576986, - "y": -2638.817298 - }, - "endPoint": { - "x": 1211.472437, - "y": -2638.960987 - } - } - }, - { - "id": "bb7e984b-bc0b-59c1-8afa-d63cdcff6172", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.472437, - "y": -2638.960987 - }, - "endPoint": { - "x": 1211.359989, - "y": -2639.151691 - } - } - }, - { - "id": "3b9bfac5-7ff4-5a54-b598-e85eb4183509", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.359989, - "y": -2639.151691 - }, - "endPoint": { - "x": 1211.323361, - "y": -2639.318943 - } - } - }, - { - "id": "ff16a153-1673-5fd3-a7a2-0982f201dbca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.323361, - "y": -2639.318943 - }, - "endPoint": { - "x": 1211.341726, - "y": -2639.475679 - } - } - }, - { - "id": "c71e62ab-2ca1-58c4-847b-b73df29871c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.341726, - "y": -2639.475679 - }, - "endPoint": { - "x": 1211.446274, - "y": -2639.621956 - } - } - }, - { - "id": "2f649c6c-0da8-5502-a46e-d5bee3f602c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.446274, - "y": -2639.621956 - }, - "endPoint": { - "x": 1211.608381, - "y": -2639.82312 - } - } - }, - { - "id": "f70a2acc-20ad-5dcc-9723-f1eb40cf37e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.608381, - "y": -2639.82312 - }, - "endPoint": { - "x": 1211.799318, - "y": -2639.930254 - } - } - }, - { - "id": "2fd48790-1737-5b8b-9ed9-08a95bd47b30", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.799318, - "y": -2639.930254 - }, - "endPoint": { - "x": 1211.963887, - "y": -2639.953872 - } - } - } - ] - }, - { - "id": "19b4b0c2-466e-5581-91b7-a5f8d745a9f8", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "b7c35608-ef04-59a8-bcd2-09fd96a8f376", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.90243, - "y": -2641.785767 - }, - "endPoint": { - "x": 1211.795727, - "y": -2641.690635 - } - } - }, - { - "id": "2b6e7c65-8d46-54b8-bac7-0f6fa5eba786", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.795727, - "y": -2641.690635 - }, - "endPoint": { - "x": 1211.691794, - "y": -2641.624296 - } - } - }, - { - "id": "d14196b2-ea74-54d0-aa51-8a4063ea3c8b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.691794, - "y": -2641.624296 - }, - "endPoint": { - "x": 1211.631261, - "y": -2641.581079 - } - } - }, - { - "id": "fe591839-6d9b-56db-9dc9-f5d54b438854", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.631261, - "y": -2641.581079 - }, - "endPoint": { - "x": 1211.634133, - "y": -2641.459962 - } - } - }, - { - "id": "2ad7429d-1d38-5721-b5ce-8cd016c006ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.634133, - "y": -2641.459962 - }, - "endPoint": { - "x": 1211.732218, - "y": -2641.37061 - } - } - }, - { - "id": "a3a60731-b9a1-5d39-b5a9-26006f57dce2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.732218, - "y": -2641.37061 - }, - "endPoint": { - "x": 1211.916897, - "y": -2641.307189 - } - } - }, - { - "id": "99fba81a-22e4-52cf-adbe-aa67041fc0ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.916897, - "y": -2641.307189 - }, - "endPoint": { - "x": 1212.084236, - "y": -2641.286985 - } - } - }, - { - "id": "83e78684-6164-51f8-9a7f-55f91af04b82", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.084236, - "y": -2641.286985 - }, - "endPoint": { - "x": 1212.17083, - "y": -2641.321613 - } - } - }, - { - "id": "9be63bbd-9f2a-5d5c-b5fe-1cdbe8c2483d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.17083, - "y": -2641.321613 - }, - "endPoint": { - "x": 1212.27466, - "y": -2641.382117 - } - } - }, - { - "id": "0c765c94-752c-5937-a7c7-a90c0b53d355", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.27466, - "y": -2641.382117 - }, - "endPoint": { - "x": 1212.280405, - "y": -2641.526301 - } - } - }, - { - "id": "70a54d9a-58e0-5ec8-a232-15b0466e9aeb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.280405, - "y": -2641.526301 - }, - "endPoint": { - "x": 1212.280405, - "y": -2641.696415 - } - } - }, - { - "id": "474f17c6-e2f2-5032-9cd2-d53a81e7db5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.280405, - "y": -2641.696415 - }, - "endPoint": { - "x": 1212.179448, - "y": -2641.771343 - } - } - }, - { - "id": "5bdcc135-19fb-5c22-9b33-e591feef9486", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.179448, - "y": -2641.771343 - }, - "endPoint": { - "x": 1212.026473, - "y": -2641.791547 - } - } - }, - { - "id": "b313c1ca-f33c-5838-9c81-a07febc04bbc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.026473, - "y": -2641.791547 - }, - "endPoint": { - "x": 1211.90243, - "y": -2641.785767 - } - } - } - ] - }, - { - "id": "5c2b358d-1287-5854-9ac9-80f3e78d2948", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "2d644bd6-f8fd-5875-a866-26204e1ed182", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.402941, - "y": -2646.414474 - }, - "endPoint": { - "x": 1216.25961, - "y": -2646.217604 - } - } - }, - { - "id": "c917977c-5fdc-5a57-95f0-39fa12c5d8b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.25961, - "y": -2646.217604 - }, - "endPoint": { - "x": 1216.098427, - "y": -2646.092303 - } - } - }, - { - "id": "a4d67ff0-e06f-5936-836f-5fa87775b978", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.098427, - "y": -2646.092303 - }, - "endPoint": { - "x": 1215.856601, - "y": -2645.980435 - } - } - }, - { - "id": "fecab7b0-7db4-5d33-95d7-76d989ed811d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.856601, - "y": -2645.980435 - }, - "endPoint": { - "x": 1215.650582, - "y": -2645.890918 - } - } - }, - { - "id": "dce2e1c7-ace0-5b50-8894-3aba9f034b2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.650582, - "y": -2645.890918 - }, - "endPoint": { - "x": 1215.220589, - "y": -2645.90881 - } - } - }, - { - "id": "7396ee0d-51d2-5b41-95a8-969479d281d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.220589, - "y": -2645.90881 - }, - "endPoint": { - "x": 1214.911663, - "y": -2645.949109 - } - } - }, - { - "id": "6db07cb2-fff9-57a7-8d77-ae3525c2042d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.911663, - "y": -2645.949109 - }, - "endPoint": { - "x": 1214.778079, - "y": -2645.995739 - } - } - }, - { - "id": "95074458-a252-5954-ad58-ce173b950d99", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.778079, - "y": -2645.995739 - }, - "endPoint": { - "x": 1214.619666, - "y": -2646.049526 - } - } - }, - { - "id": "8afcd1f9-3add-5ad5-9775-bebc472a6a6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.619666, - "y": -2646.049526 - }, - "endPoint": { - "x": 1214.459611, - "y": -2646.018807 - } - } - }, - { - "id": "d6286b34-d442-51f5-9af4-c872223d2194", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.459611, - "y": -2646.018807 - }, - "endPoint": { - "x": 1214.271649, - "y": -2645.656226 - } - } - }, - { - "id": "8d302ec4-44fa-5f5d-9fb6-1b70b1eee930", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.271649, - "y": -2645.656226 - }, - "endPoint": { - "x": 1214.12996, - "y": -2645.400504 - } - } - }, - { - "id": "13a36ed5-fa0e-542d-81b6-ba91191d30dc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.12996, - "y": -2645.400504 - }, - "endPoint": { - "x": 1213.901574, - "y": -2645.211672 - } - } - }, - { - "id": "f38884f4-fa0f-5e61-b07e-6f47ceafbef3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.901574, - "y": -2645.211672 - }, - "endPoint": { - "x": 1213.708585, - "y": -2645.129092 - } - } - }, - { - "id": "93c3e05c-0e44-526d-be44-6ddc68639e6d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.708585, - "y": -2645.129092 - }, - "endPoint": { - "x": 1213.610193, - "y": -2645.113347 - } - } - }, - { - "id": "e70244fd-6663-53a2-9fe8-09b75f786d1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.610193, - "y": -2645.113347 - }, - "endPoint": { - "x": 1213.515699, - "y": -2645.042493 - } - } - }, - { - "id": "74018f4e-7358-5909-87d9-a6533272163d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.515699, - "y": -2645.042493 - }, - "endPoint": { - "x": 1213.090528, - "y": -2645.046457 - } - } - }, - { - "id": "6355d80b-78e8-5cae-96a0-ba10293ef5bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.090528, - "y": -2645.046457 - }, - "endPoint": { - "x": 1212.834543, - "y": -2645.097602 - } - } - }, - { - "id": "33837f09-f966-55b3-9851-362a606f0f85", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.834543, - "y": -2645.097602 - }, - "endPoint": { - "x": 1212.710706, - "y": -2645.224004 - } - } - }, - { - "id": "5c4f9699-96f8-5ba1-b007-89e5c1f1dfb8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.710706, - "y": -2645.224004 - }, - "endPoint": { - "x": 1212.64771, - "y": -2645.389218 - } - } - }, - { - "id": "1bb342ea-b206-555a-9043-a36552bc64db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.64771, - "y": -2645.389218 - }, - "endPoint": { - "x": 1212.376028, - "y": -2645.656722 - } - } - }, - { - "id": "b86fa93f-3e28-505e-890c-e57be991ccea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.376028, - "y": -2645.656722 - }, - "endPoint": { - "x": 1212.309031, - "y": -2645.888881 - } - } - }, - { - "id": "7574041e-b564-5701-87de-2036357dba65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.309031, - "y": -2645.888881 - }, - "endPoint": { - "x": 1212.076746, - "y": -2645.963588 - } - } - }, - { - "id": "2db7917d-207a-55b7-80cd-23476e1a28dc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.076746, - "y": -2645.963588 - }, - "endPoint": { - "x": 1211.722471, - "y": -2645.951807 - } - } - }, - { - "id": "22f4eefb-0c84-5fca-9c65-a5a5386fcec4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.722471, - "y": -2645.951807 - }, - "endPoint": { - "x": 1211.616179, - "y": -2645.904571 - } - } - }, - { - "id": "1262aad8-9831-546e-ab6c-b7dda9e1fb4b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.616179, - "y": -2645.904571 - }, - "endPoint": { - "x": 1211.470488, - "y": -2645.943934 - } - } - }, - { - "id": "88b9d4da-f88f-50b4-8d49-cf232e5d2a92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.470488, - "y": -2645.943934 - }, - "endPoint": { - "x": 1211.246001, - "y": -2646.002951 - } - } - }, - { - "id": "c8a2d22a-e051-54c7-bddc-d89b85d40293", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.246001, - "y": -2646.002951 - }, - "endPoint": { - "x": 1210.935023, - "y": -2645.940026 - } - } - }, - { - "id": "8df6adb3-5c6d-5ae9-980d-3ed177c73090", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.935023, - "y": -2645.940026 - }, - "endPoint": { - "x": 1210.802978, - "y": -2645.848582 - } - } - }, - { - "id": "8a10b4bf-b5cf-54f4-b1d2-fbc5d9ab9c43", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.802978, - "y": -2645.848582 - }, - "endPoint": { - "x": 1210.747882, - "y": -2645.636187 - } - } - }, - { - "id": "3b6b27c6-d5b4-5ec8-b432-10acb8f1dcc2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.747882, - "y": -2645.636187 - }, - "endPoint": { - "x": 1210.610091, - "y": -2645.368628 - } - } - }, - { - "id": "5b5fac88-74df-58ea-9bc3-394103b6b4e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.610091, - "y": -2645.368628 - }, - "endPoint": { - "x": 1210.499797, - "y": -2645.179796 - } - } - }, - { - "id": "910363e9-8a7c-5c34-b1ee-04d8eb5e2e89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.499797, - "y": -2645.179796 - }, - "endPoint": { - "x": 1210.358108, - "y": -2645.132615 - } - } - }, - { - "id": "d73c94d9-f13e-5075-aa94-26a6214ebea0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.358108, - "y": -2645.132615 - }, - "endPoint": { - "x": 1210.094326, - "y": -2645.108998 - } - } - }, - { - "id": "b419bfdc-78d0-5656-8d08-9838573a1374", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.094326, - "y": -2645.108998 - }, - "endPoint": { - "x": 1209.806843, - "y": -2645.179796 - } - } - }, - { - "id": "5f2a0453-e3ef-5fad-a2dc-de586bd2abbc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.806843, - "y": -2645.179796 - }, - "endPoint": { - "x": 1209.586357, - "y": -2645.376501 - } - } - }, - { - "id": "53817909-0127-5d8b-9caf-86d8183d0c78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.586357, - "y": -2645.376501 - }, - "endPoint": { - "x": 1209.381672, - "y": -2645.596824 - } - } - }, - { - "id": "be36ead5-d091-5272-b0ed-249f685665e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.381672, - "y": -2645.596824 - }, - "endPoint": { - "x": 1209.295078, - "y": -2645.703022 - } - } - }, - { - "id": "3ce5cf26-f47f-56cd-91fb-0332a16be14b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.295078, - "y": -2645.703022 - }, - "endPoint": { - "x": 1209.291077, - "y": -2645.813183 - } - } - }, - { - "id": "9f946442-0eda-5f61-883f-1570e159e85d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.291077, - "y": -2645.813183 - }, - "endPoint": { - "x": 1209.153286, - "y": -2645.942998 - } - } - }, - { - "id": "78ac58c5-51c6-5bfc-a2f6-2bb6c5bdc49f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.153286, - "y": -2645.942998 - }, - "endPoint": { - "x": 1209.121788, - "y": -2646.143667 - } - } - }, - { - "id": "4b9eb251-3842-5a35-8049-2a1a0fb6abf1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.121788, - "y": -2646.143667 - }, - "endPoint": { - "x": 1208.991898, - "y": -2646.379735 - } - } - }, - { - "id": "db0ffd5e-2b03-50b7-96bd-b9ac0a63719b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.991898, - "y": -2646.379735 - }, - "endPoint": { - "x": 1208.569805, - "y": -2646.723763 - } - } - }, - { - "id": "1ca5d404-ec24-574a-9eba-70d0593ca959", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.569805, - "y": -2646.723763 - }, - "endPoint": { - "x": 1208.455612, - "y": -2646.877196 - } - } - }, - { - "id": "97ecae3f-2190-5447-a369-203066c3a74e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.455612, - "y": -2646.877196 - }, - "endPoint": { - "x": 1208.156433, - "y": -2646.955922 - } - } - }, - { - "id": "44a59310-ec60-581e-afda-2e853396f58d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.156433, - "y": -2646.955922 - }, - "endPoint": { - "x": 1208.061939, - "y": -2647.050338 - } - } - }, - { - "id": "68acf8da-d4a3-5497-9016-b871df7a0c6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.061939, - "y": -2647.050338 - }, - "endPoint": { - "x": 1207.994942, - "y": -2647.258825 - } - } - }, - { - "id": "410eb9eb-e40f-5b8d-a6d6-f0a261fc1f24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.994942, - "y": -2647.258825 - }, - "endPoint": { - "x": 1207.908348, - "y": -2647.428003 - } - } - }, - { - "id": "d214546b-7e0f-5fda-8461-623fbe8ae40c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.908348, - "y": -2647.428003 - }, - "endPoint": { - "x": 1207.790257, - "y": -2647.510638 - } - } - }, - { - "id": "aadd5b70-ea34-5881-80f1-e6e7e4c8cd7e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.790257, - "y": -2647.510638 - }, - "endPoint": { - "x": 1207.764812, - "y": -2647.702058 - } - } - }, - { - "id": "2ec6b91f-f9ac-5a7d-a541-a6cc576e75da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.764812, - "y": -2647.702058 - }, - "endPoint": { - "x": 1207.715359, - "y": -2647.835397 - } - } - }, - { - "id": "a3679fef-e7c8-5e7b-b385-f7003fecef1a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.715359, - "y": -2647.835397 - }, - "endPoint": { - "x": 1207.646208, - "y": -2647.998354 - } - } - }, - { - "id": "663d114a-39a4-520b-95b6-70f45b84e890", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.646208, - "y": -2647.998354 - }, - "endPoint": { - "x": 1207.626406, - "y": -2648.111984 - } - } - }, - { - "id": "815aeff7-3dd0-57a2-a602-16ef9387025a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.626406, - "y": -2648.111984 - }, - "endPoint": { - "x": 1207.710435, - "y": -2648.20084 - } - } - }, - { - "id": "6d33e93d-5d85-5845-9a07-e0922af7db34", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.710435, - "y": -2648.20084 - }, - "endPoint": { - "x": 1207.720284, - "y": -2648.368752 - } - } - }, - { - "id": "22ead7c9-6a68-5589-8d86-aa71a6109640", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.720284, - "y": -2648.368752 - }, - "endPoint": { - "x": 1207.833964, - "y": -2648.541619 - } - } - }, - { - "id": "a3c99dbd-e5a3-5aed-8b95-c2c5a8d34461", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.833964, - "y": -2648.541619 - }, - "endPoint": { - "x": 1208.076201, - "y": -2648.650239 - } - } - }, - { - "id": "9a59d86a-5a0a-580f-9f57-7e131d5d4563", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.076201, - "y": -2648.650239 - }, - "endPoint": { - "x": 1208.402363, - "y": -2648.684813 - } - } - }, - { - "id": "2326a010-6be9-59b5-91f4-5c9ddeaeec4f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.402363, - "y": -2648.684813 - }, - "endPoint": { - "x": 1208.575345, - "y": -2648.674958 - } - } - }, - { - "id": "2d3053a0-df5b-5267-b914-8a7c3683b6c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.575345, - "y": -2648.674958 - }, - "endPoint": { - "x": 1208.743403, - "y": -2648.566283 - } - } - }, - { - "id": "2bc940d0-0056-54d0-b16e-ebe2d2b54fed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.743403, - "y": -2648.566283 - }, - "endPoint": { - "x": 1208.916385, - "y": -2648.576193 - } - } - }, - { - "id": "c230839c-dfcf-5b34-80ae-3f15e05b18ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.916385, - "y": -2648.576193 - }, - "endPoint": { - "x": 1208.936187, - "y": -2648.650239 - } - } - }, - { - "id": "dfdb0f4f-6900-591b-aef5-7013f13f6603", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.936187, - "y": -2648.650239 - }, - "endPoint": { - "x": 1208.871857, - "y": -2648.768769 - } - } - }, - { - "id": "dce0078b-edb1-523c-b01f-ff81fb39dd42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.871857, - "y": -2648.768769 - }, - "endPoint": { - "x": 1208.545694, - "y": -2648.852725 - } - } - }, - { - "id": "49698292-214c-5bed-a6d5-5863068ad9c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.545694, - "y": -2648.852725 - }, - "endPoint": { - "x": 1208.451816, - "y": -2649.020637 - } - } - }, - { - "id": "d28f6811-222d-5d59-9430-40b4843dc591", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.451816, - "y": -2649.020637 - }, - "endPoint": { - "x": 1208.229381, - "y": -2649.139167 - } - } - }, - { - "id": "ad47fdce-ff5c-57b3-8e3a-8c2cc0f74c39", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.229381, - "y": -2649.139167 - }, - "endPoint": { - "x": 1208.090975, - "y": -2649.341652 - } - } - }, - { - "id": "86db288a-0134-50b9-8453-4fdaafa29b75", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.090975, - "y": -2649.341652 - }, - "endPoint": { - "x": 1207.947644, - "y": -2649.598476 - } - } - }, - { - "id": "bc8de987-5f45-57d5-91d7-09d3d7a7436e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.947644, - "y": -2649.598476 - }, - "endPoint": { - "x": 1207.878595, - "y": -2649.88277 - } - } - }, - { - "id": "7322bc5a-1357-56e7-aa88-88a9dfaf2d5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.878595, - "y": -2649.88277 - }, - "endPoint": { - "x": 1207.809443, - "y": -2650.134639 - } - } - }, - { - "id": "f7c992e2-65f7-5163-b09c-f55c42b3a092", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.809443, - "y": -2650.134639 - }, - "endPoint": { - "x": 1207.87367, - "y": -2650.445799 - } - } - }, - { - "id": "6b9e55c4-586a-5cf3-82a2-1c073bafab3b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.87367, - "y": -2650.445799 - }, - "endPoint": { - "x": 1207.962623, - "y": -2650.712477 - } - } - }, - { - "id": "d67a9ef5-3847-5b9a-88d8-72d03c5de41f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.962623, - "y": -2650.712477 - }, - "endPoint": { - "x": 1208.209682, - "y": -2650.87048 - } - } - }, - { - "id": "6949bf9b-d6da-5cd0-9ce9-d383981ce037", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.209682, - "y": -2650.87048 - }, - "endPoint": { - "x": 1208.47172, - "y": -2650.944581 - } - } - }, - { - "id": "d8dfca8e-e3a4-5002-981f-cde2d991797a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.47172, - "y": -2650.944581 - }, - "endPoint": { - "x": 1208.679278, - "y": -2650.885289 - } - } - }, - { - "id": "18ecb324-9d6b-516a-bc40-6e682b1ef774", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.679278, - "y": -2650.885289 - }, - "endPoint": { - "x": 1208.816453, - "y": -2650.821868 - } - } - }, - { - "id": "40577868-ca1e-56b4-89ac-89b2c8c0158d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.816453, - "y": -2650.821868 - }, - "endPoint": { - "x": 1208.986152, - "y": -2650.809756 - } - } - }, - { - "id": "34df1975-4fbf-5cc0-bb01-9a16b3fa1b94", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.986152, - "y": -2650.809756 - }, - "endPoint": { - "x": 1209.124353, - "y": -2650.82429 - } - } - }, - { - "id": "9f2b2932-dc3e-585c-952a-2ecc9a5a60b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.124353, - "y": -2650.82429 - }, - "endPoint": { - "x": 1209.180065, - "y": -2650.858203 - } - } - }, - { - "id": "8e47f8b1-8c05-51c2-82c3-a74ecc59c91d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.180065, - "y": -2650.858203 - }, - "endPoint": { - "x": 1209.180065, - "y": -2650.942985 - } - } - }, - { - "id": "9d220c2c-adc6-5d3b-b07c-aa791c181432", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.180065, - "y": -2650.942985 - }, - "endPoint": { - "x": 1209.109682, - "y": -2651.146847 - } - } - }, - { - "id": "22fc2aa3-7840-5e3b-9fa5-a2ead660ae87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.109682, - "y": -2651.146847 - }, - "endPoint": { - "x": 1209.074695, - "y": -2651.297968 - } - } - }, - { - "id": "98849307-e662-5254-a6a3-02f9d4a53aaa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.074695, - "y": -2651.297968 - }, - "endPoint": { - "x": 1208.966146, - "y": -2651.390952 - } - } - }, - { - "id": "9180d84b-949e-513b-94d4-ab618d58d226", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.966146, - "y": -2651.390952 - }, - "endPoint": { - "x": 1208.927363, - "y": -2651.487846 - } - } - }, - { - "id": "253dd90a-d788-5e1f-9724-9dfe555247fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.927363, - "y": -2651.487846 - }, - "endPoint": { - "x": 1208.896378, - "y": -2651.728098 - } - } - }, - { - "id": "a5795d48-af7d-5b70-8790-3c9d43d8051d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.896378, - "y": -2651.728098 - }, - "endPoint": { - "x": 1208.729552, - "y": -2651.828846 - } - } - }, - { - "id": "3136f611-4d03-536d-9e60-735c974d1ffc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.729552, - "y": -2651.828846 - }, - "endPoint": { - "x": 1208.604894, - "y": -2652.056215 - } - } - }, - { - "id": "33724bba-fc73-58b1-803d-85841e3c08d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.604894, - "y": -2652.056215 - }, - "endPoint": { - "x": 1208.531125, - "y": -2652.253801 - } - } - }, - { - "id": "d3952232-f38f-586f-b9c6-b83c5fc3ed66", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.531125, - "y": -2652.253801 - }, - "endPoint": { - "x": 1208.310127, - "y": -2652.486346 - } - } - }, - { - "id": "c06a1ef3-46b7-596c-915a-3739fe723ec9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.310127, - "y": -2652.486346 - }, - "endPoint": { - "x": 1208.201577, - "y": -2652.703311 - } - } - }, - { - "id": "76a8e468-9342-53db-bedb-ad51ec51f74e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.201577, - "y": -2652.703311 - }, - "endPoint": { - "x": 1208.193779, - "y": -2653.114117 - } - } - }, - { - "id": "9aaf43c3-0014-578a-9c0f-23792ca50cd0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.193779, - "y": -2653.114117 - }, - "endPoint": { - "x": 1208.275243, - "y": -2653.214865 - } - } - }, - { - "id": "e1912472-a06d-5865-8e38-a75a430d59e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.275243, - "y": -2653.214865 - }, - "endPoint": { - "x": 1208.395387, - "y": -2653.404743 - } - } - }, - { - "id": "364ed3e1-d576-58cb-bc46-0d69d3071196", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.395387, - "y": -2653.404743 - }, - "endPoint": { - "x": 1208.539641, - "y": -2653.662117 - } - } - }, - { - "id": "10b64eed-590b-5cc2-80b5-8c52f03ba70c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.539641, - "y": -2653.662117 - }, - "endPoint": { - "x": 1208.869292, - "y": -2653.666026 - } - } - }, - { - "id": "e4176ca6-6ad9-5547-a184-f6eb0e5a18b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.869292, - "y": -2653.666026 - }, - "endPoint": { - "x": 1209.179552, - "y": -2653.681496 - } - } - }, - { - "id": "4f108177-5948-59cb-8486-81cb84156ef1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.179552, - "y": -2653.681496 - }, - "endPoint": { - "x": 1209.334682, - "y": -2653.658263 - } - } - }, - { - "id": "3552423f-30c5-55fb-bf5d-e8dfc928df11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.334682, - "y": -2653.658263 - }, - "endPoint": { - "x": 1209.381159, - "y": -2653.565223 - } - } - }, - { - "id": "bd2986c0-6c9b-5e8f-9d43-8ae599e196cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.381159, - "y": -2653.565223 - }, - "endPoint": { - "x": 1209.485913, - "y": -2653.510996 - } - } - }, - { - "id": "79934ff9-c41f-5dde-8120-3d4a54c3a22d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.485913, - "y": -2653.510996 - }, - "endPoint": { - "x": 1209.606159, - "y": -2653.495471 - } - } - }, - { - "id": "b47b44e9-54de-58b6-bf91-6d0c6b2f790d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.606159, - "y": -2653.495471 - }, - "endPoint": { - "x": 1209.726303, - "y": -2653.371491 - } - } - }, - { - "id": "2e2f76cb-e21e-547d-a48d-d826020be4c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.726303, - "y": -2653.371491 - }, - "endPoint": { - "x": 1209.86594, - "y": -2653.193229 - } - } - }, - { - "id": "1b3f1b3a-8cd5-56b1-af29-d80ab7e19903", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.86594, - "y": -2653.193229 - }, - "endPoint": { - "x": 1209.958997, - "y": -2653.108007 - } - } - }, - { - "id": "e1b55fce-ac0c-5751-b9eb-e14a7025db67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.958997, - "y": -2653.108007 - }, - "endPoint": { - "x": 1210.133519, - "y": -2653.061487 - } - } - }, - { - "id": "dbd43e55-20ea-5089-a076-f6ca51e4fbdf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.133519, - "y": -2653.061487 - }, - "endPoint": { - "x": 1210.245967, - "y": -2653.088628 - } - } - }, - { - "id": "03317333-01aa-539c-b866-6ce472ba1488", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.245967, - "y": -2653.088628 - }, - "endPoint": { - "x": 1210.33133, - "y": -2653.166088 - } - } - }, - { - "id": "6a290f8f-0d58-5f21-a441-eb4312d52cf7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.33133, - "y": -2653.166088 - }, - "endPoint": { - "x": 1210.424387, - "y": -2653.34435 - } - } - }, - { - "id": "03828a15-b9c5-5c94-ab75-7fe037d3030e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.424387, - "y": -2653.34435 - }, - "endPoint": { - "x": 1210.592342, - "y": -2653.41724 - } - } - }, - { - "id": "0d2bb04f-9a51-5adb-910c-dc4c0fbbcd1d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.592342, - "y": -2653.41724 - }, - "endPoint": { - "x": 1210.867718, - "y": -2653.483084 - } - } - }, - { - "id": "cc48ad5f-fecb-56e3-8294-fff65dc269a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.867718, - "y": -2653.483084 - }, - "endPoint": { - "x": 1211.042239, - "y": -2653.506371 - } - } - }, - { - "id": "ae90e427-3bce-55fe-a9cf-e46c325a78b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.042239, - "y": -2653.506371 - }, - "endPoint": { - "x": 1211.197369, - "y": -2653.378483 - } - } - }, - { - "id": "50ee2054-4c24-54e3-83ee-807d7215aa2e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.197369, - "y": -2653.378483 - }, - "endPoint": { - "x": 1211.426165, - "y": -2653.235124 - } - } - }, - { - "id": "cfe4aa70-8108-59df-8a0b-85485926c84b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.426165, - "y": -2653.235124 - }, - "endPoint": { - "x": 1211.530816, - "y": -2653.072332 - } - } - }, - { - "id": "acb13264-dac3-53fa-8b89-1bf0fa11f52a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.530816, - "y": -2653.072332 - }, - "endPoint": { - "x": 1211.569599, - "y": -2652.932827 - } - } - }, - { - "id": "21a14afe-9bfa-5cfa-ad1a-dbf73f613096", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.569599, - "y": -2652.932827 - }, - "endPoint": { - "x": 1211.639469, - "y": -2652.746858 - } - } - }, - { - "id": "4b03fbc1-5a97-5637-9423-dd5c11ad823c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.639469, - "y": -2652.746858 - }, - "endPoint": { - "x": 1211.769975, - "y": -2652.270317 - } - } - }, - { - "id": "4f66750a-4ba7-52ff-b930-8d74b5d4e882", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.769975, - "y": -2652.270317 - }, - "endPoint": { - "x": 1211.857287, - "y": -2651.905149 - } - } - }, - { - "id": "e269b0e8-ab9c-5c3a-a9ca-93ce87ebbc9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.857287, - "y": -2651.905149 - }, - "endPoint": { - "x": 1211.846411, - "y": -2651.545487 - } - } - }, - { - "id": "8781aa43-e494-572a-ae68-2c39f9545232", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.846411, - "y": -2651.545487 - }, - "endPoint": { - "x": 1211.808244, - "y": -2651.114916 - } - } - }, - { - "id": "7e445065-bacc-5dc0-89ef-2b1c743bd074", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.808244, - "y": -2651.114916 - }, - "endPoint": { - "x": 1211.72637, - "y": -2650.940507 - } - } - }, - { - "id": "8aa4a173-1ba1-59a6-9541-4a493098c128", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.72637, - "y": -2650.940507 - }, - "endPoint": { - "x": 1211.562724, - "y": -2650.875104 - } - } - }, - { - "id": "422e89bd-c7ee-5763-8d34-bd08646158a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.562724, - "y": -2650.875104 - }, - "endPoint": { - "x": 1211.31187, - "y": -2650.880554 - } - } - }, - { - "id": "02957b66-0a0e-5408-8632-fe218aa233c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.31187, - "y": -2650.880554 - }, - "endPoint": { - "x": 1211.07189, - "y": -2651.038612 - } - } - }, - { - "id": "e2c8e560-0e6f-56e8-ab44-b72c3386a47a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.07189, - "y": -2651.038612 - }, - "endPoint": { - "x": 1210.86464, - "y": -2651.305675 - } - } - }, - { - "id": "9a6817a9-fee8-55dd-9ac4-78af67277163", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.86464, - "y": -2651.305675 - }, - "endPoint": { - "x": 1210.71187, - "y": -2651.670788 - } - } - }, - { - "id": "d3ca3846-b258-5436-839e-c5244793d4ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.71187, - "y": -2651.670788 - }, - "endPoint": { - "x": 1210.602807, - "y": -2651.807044 - } - } - }, - { - "id": "dd31e0a4-636c-5e7a-adbf-39fcde358d96", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.602807, - "y": -2651.807044 - }, - "endPoint": { - "x": 1210.455577, - "y": -2652.014155 - } - } - }, - { - "id": "d2a52886-157b-5fe5-a5a6-6ad42050033c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.455577, - "y": -2652.014155 - }, - "endPoint": { - "x": 1210.330098, - "y": -2652.074108 - } - } - }, - { - "id": "c3d66436-9a4a-51c0-9006-1cacd22cf2d4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.330098, - "y": -2652.074108 - }, - "endPoint": { - "x": 1210.174353, - "y": -2652.074328 - } - } - }, - { - "id": "2110bfee-6cdc-5fb6-a588-3543ea0820b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.174353, - "y": -2652.074328 - }, - "endPoint": { - "x": 1210.110126, - "y": -2652.015531 - } - } - }, - { - "id": "75c83c7d-ac70-5fd2-88c0-8212aa0d53b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.110126, - "y": -2652.015531 - }, - "endPoint": { - "x": 1210.128799, - "y": -2651.724189 - } - } - }, - { - "id": "017a3d6c-2737-53ab-9382-02c45b224fea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.128799, - "y": -2651.724189 - }, - "endPoint": { - "x": 1210.139982, - "y": -2651.51284 - } - } - }, - { - "id": "401b6e8a-dd1e-5e86-80f6-e43c4bb2d8d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.139982, - "y": -2651.51284 - }, - "endPoint": { - "x": 1210.190358, - "y": -2651.355168 - } - } - }, - { - "id": "a05ded62-9246-53df-89be-52e31d47d20c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.190358, - "y": -2651.355168 - }, - "endPoint": { - "x": 1210.170146, - "y": -2651.157197 - } - } - }, - { - "id": "38c95a9b-c2d3-500b-b5c9-5d195bfcdce0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.170146, - "y": -2651.157197 - }, - "endPoint": { - "x": 1210.109716, - "y": -2651.059863 - } - } - }, - { - "id": "06014483-6198-5ecc-a222-48e9ff7ab61f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.109716, - "y": -2651.059863 - }, - "endPoint": { - "x": 1210.139982, - "y": -2650.791423 - } - } - }, - { - "id": "9641949b-b9fb-5b52-a8f7-2c246b956d70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.139982, - "y": -2650.791423 - }, - "endPoint": { - "x": 1210.270899, - "y": -2650.630338 - } - } - }, - { - "id": "1a4a73b9-efd7-509a-9a64-2c1e53a4ffa7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.270899, - "y": -2650.630338 - }, - "endPoint": { - "x": 1210.408587, - "y": -2650.59681 - } - } - }, - { - "id": "5f1b830b-f972-5733-ba0c-4d0ec658419a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.408587, - "y": -2650.59681 - }, - "endPoint": { - "x": 1210.549661, - "y": -2650.657203 - } - } - }, - { - "id": "29623eb8-f0d5-5377-95db-94b6be3b565e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.549661, - "y": -2650.657203 - }, - "endPoint": { - "x": 1210.892137, - "y": -2650.687428 - } - } - }, - { - "id": "51dce81d-0d86-5716-b71b-eb87e9dfa657", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.892137, - "y": -2650.687428 - }, - "endPoint": { - "x": 1210.932766, - "y": -2650.602481 - } - } - }, - { - "id": "125faf2d-44a3-5e0a-8161-bd5bfd792fa6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.932766, - "y": -2650.602481 - }, - "endPoint": { - "x": 1210.966316, - "y": -2650.51858 - } - } - }, - { - "id": "415671d9-fdc2-57e1-a681-bcfbdadd96e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.966316, - "y": -2650.51858 - }, - "endPoint": { - "x": 1211.214811, - "y": -2650.471619 - } - } - }, - { - "id": "24266448-e770-5772-b803-1cb4eb0459f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.214811, - "y": -2650.471619 - }, - "endPoint": { - "x": 1211.470077, - "y": -2650.448111 - } - } - }, - { - "id": "ee345050-902b-573a-a5d6-a19b9c5d8d3d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.470077, - "y": -2650.448111 - }, - "endPoint": { - "x": 1211.647984, - "y": -2650.448111 - } - } - }, - { - "id": "0eb9b28c-8008-574f-93ba-a69e8998029c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.647984, - "y": -2650.448111 - }, - "endPoint": { - "x": 1211.785672, - "y": -2650.51858 - } - } - }, - { - "id": "872d2c9a-a86b-5717-a704-6c17c1347c09", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.785672, - "y": -2650.51858 - }, - "endPoint": { - "x": 1211.940187, - "y": -2650.582331 - } - } - }, - { - "id": "9cb12ab8-d1e9-5215-828f-6da1fee293cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.940187, - "y": -2650.582331 - }, - "endPoint": { - "x": 1212.087929, - "y": -2650.729984 - } - } - }, - { - "id": "d0293f75-aa66-5e36-85fd-4efa592a7bf9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.087929, - "y": -2650.729984 - }, - "endPoint": { - "x": 1212.202122, - "y": -2650.971557 - } - } - }, - { - "id": "3c5276f7-3bdf-5222-b784-8b0b36940b90", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.202122, - "y": -2650.971557 - }, - "endPoint": { - "x": 1212.218846, - "y": -2651.246713 - } - } - }, - { - "id": "1bf81498-b46d-56e0-8ce5-b3abdd84fe08", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.218846, - "y": -2651.246713 - }, - "endPoint": { - "x": 1212.212177, - "y": -2651.427948 - } - } - }, - { - "id": "a9c9f1b1-b9d6-56f4-a28c-39533b4baa95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.212177, - "y": -2651.427948 - }, - "endPoint": { - "x": 1212.22295, - "y": -2651.551488 - } - } - }, - { - "id": "5aeff91f-2358-5298-adf6-708b7a894cb3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.22295, - "y": -2651.551488 - }, - "endPoint": { - "x": 1212.23557, - "y": -2651.808421 - } - } - }, - { - "id": "ae8807b0-1598-59ef-a6a0-fc2da4a04b4e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.23557, - "y": -2651.808421 - }, - "endPoint": { - "x": 1212.307286, - "y": -2651.960092 - } - } - }, - { - "id": "4b762783-2e68-56de-9011-9890eec44ed5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.307286, - "y": -2651.960092 - }, - "endPoint": { - "x": 1212.400036, - "y": -2652.010631 - } - } - }, - { - "id": "4aef2779-0bf5-5be8-81b3-582338214f15", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.400036, - "y": -2652.010631 - }, - "endPoint": { - "x": 1212.416862, - "y": -2652.393912 - } - } - }, - { - "id": "90ebcac3-23be-56e0-9b85-f9dc5b813391", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.416862, - "y": -2652.393912 - }, - "endPoint": { - "x": 1212.429482, - "y": -2652.655084 - } - } - }, - { - "id": "cc432784-babf-5f04-991f-74e03748cdb4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.429482, - "y": -2652.655084 - }, - "endPoint": { - "x": 1212.539263, - "y": -2652.87838 - } - } - }, - { - "id": "56b839b8-d212-5b1e-969a-a373996ee6a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.539263, - "y": -2652.87838 - }, - "endPoint": { - "x": 1212.855474, - "y": -2653.084774 - } - } - }, - { - "id": "88d88a4c-dd3e-5d66-8f12-47ca532b754a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.855474, - "y": -2653.084774 - }, - "endPoint": { - "x": 1213.053592, - "y": -2653.240685 - } - } - }, - { - "id": "ef615d71-672a-5dac-be56-1d54d0d71ad3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.053592, - "y": -2653.240685 - }, - "endPoint": { - "x": 1213.237758, - "y": -2653.359545 - } - } - }, - { - "id": "096f1268-b26c-5f25-8c2b-6383a5d0b9c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.237758, - "y": -2653.359545 - }, - "endPoint": { - "x": 1213.600343, - "y": -2653.397421 - } - } - }, - { - "id": "5f90adbe-7c61-56a1-a7d6-163615a33ed2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.600343, - "y": -2653.397421 - }, - "endPoint": { - "x": 1213.654105, - "y": -2653.45264 - } - } - }, - { - "id": "7fcc8032-ab6a-546f-abf7-ad53474e07c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.654105, - "y": -2653.45264 - }, - "endPoint": { - "x": 1213.683756, - "y": -2653.713316 - } - } - }, - { - "id": "79e31c44-4ead-5de9-8a06-d40700e4f52e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.683756, - "y": -2653.713316 - }, - "endPoint": { - "x": 1213.778661, - "y": -2653.796282 - } - } - }, - { - "id": "eb6dc5fb-6ea7-5833-a55a-d7589cb56473", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.778661, - "y": -2653.796282 - }, - "endPoint": { - "x": 1214.543537, - "y": -2653.292655 - } - } - }, - { - "id": "08a539d1-eac9-5957-9a3e-1f8ee68ef070", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.543537, - "y": -2653.292655 - }, - "endPoint": { - "x": 1215.563475, - "y": -2652.463168 - } - } - }, - { - "id": "85f9d133-1bd0-5df2-8689-be574337201e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.563475, - "y": -2652.463168 - }, - "endPoint": { - "x": 1216.126744, - "y": -2651.870686 - } - } - }, - { - "id": "b8664e99-3af2-54fa-8040-78ba2537e12b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.126744, - "y": -2651.870686 - }, - "endPoint": { - "x": 1216.483276, - "y": -2651.293949 - } - } - }, - { - "id": "6188ec28-422a-57d7-a171-fe510ef01cf0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.483276, - "y": -2651.293949 - }, - "endPoint": { - "x": 1216.667134, - "y": -2650.908852 - } - } - }, - { - "id": "b1bf488f-1c95-566f-9339-42a5bc9c13ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.667134, - "y": -2650.908852 - }, - "endPoint": { - "x": 1216.453625, - "y": -2651.009544 - } - } - }, - { - "id": "d06bd699-2103-5cce-b545-a8c737be50e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.453625, - "y": -2651.009544 - }, - "endPoint": { - "x": 1216.340971, - "y": -2651.133964 - } - } - }, - { - "id": "a2695b66-1608-5c14-a235-38fdc5421ea8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.340971, - "y": -2651.133964 - }, - "endPoint": { - "x": 1216.151266, - "y": -2651.175474 - } - } - }, - { - "id": "1f2c8b61-59a6-5993-8dc2-a77f91cf4db1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.151266, - "y": -2651.175474 - }, - "endPoint": { - "x": 1216.02671, - "y": -2651.086563 - } - } - }, - { - "id": "d06e850f-c1a6-5e8e-b1b2-2a01955bde93", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.02671, - "y": -2651.086563 - }, - "endPoint": { - "x": 1215.943708, - "y": -2650.902906 - } - } - }, - { - "id": "a2e74ee1-9bf7-578b-9937-5c4c9c69ddb3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.943708, - "y": -2650.902906 - }, - "endPoint": { - "x": 1215.659098, - "y": -2650.760703 - } - } - }, - { - "id": "cf837fec-5cc5-546e-aae0-96e5a7adfb5d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.659098, - "y": -2650.760703 - }, - "endPoint": { - "x": 1215.380438, - "y": -2650.754813 - } - } - }, - { - "id": "10a97df7-1f05-5dd4-9edf-2e6223ee320a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.380438, - "y": -2650.754813 - }, - "endPoint": { - "x": 1215.303284, - "y": -2650.701466 - } - } - }, - { - "id": "3dfb91c8-6cd5-5dce-80ff-802a638a14bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.303284, - "y": -2650.701466 - }, - "endPoint": { - "x": 1215.17288, - "y": -2650.802159 - } - } - }, - { - "id": "57ddfeaf-6e0d-5cb6-a382-10d9523faf33", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.17288, - "y": -2650.802159 - }, - "endPoint": { - "x": 1215.036526, - "y": -2650.985871 - } - } - }, - { - "id": "8bbbf3f7-e237-5b94-8139-f57a7eab17ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.036526, - "y": -2650.985871 - }, - "endPoint": { - "x": 1215.006875, - "y": -2651.151746 - } - } - }, - { - "id": "94c74699-2c89-583b-aeab-88792d7695d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.006875, - "y": -2651.151746 - }, - "endPoint": { - "x": 1215.036526, - "y": -2651.347295 - } - } - }, - { - "id": "e0050a71-38f2-5959-8a15-e780a1a2bdf9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.036526, - "y": -2651.347295 - }, - "endPoint": { - "x": 1215.226232, - "y": -2651.412423 - } - } - }, - { - "id": "6ce4daad-0afc-5262-a529-4fd65f7e752d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.226232, - "y": -2651.412423 - }, - "endPoint": { - "x": 1215.487141, - "y": -2651.471715 - } - } - }, - { - "id": "7cbd902f-0031-5077-af9e-850c07d029ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.487141, - "y": -2651.471715 - }, - "endPoint": { - "x": 1215.670896, - "y": -2651.513171 - } - } - }, - { - "id": "036fe50b-69b8-559d-a901-ca8ce2033d27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.670896, - "y": -2651.513171 - }, - "endPoint": { - "x": 1215.789501, - "y": -2651.548735 - } - } - }, - { - "id": "97ab1046-04e1-592c-bee9-135f5d67085f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.789501, - "y": -2651.548735 - }, - "endPoint": { - "x": 1215.801403, - "y": -2651.708664 - } - } - }, - { - "id": "e4485166-dbaf-58d4-aa9a-d9bd489a00ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.801403, - "y": -2651.708664 - }, - "endPoint": { - "x": 1215.801403, - "y": -2651.910104 - } - } - }, - { - "id": "a5b656e7-0147-5a3e-85bf-158e1d60836e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.801403, - "y": -2651.910104 - }, - "endPoint": { - "x": 1215.75985, - "y": -2652.064198 - } - } - }, - { - "id": "d07c4647-2906-56d0-8502-6fd1e647df1a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.75985, - "y": -2652.064198 - }, - "endPoint": { - "x": 1215.510842, - "y": -2652.052306 - } - } - }, - { - "id": "b79ac2f8-ad55-5b00-be1f-20eb95c0a81f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.510842, - "y": -2652.052306 - }, - "endPoint": { - "x": 1215.326984, - "y": -2651.987179 - } - } - }, - { - "id": "43d77470-bdd7-5a41-bdb5-c133adf1ed48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.326984, - "y": -2651.987179 - }, - "endPoint": { - "x": 1215.178831, - "y": -2652.004906 - } - } - }, - { - "id": "5721e03c-557c-582f-b25a-8b0e7217536a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.178831, - "y": -2652.004906 - }, - "endPoint": { - "x": 1215.012723, - "y": -2652.105653 - } - } - }, - { - "id": "9c7761b3-ca97-5496-8b4b-902585127d63", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.012723, - "y": -2652.105653 - }, - "endPoint": { - "x": 1214.805268, - "y": -2652.111599 - } - } - }, - { - "id": "e47dd3d7-1258-5427-a5be-0061e235e3b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.805268, - "y": -2652.111599 - }, - "endPoint": { - "x": 1214.597709, - "y": -2652.111599 - } - } - }, - { - "id": "0669d9b3-30f9-5e32-b8e0-0df6d45cb13b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.597709, - "y": -2652.111599 - }, - "endPoint": { - "x": 1214.449454, - "y": -2652.188618 - } - } - }, - { - "id": "6cbbfdf1-74c9-596d-9523-8b6326e6fe82", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.449454, - "y": -2652.188618 - }, - "endPoint": { - "x": 1214.277498, - "y": -2652.200455 - } - } - }, - { - "id": "f05c179b-93a6-547f-a13e-f2d88a66ac87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.277498, - "y": -2652.200455 - }, - "endPoint": { - "x": 1214.058141, - "y": -2652.170836 - } - } - }, - { - "id": "caa452a9-acfd-5089-819d-1d79fd834b94", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.058141, - "y": -2652.170836 - }, - "endPoint": { - "x": 1213.986937, - "y": -2652.070089 - } - } - }, - { - "id": "8482c89c-0222-5703-9957-315a1218c525", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.986937, - "y": -2652.070089 - }, - "endPoint": { - "x": 1213.78533, - "y": -2652.058252 - } - } - }, - { - "id": "603905fa-cb1f-55f1-a7a1-d41194c677df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.78533, - "y": -2652.058252 - }, - "endPoint": { - "x": 1213.637176, - "y": -2652.153054 - } - } - }, - { - "id": "5c668dae-360c-5ed4-bd50-407c81a8840a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.637176, - "y": -2652.153054 - }, - "endPoint": { - "x": 1213.595624, - "y": -2652.111599 - } - } - }, - { - "id": "62e8c909-1e8d-5b73-af20-f0d14afd6ed4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.595624, - "y": -2652.111599 - }, - "endPoint": { - "x": 1213.607525, - "y": -2651.999015 - } - } - }, - { - "id": "cac0f7c9-7242-521b-9af1-b2476e7805bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.607525, - "y": -2651.999015 - }, - "endPoint": { - "x": 1213.494871, - "y": -2651.880485 - } - } - }, - { - "id": "740c6f90-06a4-5153-967d-1dbda20f674a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.494871, - "y": -2651.880485 - }, - "endPoint": { - "x": 1213.423668, - "y": -2651.827194 - } - } - }, - { - "id": "413f0bb3-c493-5604-9b4a-c177b0ca244b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.423668, - "y": -2651.827194 - }, - "endPoint": { - "x": 1213.388066, - "y": -2651.79163 - } - } - }, - { - "id": "3dd053f8-4434-59bf-bc68-4431de3d70ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.388066, - "y": -2651.79163 - }, - "endPoint": { - "x": 1213.269564, - "y": -2651.767957 - } - } - }, - { - "id": "953bc987-988f-53b1-8fc1-e94970fecf2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.269564, - "y": -2651.767957 - }, - "endPoint": { - "x": 1213.145008, - "y": -2651.602026 - } - } - }, - { - "id": "6a0e1249-4ef5-51d8-b550-baabc202235e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.145008, - "y": -2651.602026 - }, - "endPoint": { - "x": 1213.050104, - "y": -2651.483552 - } - } - }, - { - "id": "d5710431-cb31-50f3-bdaa-f4ee07a6e232", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.050104, - "y": -2651.483552 - }, - "endPoint": { - "x": 1213.026404, - "y": -2651.270221 - } - } - }, - { - "id": "f88384d2-d417-5c41-9ae3-bd2fab25fe81", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.026404, - "y": -2651.270221 - }, - "endPoint": { - "x": 1213.085706, - "y": -2651.133964 - } - } - }, - { - "id": "31ccd593-61e1-5886-a2a6-bddd7a4fa72b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.085706, - "y": -2651.133964 - }, - "endPoint": { - "x": 1213.032354, - "y": -2650.950307 - } - } - }, - { - "id": "cba98f89-07e6-5205-8dc4-6ea78bf657a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.032354, - "y": -2650.950307 - }, - "endPoint": { - "x": 1213.079755, - "y": -2650.68963 - } - } - }, - { - "id": "ee6bbbbf-f32d-592c-84e6-305f82a82c53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.079755, - "y": -2650.68963 - }, - "endPoint": { - "x": 1213.293264, - "y": -2650.511863 - } - } - }, - { - "id": "f438dde2-de31-5e78-8f03-b2e09ee5ef7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.293264, - "y": -2650.511863 - }, - "endPoint": { - "x": 1213.512621, - "y": -2650.434844 - } - } - }, - { - "id": "540f2710-fa78-5f66-a8cd-30140f41ced3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.512621, - "y": -2650.434844 - }, - "endPoint": { - "x": 1213.625275, - "y": -2650.48819 - } - } - }, - { - "id": "4d142745-a3f6-59f5-8a43-3351458e1318", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.625275, - "y": -2650.48819 - }, - "endPoint": { - "x": 1213.601574, - "y": -2650.577046 - } - } - }, - { - "id": "40743204-1444-5589-9849-0e6c1f2d3ec9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.601574, - "y": -2650.577046 - }, - "endPoint": { - "x": 1213.447368, - "y": -2650.68963 - } - } - }, - { - "id": "915fe7b7-be1b-5d6e-a75b-3377e5d55e57", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.447368, - "y": -2650.68963 - }, - "endPoint": { - "x": 1213.376267, - "y": -2650.914742 - } - } - }, - { - "id": "dd276469-63dc-5bab-ba77-5eae0e3268ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.376267, - "y": -2650.914742 - }, - "endPoint": { - "x": 1213.394016, - "y": -2651.276167 - } - } - }, - { - "id": "6830ae7e-5e67-5a89-90c5-fbdb94245b9a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.394016, - "y": -2651.276167 - }, - "endPoint": { - "x": 1213.50667, - "y": -2651.447988 - } - } - }, - { - "id": "36ec9fa9-bf33-5b6a-823e-0622ee7772f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.50667, - "y": -2651.447988 - }, - "endPoint": { - "x": 1213.761629, - "y": -2651.530953 - } - } - }, - { - "id": "78be4c29-a1d5-50a3-8e16-af731c4dc06a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.761629, - "y": -2651.530953 - }, - "endPoint": { - "x": 1214.03444, - "y": -2651.519116 - } - } - }, - { - "id": "d1f8a1b7-7b65-5931-b136-6d4745833953", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.03444, - "y": -2651.519116 - }, - "endPoint": { - "x": 1214.170794, - "y": -2651.382805 - } - } - }, - { - "id": "be024053-704e-5fb6-9306-bf0e4b8a0ec4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.170794, - "y": -2651.382805 - }, - "endPoint": { - "x": 1214.325001, - "y": -2651.299894 - } - } - }, - { - "id": "9c1779b9-aee5-5aaf-a5c0-fbee0339f41b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.325001, - "y": -2651.299894 - }, - "endPoint": { - "x": 1214.443503, - "y": -2651.258384 - } - } - }, - { - "id": "163c3f8d-6653-53fa-b73d-e45f1866e869", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.443503, - "y": -2651.258384 - }, - "endPoint": { - "x": 1214.473154, - "y": -2651.104346 - } - } - }, - { - "id": "0b070442-5063-55f8-b8f5-679f6222d0df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.473154, - "y": -2651.104346 - }, - "endPoint": { - "x": 1214.473154, - "y": -2650.89696 - } - } - }, - { - "id": "237738b2-91c7-5dbd-a36a-a9b3fee3b534", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.473154, - "y": -2650.89696 - }, - "endPoint": { - "x": 1214.413852, - "y": -2650.802159 - } - } - }, - { - "id": "af755c53-5db7-53ca-af6e-bb598ff41279", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.413852, - "y": -2650.802159 - }, - "endPoint": { - "x": 1214.277498, - "y": -2650.701466 - } - } - }, - { - "id": "c1dc6a31-6e81-5f48-b544-e478a166733f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.277498, - "y": -2650.701466 - }, - "endPoint": { - "x": 1214.158893, - "y": -2650.56521 - } - } - }, - { - "id": "ceb5b249-1718-505a-8e6c-478867667b3e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.158893, - "y": -2650.56521 - }, - "endPoint": { - "x": 1214.194495, - "y": -2650.482244 - } - } - }, - { - "id": "96994eee-2be6-57a2-af4b-483f13eb990c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.194495, - "y": -2650.482244 - }, - "endPoint": { - "x": 1214.289399, - "y": -2650.440789 - } - } - }, - { - "id": "39b00ad1-036c-5ce7-b0c2-c2001e557ee9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.289399, - "y": -2650.440789 - }, - "endPoint": { - "x": 1214.491006, - "y": -2650.423007 - } - } - }, - { - "id": "1d05935d-4936-5e02-ba67-1941d076423f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.491006, - "y": -2650.423007 - }, - "endPoint": { - "x": 1214.585808, - "y": -2650.369661 - } - } - }, - { - "id": "3ca8b765-1906-5edd-9b6b-bc0bc475ca67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.585808, - "y": -2650.369661 - }, - "endPoint": { - "x": 1214.704413, - "y": -2650.334151 - } - } - }, - { - "id": "5f1c9572-1419-5c9c-96cf-b00f45605aae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.704413, - "y": -2650.334151 - }, - "endPoint": { - "x": 1214.793366, - "y": -2650.393389 - } - } - }, - { - "id": "d5bed53a-8434-5f7f-b298-861db136166c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.793366, - "y": -2650.393389 - }, - "endPoint": { - "x": 1214.894221, - "y": -2650.334151 - } - } - }, - { - "id": "88c595cb-f802-55d5-9d23-629c82383455", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.894221, - "y": -2650.334151 - }, - "endPoint": { - "x": 1215.042374, - "y": -2650.36377 - } - } - }, - { - "id": "db9fe999-df66-5a8c-b3b6-85e62126768a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.042374, - "y": -2650.36377 - }, - "endPoint": { - "x": 1215.273633, - "y": -2650.428898 - } - } - }, - { - "id": "ffc73218-9534-5ded-a3d2-16f8556f51eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.273633, - "y": -2650.428898 - }, - "endPoint": { - "x": 1215.564193, - "y": -2650.423007 - } - } - }, - { - "id": "ddb7aaf3-8751-5535-936b-3ffb50898b83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.564193, - "y": -2650.423007 - }, - "endPoint": { - "x": 1215.872504, - "y": -2650.393389 - } - } - }, - { - "id": "9be11f23-a60e-51da-b1de-80d6cc159ad9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.872504, - "y": -2650.393389 - }, - "endPoint": { - "x": 1216.00301, - "y": -2650.304478 - } - } - }, - { - "id": "b6a85e6a-4756-57d9-8302-393dd4eb1731", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.00301, - "y": -2650.304478 - }, - "endPoint": { - "x": 1216.127463, - "y": -2650.263023 - } - } - }, - { - "id": "e7f56d55-e1a8-5f90-87bc-c070d6cd4b50", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.127463, - "y": -2650.263023 - }, - "endPoint": { - "x": 1216.281669, - "y": -2650.233404 - } - } - }, - { - "id": "2313b46d-3e61-5c30-b493-da57dc0786a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.281669, - "y": -2650.233404 - }, - "endPoint": { - "x": 1216.340971, - "y": -2650.073419 - } - } - }, - { - "id": "03e325a4-8013-59d2-99c4-380c356ec668", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.340971, - "y": -2650.073419 - }, - "endPoint": { - "x": 1216.346922, - "y": -2649.931217 - } - } - }, - { - "id": "a1a2e0e8-6b80-58ec-a5b8-b66fc2c272e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.346922, - "y": -2649.931217 - }, - "endPoint": { - "x": 1216.286902, - "y": -2649.904571 - } - } - }, - { - "id": "072145e4-a53f-5151-b23b-892e48d6824c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.286902, - "y": -2649.904571 - }, - "endPoint": { - "x": 1216.197948, - "y": -2649.815715 - } - } - }, - { - "id": "7dc23b18-a511-5544-9aea-d5fb89d1da0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.197948, - "y": -2649.815715 - }, - "endPoint": { - "x": 1216.1684, - "y": -2649.661677 - } - } - }, - { - "id": "8e358193-b8db-5edb-bd48-ee3cc9b369a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.1684, - "y": -2649.661677 - }, - "endPoint": { - "x": 1216.073495, - "y": -2649.602384 - } - } - }, - { - "id": "8034ee44-8c0b-5281-8105-8584559843f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.073495, - "y": -2649.602384 - }, - "endPoint": { - "x": 1215.937141, - "y": -2649.632003 - } - } - }, - { - "id": "6b3ad893-e7c1-5776-9559-60c26fd3936f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.937141, - "y": -2649.632003 - }, - "endPoint": { - "x": 1215.747333, - "y": -2649.637949 - } - } - }, - { - "id": "d89edcf1-3f7b-5834-a4bc-763c5055001a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.747333, - "y": -2649.637949 - }, - "endPoint": { - "x": 1215.516074, - "y": -2649.549093 - } - } - }, - { - "id": "7326caf8-bc6f-5414-b6a7-33c84ed7199a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.516074, - "y": -2649.549093 - }, - "endPoint": { - "x": 1215.344118, - "y": -2649.566875 - } - } - }, - { - "id": "92b504f6-c926-5470-b498-a337e030c822", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.344118, - "y": -2649.566875 - }, - "endPoint": { - "x": 1215.284816, - "y": -2649.649785 - } - } - }, - { - "id": "23e83710-d7a5-5a76-8fd1-7075b1be2017", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.284816, - "y": -2649.649785 - }, - "endPoint": { - "x": 1215.089159, - "y": -2649.596494 - } - } - }, - { - "id": "5de4541a-a89b-535c-a6ac-b078ace02b28", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.089159, - "y": -2649.596494 - }, - "endPoint": { - "x": 1214.875753, - "y": -2649.549093 - } - } - }, - { - "id": "6ef432ca-f159-570e-b35e-74c639f3af7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.875753, - "y": -2649.549093 - }, - "endPoint": { - "x": 1214.632593, - "y": -2649.554983 - } - } - }, - { - "id": "843ee2d8-c793-54aa-b451-785fb3ce64b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.632593, - "y": -2649.554983 - }, - "endPoint": { - "x": 1214.425138, - "y": -2649.602384 - } - } - }, - { - "id": "356c41f9-02be-5272-87fd-aace01bca1c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.425138, - "y": -2649.602384 - }, - "endPoint": { - "x": 1214.116725, - "y": -2649.661677 - } - } - }, - { - "id": "d60e117d-fdb1-5a32-a632-275b750d1e0b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.116725, - "y": -2649.661677 - }, - "endPoint": { - "x": 1213.968572, - "y": -2649.572766 - } - } - }, - { - "id": "cc6cfa68-5716-5473-b566-a4f7f40a0d80", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.968572, - "y": -2649.572766 - }, - "endPoint": { - "x": 1213.761014, - "y": -2649.560929 - } - } - }, - { - "id": "b26e04aa-05fe-5c49-ac47-57623a2c5a2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.761014, - "y": -2649.560929 - }, - "endPoint": { - "x": 1213.559406, - "y": -2649.632003 - } - } - }, - { - "id": "36e5d25c-3c7b-51e0-ad3f-12d1d3be1ee5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.559406, - "y": -2649.632003 - }, - "endPoint": { - "x": 1213.500104, - "y": -2649.786097 - } - } - }, - { - "id": "fcfa97fc-a2d9-5a56-9297-50cbf4302d27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.500104, - "y": -2649.786097 - }, - "endPoint": { - "x": 1212.978285, - "y": -2649.803824 - } - } - }, - { - "id": "51c80443-4fb5-5548-bff3-c1d83d02df00", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.978285, - "y": -2649.803824 - }, - "endPoint": { - "x": 1212.770727, - "y": -2649.768315 - } - } - }, - { - "id": "24ee4b67-fa12-518e-8a2b-7b2a21d22161", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.770727, - "y": -2649.768315 - }, - "endPoint": { - "x": 1212.626267, - "y": -2649.737485 - } - } - }, - { - "id": "b6dac6bb-92bd-5543-81f6-61d07673eb86", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.626267, - "y": -2649.737485 - }, - "endPoint": { - "x": 1212.410193, - "y": -2649.661622 - } - } - }, - { - "id": "17b345e9-63ff-57c6-b6ed-63792c9f68f8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.410193, - "y": -2649.661622 - }, - "endPoint": { - "x": 1212.04217, - "y": -2649.626608 - } - } - }, - { - "id": "71b746bf-1566-5d28-8320-34a0971e3b97", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.04217, - "y": -2649.626608 - }, - "endPoint": { - "x": 1211.90202, - "y": -2649.766663 - } - } - }, - { - "id": "fdfb53c2-c7e4-56e6-b79b-f1d45790b969", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.90202, - "y": -2649.766663 - }, - "endPoint": { - "x": 1211.849489, - "y": -2649.725814 - } - } - }, - { - "id": "2b7d3878-d69d-5e2a-9597-c65d4079d1ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.849489, - "y": -2649.725814 - }, - "endPoint": { - "x": 1211.738477, - "y": -2649.725814 - } - } - }, - { - "id": "17643bbf-ee01-5026-8267-2ce882845ff6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.738477, - "y": -2649.725814 - }, - "endPoint": { - "x": 1211.563237, - "y": -2649.801677 - } - } - }, - { - "id": "8f1c9732-093d-53d6-991f-cedc1d9f76f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.563237, - "y": -2649.801677 - }, - "endPoint": { - "x": 1211.452328, - "y": -2649.78417 - } - } - }, - { - "id": "a0910996-00f5-52cb-ab5f-af2298e8e02b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.452328, - "y": -2649.78417 - }, - "endPoint": { - "x": 1211.417239, - "y": -2649.719978 - } - } - }, - { - "id": "61e3654d-84e7-5e89-8a67-2588b5fe9c16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.417239, - "y": -2649.719978 - }, - "endPoint": { - "x": 1211.281398, - "y": -2649.749046 - } - } - }, - { - "id": "547ee2e5-a859-5c4e-a4fd-ecc8f4fef803", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.281398, - "y": -2649.749046 - }, - "endPoint": { - "x": 1210.984476, - "y": -2649.714968 - } - } - }, - { - "id": "18cc9976-3095-555a-91e9-b45f07d9d35a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.984476, - "y": -2649.714968 - }, - "endPoint": { - "x": 1210.511699, - "y": -2649.866089 - } - } - }, - { - "id": "a30e58d4-d058-5aaf-b9a0-6331fc81e468", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.511699, - "y": -2649.866089 - }, - "endPoint": { - "x": 1210.474353, - "y": -2649.955771 - } - } - }, - { - "id": "07c09093-c430-5262-a785-c7e15959a5df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.474353, - "y": -2649.955771 - }, - "endPoint": { - "x": 1210.40951, - "y": -2650.068575 - } - } - }, - { - "id": "45eb64d0-4571-5118-82e4-deed47c108b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.40951, - "y": -2650.068575 - }, - "endPoint": { - "x": 1210.251508, - "y": -2650.093954 - } - } - }, - { - "id": "c83f5899-624e-51e1-afef-d00069b063fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.251508, - "y": -2650.093954 - }, - "endPoint": { - "x": 1210.115974, - "y": -2650.00653 - } - } - }, - { - "id": "1cb080a1-6832-5410-8bfd-58b8180eb791", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.115974, - "y": -2650.00653 - }, - "endPoint": { - "x": 1210.090632, - "y": -2649.851445 - } - } - }, - { - "id": "025ea76a-e9f2-5f01-bd7b-aca573749f9b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.090632, - "y": -2649.851445 - }, - "endPoint": { - "x": 1210.101918, - "y": -2649.671036 - } - } - }, - { - "id": "6ffb9e4b-a9cd-5fa5-99b1-3d776dfd39ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.101918, - "y": -2649.671036 - }, - "endPoint": { - "x": 1210.203491, - "y": -2649.465192 - } - } - }, - { - "id": "404c2797-1f29-5d98-8536-ee875b4fef7a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.203491, - "y": -2649.465192 - }, - "endPoint": { - "x": 1210.338922, - "y": -2649.327008 - } - } - }, - { - "id": "afcf2b52-8fe4-5c00-b97d-f95c8f7b88b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.338922, - "y": -2649.327008 - }, - "endPoint": { - "x": 1210.46871, - "y": -2649.259348 - } - } - }, - { - "id": "cefca7ea-06a0-5b6e-bdaf-6ebec6d0f77c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.46871, - "y": -2649.259348 - }, - "endPoint": { - "x": 1210.669086, - "y": -2649.298821 - } - } - }, - { - "id": "150db391-f972-5687-946c-cadb2f47f197", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.669086, - "y": -2649.298821 - }, - "endPoint": { - "x": 1210.798874, - "y": -2649.363674 - } - } - }, - { - "id": "20aada5f-6174-51e8-84eb-a40a79eaefd3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.798874, - "y": -2649.363674 - }, - "endPoint": { - "x": 1211.112109, - "y": -2649.318585 - } - } - }, - { - "id": "213fa1a7-1b33-5386-99c0-56ec40f6b454", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.112109, - "y": -2649.318585 - }, - "endPoint": { - "x": 1211.385741, - "y": -2649.321393 - } - } - }, - { - "id": "92a10656-b0dc-5891-b268-45bc2d80b8e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.385741, - "y": -2649.321393 - }, - "endPoint": { - "x": 1211.663272, - "y": -2649.315117 - } - } - }, - { - "id": "ad2bbdba-e3cc-5458-b2c0-bf1edfaaa760", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.663272, - "y": -2649.315117 - }, - "endPoint": { - "x": 1212.092136, - "y": -2649.306639 - } - } - }, - { - "id": "35346719-b2d6-5693-984a-993e3bc111c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.092136, - "y": -2649.306639 - }, - "endPoint": { - "x": 1212.834236, - "y": -2649.26155 - } - } - }, - { - "id": "90b7bb77-816b-5e63-824d-fe2cff1fef55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.834236, - "y": -2649.26155 - }, - "endPoint": { - "x": 1213.451267, - "y": -2649.295518 - } - } - }, - { - "id": "66c7a9ce-07e1-5781-ba21-b7a2c8546c4a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.451267, - "y": -2649.295518 - }, - "endPoint": { - "x": 1214.300582, - "y": -2649.346277 - } - } - }, - { - "id": "cd9fd2c7-c66e-54c0-98b1-50287522e04e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.300582, - "y": -2649.346277 - }, - "endPoint": { - "x": 1214.777463, - "y": -2649.303996 - } - } - }, - { - "id": "3bf68c30-baab-5379-880e-16ef02b43067", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.777463, - "y": -2649.303996 - }, - "endPoint": { - "x": 1215.262757, - "y": -2649.256045 - } - } - }, - { - "id": "0a8d230c-f5cd-5c2b-a839-056128de7331", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.262757, - "y": -2649.256045 - }, - "endPoint": { - "x": 1215.563886, - "y": -2649.264303 - } - } - }, - { - "id": "84bbb1e5-4147-5d10-827a-782d083880fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.563886, - "y": -2649.264303 - }, - "endPoint": { - "x": 1215.961765, - "y": -2649.086701 - } - } - }, - { - "id": "7da0902a-e4fc-5553-addb-90ae47193b55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.961765, - "y": -2649.086701 - }, - "endPoint": { - "x": 1216.212517, - "y": -2648.865442 - } - } - }, - { - "id": "3357907b-f604-5814-aaa8-aaf7ae5a06bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.212517, - "y": -2648.865442 - }, - "endPoint": { - "x": 1216.291519, - "y": -2648.701879 - } - } - }, - { - "id": "fc46b07c-dc28-583f-8402-254ba9c70a43", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.291519, - "y": -2648.701879 - }, - "endPoint": { - "x": 1216.280233, - "y": -2648.501706 - } - } - }, - { - "id": "d91e531c-1c4d-5707-8455-0687574d227e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.280233, - "y": -2648.501706 - }, - "endPoint": { - "x": 1216.373393, - "y": -2648.369193 - } - } - }, - { - "id": "b58e411d-3f9b-5378-ae68-da644cdd7e9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.373393, - "y": -2648.369193 - }, - "endPoint": { - "x": 1216.311218, - "y": -2648.053408 - } - } - }, - { - "id": "34507b78-0f03-52e3-bf7f-e8bd7573b50c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.311218, - "y": -2648.053408 - }, - "endPoint": { - "x": 1216.229138, - "y": -2647.9166 - } - } - }, - { - "id": "7430da7f-9393-5c7a-8595-ebf5fffc5bd0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.229138, - "y": -2647.9166 - }, - "endPoint": { - "x": 1216.234781, - "y": -2647.795373 - } - } - }, - { - "id": "b2911af0-4b64-5f31-ba53-5123a17560a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.234781, - "y": -2647.795373 - }, - "endPoint": { - "x": 1216.09935, - "y": -2647.648767 - } - } - }, - { - "id": "95c58ca8-8fef-5b42-a812-c021109a9c3b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.09935, - "y": -2647.648767 - }, - "endPoint": { - "x": 1215.90749, - "y": -2647.479588 - } - } - }, - { - "id": "96fa68a3-12ae-5b1b-9f08-54cafd118e76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.90749, - "y": -2647.479588 - }, - "endPoint": { - "x": 1215.678899, - "y": -2647.406257 - } - } - }, - { - "id": "d18f2db0-c12c-56c1-aa7e-4efad845a630", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.678899, - "y": -2647.406257 - }, - "endPoint": { - "x": 1215.204891, - "y": -2647.383685 - } - } - }, - { - "id": "bb0a862d-a146-5582-ab03-2b55742bddfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.204891, - "y": -2647.383685 - }, - "endPoint": { - "x": 1215.123017, - "y": -2647.392164 - } - } - }, - { - "id": "f1d35222-a673-5300-aeb2-360df88bfee6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.123017, - "y": -2647.392164 - }, - "endPoint": { - "x": 1215.066588, - "y": -2647.510583 - } - } - }, - { - "id": "8bfeb8e2-4ff3-5fb2-9d71-401383189a7e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.066588, - "y": -2647.510583 - }, - "endPoint": { - "x": 1215.027087, - "y": -2647.555672 - } - } - }, - { - "id": "b2bd4d19-c375-5e49-af1f-83676bedb51f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.027087, - "y": -2647.555672 - }, - "endPoint": { - "x": 1214.891656, - "y": -2647.535963 - } - } - }, - { - "id": "ca6e92f0-c724-5c00-9703-a6dad3275ddd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.891656, - "y": -2647.535963 - }, - "endPoint": { - "x": 1214.756225, - "y": -2647.431637 - } - } - }, - { - "id": "49a67beb-1607-5d1b-afcb-5ab39eff4e48", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.756225, - "y": -2647.431637 - }, - "endPoint": { - "x": 1214.442067, - "y": -2647.417268 - } - } - }, - { - "id": "8529489b-4b98-56a3-89c7-62b2ef92e6ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.442067, - "y": -2647.417268 - }, - "endPoint": { - "x": 1214.185364, - "y": -2647.41446 - } - } - }, - { - "id": "93e5813f-208a-5858-b31b-d615d776ecea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.185364, - "y": -2647.41446 - }, - "endPoint": { - "x": 1214.134577, - "y": -2647.341129 - } - } - }, - { - "id": "c7517222-e9e8-5764-8af8-661255dd2bdc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.134577, - "y": -2647.341129 - }, - "endPoint": { - "x": 1214.114775, - "y": -2647.203001 - } - } - }, - { - "id": "0fba646d-bf06-5646-8540-96ebfdaeb0e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.114775, - "y": -2647.203001 - }, - "endPoint": { - "x": 1214.241793, - "y": -2647.124055 - } - } - }, - { - "id": "6e8a4947-20c2-537f-ac47-66db7c2a682a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.241793, - "y": -2647.124055 - }, - "endPoint": { - "x": 1214.48444, - "y": -2647.070488 - } - } - }, - { - "id": "c901727a-81df-5215-90eb-1e6163cea51b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.48444, - "y": -2647.070488 - }, - "endPoint": { - "x": 1214.715801, - "y": -2647.059202 - } - } - }, - { - "id": "3cc17dfa-50d7-5afe-8e8e-cc47d14902cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.715801, - "y": -2647.059202 - }, - "endPoint": { - "x": 1214.769768, - "y": -2647.004149 - } - } - }, - { - "id": "84b827d5-a6c2-542b-80cf-a850d47ca4d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.769768, - "y": -2647.004149 - }, - "endPoint": { - "x": 1214.860055, - "y": -2646.888537 - } - } - }, - { - "id": "64d29c26-f642-5081-b717-a0004de9d122", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.860055, - "y": -2646.888537 - }, - "endPoint": { - "x": 1214.919358, - "y": -2646.837778 - } - } - }, - { - "id": "b9f90568-7dae-54ba-b58e-d75ada0a051b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.919358, - "y": -2646.837778 - }, - "endPoint": { - "x": 1215.034987, - "y": -2646.956197 - } - } - }, - { - "id": "2a6951c3-22b0-52df-9c3a-38a4883e54c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.034987, - "y": -2646.956197 - }, - "endPoint": { - "x": 1215.153489, - "y": -2647.032336 - } - } - }, - { - "id": "bef00493-a7b4-57f0-914c-20dbbee272a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.153489, - "y": -2647.032336 - }, - "endPoint": { - "x": 1215.317135, - "y": -2647.085903 - } - } - }, - { - "id": "4ca02795-fef1-5c6b-b301-d5ba0c76b168", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.317135, - "y": -2647.085903 - }, - "endPoint": { - "x": 1215.492169, - "y": -2647.080232 - } - } - }, - { - "id": "2970a769-45b5-5eee-bb91-43c13471679b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.492169, - "y": -2647.080232 - }, - "endPoint": { - "x": 1215.647299, - "y": -2647.052045 - } - } - }, - { - "id": "44ece367-96d6-5f18-b9a8-741f75c7fd25", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.647299, - "y": -2647.052045 - }, - "endPoint": { - "x": 1215.715014, - "y": -2647.08871 - } - } - }, - { - "id": "8f6fc541-57b5-5417-a975-87873d8f4db3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.715014, - "y": -2647.08871 - }, - "endPoint": { - "x": 1216.039535, - "y": -2646.959005 - } - } - }, - { - "id": "7c09dc38-1f62-5671-8ab2-fd6db3387048", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.039535, - "y": -2646.959005 - }, - "endPoint": { - "x": 1216.253967, - "y": -2646.792689 - } - } - }, - { - "id": "8d14757f-2f2f-5e52-9d69-33c891e17e7b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.253967, - "y": -2646.792689 - }, - "endPoint": { - "x": 1216.358413, - "y": -2646.657314 - } - } - }, - { - "id": "19cb3cac-f538-5674-bc1f-983af55bbc36", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.358413, - "y": -2646.657314 - }, - "endPoint": { - "x": 1216.386628, - "y": -2646.555851 - } - } - }, - { - "id": "efd0532b-a7e2-584c-af60-2cbe8f3766ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.386628, - "y": -2646.555851 - }, - "endPoint": { - "x": 1216.403557, - "y": -2646.465618 - } - } - }, - { - "id": "fb8efe51-c178-5031-baca-0fc4ffea163a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.403557, - "y": -2646.465618 - }, - "endPoint": { - "x": 1216.402941, - "y": -2646.414474 - } - } - } - ] - }, - { - "id": "3a756de0-cf82-5946-b158-b922dcae078a", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "4f468b5d-ca9c-59bd-80c5-5a186c4e6e5d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.462381, - "y": -2648.460526 - }, - "endPoint": { - "x": 1214.54128, - "y": -2648.534903 - } - } - }, - { - "id": "a5e0274a-bc20-59a2-bbbe-5900ebbca42b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.54128, - "y": -2648.534903 - }, - "endPoint": { - "x": 1214.804036, - "y": -2648.543656 - } - } - }, - { - "id": "e0f97cfd-99df-5534-b71f-5aa76cca2c01", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.804036, - "y": -2648.543656 - }, - "endPoint": { - "x": 1214.91351, - "y": -2648.499889 - } - } - }, - { - "id": "104a17c3-a41f-5c1c-b6e3-1f2c38433e2a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.91351, - "y": -2648.499889 - }, - "endPoint": { - "x": 1215.005541, - "y": -2648.337978 - } - } - }, - { - "id": "c5427dd2-5aa0-57d1-b211-2429cc3737cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.005541, - "y": -2648.337978 - }, - "endPoint": { - "x": 1214.992408, - "y": -2648.162908 - } - } - }, - { - "id": "75bc46bb-564e-57a0-9345-1b24b62b8c2f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.992408, - "y": -2648.162908 - }, - "endPoint": { - "x": 1214.979276, - "y": -2648.027257 - } - } - }, - { - "id": "a6ffbf2b-8d12-582a-8218-3f2c726e0aa4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.979276, - "y": -2648.027257 - }, - "endPoint": { - "x": 1214.8697, - "y": -2648.000997 - } - } - }, - { - "id": "70cd6fda-9314-5d26-826c-3b2a84e31283", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.8697, - "y": -2648.000997 - }, - "endPoint": { - "x": 1214.782183, - "y": -2647.904709 - } - } - }, - { - "id": "ebf03ca6-ef90-551d-88d4-574a97f2757a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.782183, - "y": -2647.904709 - }, - "endPoint": { - "x": 1214.624488, - "y": -2647.882853 - } - } - }, - { - "id": "77aac110-a4e6-5d7b-bafb-59fa586bf863", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.624488, - "y": -2647.882853 - }, - "endPoint": { - "x": 1214.479926, - "y": -2647.887202 - } - } - }, - { - "id": "43405375-40e2-5183-9d15-ffabc383b1f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.479926, - "y": -2647.887202 - }, - "endPoint": { - "x": 1214.440528, - "y": -2647.965983 - } - } - }, - { - "id": "51034fb6-aa8c-5f31-9c67-2cbe17b2eea6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.440528, - "y": -2647.965983 - }, - "endPoint": { - "x": 1214.304789, - "y": -2648.075374 - } - } - }, - { - "id": "0ab8b915-a580-5659-9063-d9ced36ed134", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.304789, - "y": -2648.075374 - }, - "endPoint": { - "x": 1214.287244, - "y": -2648.189169 - } - } - }, - { - "id": "f3f34916-1190-544b-8115-98ae29549e43", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.287244, - "y": -2648.189169 - }, - "endPoint": { - "x": 1214.291656, - "y": -2648.298615 - } - } - }, - { - "id": "e9dcc380-68f0-565a-a295-e63b4abf3059", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.291656, - "y": -2648.298615 - }, - "endPoint": { - "x": 1214.331054, - "y": -2648.408005 - } - } - }, - { - "id": "d883187b-d794-577f-8f0d-84bd00b3853a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.331054, - "y": -2648.408005 - }, - "endPoint": { - "x": 1214.462381, - "y": -2648.460526 - } - } - } - ] - }, - { - "id": "29935c45-ab1c-5c24-ac57-f2dca82f6a33", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "cab018a3-757e-57c1-b6cb-4e59b16ae0c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.25797, - "y": -2648.053518 - }, - "endPoint": { - "x": 1213.21416, - "y": -2648.044764 - } - } - }, - { - "id": "17427560-932c-5de0-8b7d-d244f5e35d99", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.21416, - "y": -2648.044764 - }, - "endPoint": { - "x": 1213.091554, - "y": -2648.127895 - } - } - }, - { - "id": "7a7f865a-17eb-50c8-bdba-4a7223fb690e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.091554, - "y": -2648.127895 - }, - "endPoint": { - "x": 1213.030302, - "y": -2648.281108 - } - } - }, - { - "id": "b9e5ffc4-53bb-555d-a995-9104b090db95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.030302, - "y": -2648.281108 - }, - "endPoint": { - "x": 1213.078421, - "y": -2648.447368 - } - } - }, - { - "id": "f72fd879-f977-5bfb-94ef-5dec6c1b3e32", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.078421, - "y": -2648.447368 - }, - "endPoint": { - "x": 1213.275514, - "y": -2648.548061 - } - } - }, - { - "id": "43066f8b-47f5-5f19-bd97-030e9beac03e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.275514, - "y": -2648.548061 - }, - "endPoint": { - "x": 1213.468196, - "y": -2648.574321 - } - } - }, - { - "id": "0c773bb6-d796-5640-8245-a3de2c31b62b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.468196, - "y": -2648.574321 - }, - "endPoint": { - "x": 1213.599625, - "y": -2648.49554 - } - } - }, - { - "id": "04426ad2-afda-5fb5-9fb9-48d9557f456c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.599625, - "y": -2648.49554 - }, - "endPoint": { - "x": 1213.691554, - "y": -2648.368587 - } - } - }, - { - "id": "565749da-4e85-5d58-a36d-25e71d0dc021", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.691554, - "y": -2648.368587 - }, - "endPoint": { - "x": 1213.700377, - "y": -2648.206676 - } - } - }, - { - "id": "75c0fe3e-badd-5590-8a2f-8cb1c00dc09d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.700377, - "y": -2648.206676 - }, - "endPoint": { - "x": 1213.61717, - "y": -2648.018504 - } - } - }, - { - "id": "5f345707-bfdb-5f3e-9059-cb9e8827804e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.61717, - "y": -2648.018504 - }, - "endPoint": { - "x": 1213.446342, - "y": -2647.98349 - } - } - }, - { - "id": "d71be454-fc50-5db6-8363-a38e1b34dfe0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.446342, - "y": -2647.98349 - }, - "endPoint": { - "x": 1213.297368, - "y": -2648.00975 - } - } - }, - { - "id": "f85504e5-008b-5e74-8d39-73c63bacb897", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.297368, - "y": -2648.00975 - }, - "endPoint": { - "x": 1213.25797, - "y": -2648.053518 - } - } - } - ] - }, - { - "id": "196571f0-fb49-5184-b43b-9f1a188a3137", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "d7e441f3-2057-5e81-9ecc-18c8925e59d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.977635, - "y": -2648.12283 - }, - "endPoint": { - "x": 1211.81994, - "y": -2648.140337 - } - } - }, - { - "id": "fd359d60-6fba-56c4-8077-722c01bb89ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.81994, - "y": -2648.140337 - }, - "endPoint": { - "x": 1211.710467, - "y": -2648.26283 - } - } - }, - { - "id": "456ad633-9a3a-582e-b911-897a894656b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.710467, - "y": -2648.26283 - }, - "endPoint": { - "x": 1211.63598, - "y": -2648.363522 - } - } - }, - { - "id": "0ef6cf94-1d35-5e93-8d15-60ed7aa7290e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.63598, - "y": -2648.363522 - }, - "endPoint": { - "x": 1211.754277, - "y": -2648.54729 - } - } - }, - { - "id": "b00ee4ff-6ec6-5198-949a-22eec61d2b29", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.754277, - "y": -2648.54729 - }, - "endPoint": { - "x": 1212.043299, - "y": -2648.556043 - } - } - }, - { - "id": "4bb44ea3-df99-5743-a6f4-e2fbcae8ce25", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.043299, - "y": -2648.556043 - }, - "endPoint": { - "x": 1212.214126, - "y": -2648.494769 - } - } - }, - { - "id": "16cf2955-8d33-5dbd-852c-7321eb48c7aa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.214126, - "y": -2648.494769 - }, - "endPoint": { - "x": 1212.297334, - "y": -2648.446653 - } - } - }, - { - "id": "231319e8-8d56-5ed1-985c-b42189382d92", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.297334, - "y": -2648.446653 - }, - "endPoint": { - "x": 1212.37613, - "y": -2648.341611 - } - } - }, - { - "id": "2af85002-9103-5246-9386-2109e268ba4f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.37613, - "y": -2648.341611 - }, - "endPoint": { - "x": 1212.336732, - "y": -2648.214713 - } - } - }, - { - "id": "2910f0d2-9e64-5f57-8dfd-dfdd242aeb52", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.336732, - "y": -2648.214713 - }, - "endPoint": { - "x": 1212.196582, - "y": -2648.144686 - } - } - }, - { - "id": "b88da474-966f-55c0-8288-483331572911", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.196582, - "y": -2648.144686 - }, - "endPoint": { - "x": 1211.977635, - "y": -2648.12283 - } - } - } - ] - }, - { - "id": "a36d6705-9f98-571c-8eb1-4c78830aca94", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "ce75dc5c-fe2a-51a6-a361-293d3537bd07", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.795078, - "y": -2647.680808 - }, - "endPoint": { - "x": 1210.913272, - "y": -2647.672054 - } - } - }, - { - "id": "bf469d2a-1b64-5e0b-a455-48bdc4da7791", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.913272, - "y": -2647.672054 - }, - "endPoint": { - "x": 1211.04029, - "y": -2647.571417 - } - } - }, - { - "id": "1dae98d6-d325-512a-94c3-522827740005", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.04029, - "y": -2647.571417 - }, - "endPoint": { - "x": 1211.206808, - "y": -2647.545157 - } - } - }, - { - "id": "a326bf29-fd8e-51e7-b1c3-c17dd7c0d42e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.206808, - "y": -2647.545157 - }, - "endPoint": { - "x": 1211.403901, - "y": -2647.575766 - } - } - }, - { - "id": "37b7c8f5-c522-55b7-8c96-9faf84d3d350", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.403901, - "y": -2647.575766 - }, - "endPoint": { - "x": 1211.76741, - "y": -2647.58452 - } - } - }, - { - "id": "a72161c9-467b-5f1b-a027-a1b427d2fb00", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.76741, - "y": -2647.58452 - }, - "endPoint": { - "x": 1211.960091, - "y": -2647.575766 - } - } - }, - { - "id": "078e4255-1fe6-5cab-9d9c-bcb1ed8f38ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.960091, - "y": -2647.575766 - }, - "endPoint": { - "x": 1212.27979, - "y": -2647.575766 - } - } - }, - { - "id": "3bc3bdfa-2294-5ab7-b08f-332ce3a65675", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.27979, - "y": -2647.575766 - }, - "endPoint": { - "x": 1212.43769, - "y": -2647.568829 - } - } - }, - { - "id": "2063d7e8-4ef1-541c-b02a-b4625d5fdfd3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.43769, - "y": -2647.568829 - }, - "endPoint": { - "x": 1212.423429, - "y": -2647.199202 - } - } - }, - { - "id": "64a01f60-52d3-587b-b1f3-3908b11b5437", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.423429, - "y": -2647.199202 - }, - "endPoint": { - "x": 1212.123634, - "y": -2647.174208 - } - } - }, - { - "id": "de6b2480-c9c7-5961-a8e6-beccfc27bde3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.123634, - "y": -2647.174208 - }, - "endPoint": { - "x": 1211.683997, - "y": -2647.1812 - } - } - }, - { - "id": "200c5c4f-b38a-5302-8ed9-02f6fcda71c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.683997, - "y": -2647.1812 - }, - "endPoint": { - "x": 1211.279346, - "y": -2647.198597 - } - } - }, - { - "id": "de258aab-e70b-5433-928a-01563671bfaf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.279346, - "y": -2647.198597 - }, - "endPoint": { - "x": 1210.89583, - "y": -2647.203772 - } - } - }, - { - "id": "67513a3b-1df2-5d19-8257-313e47fadcc7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.89583, - "y": -2647.203772 - }, - "endPoint": { - "x": 1210.689914, - "y": -2647.155655 - } - } - }, - { - "id": "0f9fbc5e-ee46-55c5-b1d6-9a0c5ec27cb7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.689914, - "y": -2647.155655 - }, - "endPoint": { - "x": 1210.554175, - "y": -2647.138148 - } - } - }, - { - "id": "669990c5-6207-514b-97b6-a174d4afb311", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.554175, - "y": -2647.138148 - }, - "endPoint": { - "x": 1210.427157, - "y": -2647.146902 - } - } - }, - { - "id": "e149c586-1cf9-598a-b89c-28e5c95f38d7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.427157, - "y": -2647.146902 - }, - "endPoint": { - "x": 1210.357082, - "y": -2647.225683 - } - } - }, - { - "id": "52fd0204-11e0-5cc8-adca-1698937c2478", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.357082, - "y": -2647.225683 - }, - "endPoint": { - "x": 1210.348361, - "y": -2647.308813 - } - } - }, - { - "id": "d4c5d518-33be-588b-9067-f99f73a24fb5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.348361, - "y": -2647.308813 - }, - "endPoint": { - "x": 1210.265153, - "y": -2647.361334 - } - } - }, - { - "id": "e5318e96-e6c9-535c-b019-b2171d4d91bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.265153, - "y": -2647.361334 - }, - "endPoint": { - "x": 1210.21252, - "y": -2647.440115 - } - } - }, - { - "id": "4d37ceab-0436-5e12-a302-21949d218708", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.21252, - "y": -2647.440115 - }, - "endPoint": { - "x": 1210.278286, - "y": -2647.632636 - } - } - }, - { - "id": "665fe629-2ea0-5500-994d-1ad67e493652", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.278286, - "y": -2647.632636 - }, - "endPoint": { - "x": 1210.400892, - "y": -2647.702664 - } - } - }, - { - "id": "c2bdbdaa-56c6-5478-84df-89a8c8505a5d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.400892, - "y": -2647.702664 - }, - "endPoint": { - "x": 1210.62425, - "y": -2647.733328 - } - } - }, - { - "id": "2f416d97-53be-52d7-83d1-55a60a7483ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.62425, - "y": -2647.733328 - }, - "endPoint": { - "x": 1210.795078, - "y": -2647.680808 - } - } - } - ] - }, - { - "id": "063343f3-381b-5811-9abf-339fd8442ae5", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "50c8b1b3-6d2c-5fe6-8048-37620a780e0c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.402941, - "y": -2646.414474 - }, - "endPoint": { - "x": 1216.25961, - "y": -2646.217604 - } - } - }, - { - "id": "a40a423c-15ca-5972-8838-028c09264d05", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.25961, - "y": -2646.217604 - }, - "endPoint": { - "x": 1216.098427, - "y": -2646.092303 - } - } - }, - { - "id": "0f56cd6e-21b2-5d04-804f-2da5022eb44a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.098427, - "y": -2646.092303 - }, - "endPoint": { - "x": 1215.856601, - "y": -2645.980435 - } - } - }, - { - "id": "9551c3be-0c4b-5cc0-88f8-674241aa1de5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.856601, - "y": -2645.980435 - }, - "endPoint": { - "x": 1215.650582, - "y": -2645.890918 - } - } - }, - { - "id": "bc2edb59-53d1-5db6-94a6-e8a2aa4f4055", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.650582, - "y": -2645.890918 - }, - "endPoint": { - "x": 1215.220589, - "y": -2645.90881 - } - } - }, - { - "id": "30a512f5-dd9f-5714-ac61-c78c4822506d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.220589, - "y": -2645.90881 - }, - "endPoint": { - "x": 1214.911663, - "y": -2645.949109 - } - } - }, - { - "id": "2d6f7642-e459-51d7-b170-47b49919d13a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.911663, - "y": -2645.949109 - }, - "endPoint": { - "x": 1214.778079, - "y": -2645.995739 - } - } - }, - { - "id": "acca5aa7-53c5-5efc-a2d7-e23d05f90e8f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.778079, - "y": -2645.995739 - }, - "endPoint": { - "x": 1214.619666, - "y": -2646.049526 - } - } - }, - { - "id": "0c3dfbd9-ea63-5a22-a00b-3ecc776c8c0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.619666, - "y": -2646.049526 - }, - "endPoint": { - "x": 1214.459611, - "y": -2646.018807 - } - } - }, - { - "id": "a8500276-b8f7-5e66-95be-2a4a5a1f83c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.459611, - "y": -2646.018807 - }, - "endPoint": { - "x": 1214.271649, - "y": -2645.656226 - } - } - }, - { - "id": "e4140ebf-c49c-5ba9-bcca-1f725c3c6946", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.271649, - "y": -2645.656226 - }, - "endPoint": { - "x": 1214.12996, - "y": -2645.400504 - } - } - }, - { - "id": "2757f576-3922-56cc-8c3b-ff5bc9674717", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.12996, - "y": -2645.400504 - }, - "endPoint": { - "x": 1213.901574, - "y": -2645.211672 - } - } - }, - { - "id": "f2b0e007-a106-5b96-88e9-4d4bdba1bc6b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.901574, - "y": -2645.211672 - }, - "endPoint": { - "x": 1213.708585, - "y": -2645.129092 - } - } - }, - { - "id": "a7ffade3-cba8-50f3-8868-9132d445d067", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.708585, - "y": -2645.129092 - }, - "endPoint": { - "x": 1213.610193, - "y": -2645.113347 - } - } - }, - { - "id": "8de12b5d-1832-587f-b63e-2eb117000e67", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.610193, - "y": -2645.113347 - }, - "endPoint": { - "x": 1213.515699, - "y": -2645.042493 - } - } - }, - { - "id": "3a9e1922-f5c9-5c2a-90c9-474fd76c9f49", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.515699, - "y": -2645.042493 - }, - "endPoint": { - "x": 1213.090528, - "y": -2645.046457 - } - } - }, - { - "id": "a66e9114-4e07-54c6-84f4-9db2f30de0f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.090528, - "y": -2645.046457 - }, - "endPoint": { - "x": 1212.834543, - "y": -2645.097602 - } - } - }, - { - "id": "d22b3821-bd8a-5797-95dd-0e90e29336b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.834543, - "y": -2645.097602 - }, - "endPoint": { - "x": 1212.710706, - "y": -2645.224004 - } - } - }, - { - "id": "954cedbf-9e87-5e96-a04c-64257dfca267", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.710706, - "y": -2645.224004 - }, - "endPoint": { - "x": 1212.64771, - "y": -2645.389218 - } - } - }, - { - "id": "f63a8444-5fdb-5211-99ba-db90dd6830d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.64771, - "y": -2645.389218 - }, - "endPoint": { - "x": 1212.376028, - "y": -2645.656722 - } - } - }, - { - "id": "05f34cfb-935e-5dde-865f-3e2ab1b377c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.376028, - "y": -2645.656722 - }, - "endPoint": { - "x": 1212.309031, - "y": -2645.888881 - } - } - }, - { - "id": "92dd2056-9771-599e-b0c2-db583f7afb6c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.309031, - "y": -2645.888881 - }, - "endPoint": { - "x": 1212.076746, - "y": -2645.963588 - } - } - }, - { - "id": "bbbe7820-47f7-5726-a4df-11a244668c82", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.076746, - "y": -2645.963588 - }, - "endPoint": { - "x": 1211.722471, - "y": -2645.951807 - } - } - }, - { - "id": "3c313f16-a4f1-52cb-8b61-e9ba68bfa32c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.722471, - "y": -2645.951807 - }, - "endPoint": { - "x": 1211.616179, - "y": -2645.904571 - } - } - }, - { - "id": "3dcf1cc6-f077-55f1-a1ae-58226b1f27a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.616179, - "y": -2645.904571 - }, - "endPoint": { - "x": 1211.470488, - "y": -2645.943934 - } - } - }, - { - "id": "6898062e-ce17-5e5b-9812-85dcc7e06d98", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.470488, - "y": -2645.943934 - }, - "endPoint": { - "x": 1211.246001, - "y": -2646.002951 - } - } - }, - { - "id": "4b9c690e-43f3-5263-9655-ad644a7e3bc7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.246001, - "y": -2646.002951 - }, - "endPoint": { - "x": 1210.935023, - "y": -2645.940026 - } - } - }, - { - "id": "b97111c6-5bcd-55d2-aedc-b6a2c6c5a6a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.935023, - "y": -2645.940026 - }, - "endPoint": { - "x": 1210.802978, - "y": -2645.848582 - } - } - }, - { - "id": "880c6353-bcfb-5d23-ae67-27118dd3b338", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.802978, - "y": -2645.848582 - }, - "endPoint": { - "x": 1210.747882, - "y": -2645.636187 - } - } - }, - { - "id": "79dc5f26-4baa-5aad-89b4-4c4a29c7d0f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.747882, - "y": -2645.636187 - }, - "endPoint": { - "x": 1210.610091, - "y": -2645.368628 - } - } - }, - { - "id": "bfee45c6-4537-58e4-b378-2d91705e5683", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.610091, - "y": -2645.368628 - }, - "endPoint": { - "x": 1210.499797, - "y": -2645.179796 - } - } - }, - { - "id": "c94c703c-5b81-5324-9fce-89d2ab6c7591", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.499797, - "y": -2645.179796 - }, - "endPoint": { - "x": 1210.358108, - "y": -2645.132615 - } - } - }, - { - "id": "1f523846-0936-533b-9194-5f8e11bb3700", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.358108, - "y": -2645.132615 - }, - "endPoint": { - "x": 1210.094326, - "y": -2645.108998 - } - } - }, - { - "id": "31e40c0d-fe6a-54a0-ab3d-cd41a19608a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.094326, - "y": -2645.108998 - }, - "endPoint": { - "x": 1209.806843, - "y": -2645.179796 - } - } - }, - { - "id": "8cbbe069-4758-50ea-bb41-90e46954c5c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.806843, - "y": -2645.179796 - }, - "endPoint": { - "x": 1209.586357, - "y": -2645.376501 - } - } - }, - { - "id": "a292a9c2-c52b-514c-92ce-4a70d4278989", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.586357, - "y": -2645.376501 - }, - "endPoint": { - "x": 1209.381672, - "y": -2645.596824 - } - } - }, - { - "id": "0cbd0b8d-c9ec-59f3-9db6-617459988001", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.381672, - "y": -2645.596824 - }, - "endPoint": { - "x": 1209.295078, - "y": -2645.703022 - } - } - }, - { - "id": "33ba960a-9fb9-52c9-849b-c4610ee3d9bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.295078, - "y": -2645.703022 - }, - "endPoint": { - "x": 1209.291077, - "y": -2645.813183 - } - } - }, - { - "id": "d0e5663a-7a62-504c-8a80-3e869a04cba5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.291077, - "y": -2645.813183 - }, - "endPoint": { - "x": 1209.153286, - "y": -2645.942998 - } - } - }, - { - "id": "51beed3d-06d9-5ea8-8311-9ecdcb1ef3f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.153286, - "y": -2645.942998 - }, - "endPoint": { - "x": 1209.121788, - "y": -2646.143667 - } - } - }, - { - "id": "e63f5ddf-b7d8-5174-b076-15db0eb32199", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.121788, - "y": -2646.143667 - }, - "endPoint": { - "x": 1208.991898, - "y": -2646.379735 - } - } - }, - { - "id": "f014d7b9-e825-5475-81bd-86f957288f74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.991898, - "y": -2646.379735 - }, - "endPoint": { - "x": 1208.569805, - "y": -2646.723763 - } - } - }, - { - "id": "ea661f96-8f3b-5e0f-8a22-e01180d2a430", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.569805, - "y": -2646.723763 - }, - "endPoint": { - "x": 1208.455612, - "y": -2646.877196 - } - } - }, - { - "id": "218ed395-6ce7-57ce-bb8e-bbbf97b9ae98", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.455612, - "y": -2646.877196 - }, - "endPoint": { - "x": 1208.156433, - "y": -2646.955922 - } - } - }, - { - "id": "75957285-00c0-5d07-a178-18395c7672d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.156433, - "y": -2646.955922 - }, - "endPoint": { - "x": 1208.061939, - "y": -2647.050338 - } - } - }, - { - "id": "860fdf9c-8467-5b72-a9cb-a3f4cfa347c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.061939, - "y": -2647.050338 - }, - "endPoint": { - "x": 1207.994942, - "y": -2647.258825 - } - } - }, - { - "id": "cd61bb90-d656-5e7a-ad62-947cf0114650", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.994942, - "y": -2647.258825 - }, - "endPoint": { - "x": 1207.908348, - "y": -2647.428003 - } - } - }, - { - "id": "18c6bb01-edd6-5868-8e3a-f82821d8f691", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.908348, - "y": -2647.428003 - }, - "endPoint": { - "x": 1207.790257, - "y": -2647.510638 - } - } - }, - { - "id": "a49e62a2-433e-53af-a2ff-3aa368848eb1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.790257, - "y": -2647.510638 - }, - "endPoint": { - "x": 1207.764812, - "y": -2647.702058 - } - } - }, - { - "id": "05667275-6994-5e3f-b203-0a9bc69ece10", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.764812, - "y": -2647.702058 - }, - "endPoint": { - "x": 1207.715359, - "y": -2647.835397 - } - } - }, - { - "id": "aba5925e-4b82-53ca-86fc-dd4869f4cf42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.715359, - "y": -2647.835397 - }, - "endPoint": { - "x": 1207.646208, - "y": -2647.998354 - } - } - }, - { - "id": "df5289c5-c49f-5aea-9b21-ec04de7df9fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.646208, - "y": -2647.998354 - }, - "endPoint": { - "x": 1207.626406, - "y": -2648.111984 - } - } - }, - { - "id": "5e47e70b-e43a-5fb6-af37-7c05f4a5c5e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.626406, - "y": -2648.111984 - }, - "endPoint": { - "x": 1207.710435, - "y": -2648.20084 - } - } - }, - { - "id": "1b32a256-af03-5db6-a445-393d0e2a769a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.710435, - "y": -2648.20084 - }, - "endPoint": { - "x": 1207.720284, - "y": -2648.368752 - } - } - }, - { - "id": "c58c386c-e8bb-5bc4-b852-c4594136b6fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.720284, - "y": -2648.368752 - }, - "endPoint": { - "x": 1207.833964, - "y": -2648.541619 - } - } - }, - { - "id": "aac58aac-4926-5fcc-8bbe-359a099f80f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.833964, - "y": -2648.541619 - }, - "endPoint": { - "x": 1208.076201, - "y": -2648.650239 - } - } - }, - { - "id": "b4ec4d5a-b839-5714-8cf6-c41caa5d4056", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.076201, - "y": -2648.650239 - }, - "endPoint": { - "x": 1208.402363, - "y": -2648.684813 - } - } - }, - { - "id": "ad687fbb-8ee4-56c9-9f6a-34daae1d0f6c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.402363, - "y": -2648.684813 - }, - "endPoint": { - "x": 1208.575345, - "y": -2648.674958 - } - } - }, - { - "id": "b2489b79-f0ca-5932-a194-4a391cfaf97f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.575345, - "y": -2648.674958 - }, - "endPoint": { - "x": 1208.743403, - "y": -2648.566283 - } - } - }, - { - "id": "969d6cf0-4eba-5246-9834-6778e3c665b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.743403, - "y": -2648.566283 - }, - "endPoint": { - "x": 1208.916385, - "y": -2648.576193 - } - } - }, - { - "id": "0e1bce25-dca6-5b7a-84a3-0d3a5e2014bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.916385, - "y": -2648.576193 - }, - "endPoint": { - "x": 1208.936187, - "y": -2648.650239 - } - } - }, - { - "id": "10057d42-e232-5cb4-8814-99202bcc9410", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.936187, - "y": -2648.650239 - }, - "endPoint": { - "x": 1208.871857, - "y": -2648.768769 - } - } - }, - { - "id": "982ef024-88fa-5057-84eb-400f726ed13c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.871857, - "y": -2648.768769 - }, - "endPoint": { - "x": 1208.545694, - "y": -2648.852725 - } - } - }, - { - "id": "cdd6688a-7799-5502-8595-4f8544757edb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.545694, - "y": -2648.852725 - }, - "endPoint": { - "x": 1208.451816, - "y": -2649.020637 - } - } - }, - { - "id": "2cee84ea-8ae0-5252-ae32-ac4e18c56a02", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.451816, - "y": -2649.020637 - }, - "endPoint": { - "x": 1208.229381, - "y": -2649.139167 - } - } - }, - { - "id": "819aa354-8e5a-5473-8c6d-d832b0fd1340", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.229381, - "y": -2649.139167 - }, - "endPoint": { - "x": 1208.090975, - "y": -2649.341652 - } - } - }, - { - "id": "aa9bfc01-8c6b-512d-8414-95dd49e1b16d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.090975, - "y": -2649.341652 - }, - "endPoint": { - "x": 1207.947644, - "y": -2649.598476 - } - } - }, - { - "id": "5d14fba2-1b27-5622-a7c5-abadd149f7ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.947644, - "y": -2649.598476 - }, - "endPoint": { - "x": 1207.878595, - "y": -2649.88277 - } - } - }, - { - "id": "448bcc50-dadd-5f37-ade7-2fc8b8934e0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.878595, - "y": -2649.88277 - }, - "endPoint": { - "x": 1207.809443, - "y": -2650.134639 - } - } - }, - { - "id": "c9f501ab-8dcf-5354-8a0b-0bd5dc155e6a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.809443, - "y": -2650.134639 - }, - "endPoint": { - "x": 1207.87367, - "y": -2650.445799 - } - } - }, - { - "id": "7bb4eb32-53e0-5fbf-8c5c-812806033cee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.87367, - "y": -2650.445799 - }, - "endPoint": { - "x": 1207.962623, - "y": -2650.712477 - } - } - }, - { - "id": "dee0a06f-522b-59d7-b9b1-330bd0bc4698", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.962623, - "y": -2650.712477 - }, - "endPoint": { - "x": 1208.209682, - "y": -2650.87048 - } - } - }, - { - "id": "5af1dd50-3910-5631-99b4-9e9f38d67345", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.209682, - "y": -2650.87048 - }, - "endPoint": { - "x": 1208.47172, - "y": -2650.944581 - } - } - }, - { - "id": "f56e85e4-5ec3-50d1-b48f-05ac2d24a145", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.47172, - "y": -2650.944581 - }, - "endPoint": { - "x": 1208.679278, - "y": -2650.885289 - } - } - }, - { - "id": "8b8ce379-4544-5653-bbdf-6028f8a26013", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.679278, - "y": -2650.885289 - }, - "endPoint": { - "x": 1208.816453, - "y": -2650.821868 - } - } - }, - { - "id": "75d64463-b365-5725-9d2b-9d0767b675fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.816453, - "y": -2650.821868 - }, - "endPoint": { - "x": 1208.986152, - "y": -2650.809756 - } - } - }, - { - "id": "0b17a383-fb57-55b8-8866-531f0b2e028f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.986152, - "y": -2650.809756 - }, - "endPoint": { - "x": 1209.124353, - "y": -2650.82429 - } - } - }, - { - "id": "44ae06da-1cb2-580d-afdf-c696f067e63a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.124353, - "y": -2650.82429 - }, - "endPoint": { - "x": 1209.180065, - "y": -2650.858203 - } - } - }, - { - "id": "6be18595-1dac-5508-a263-906b1015aafa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.180065, - "y": -2650.858203 - }, - "endPoint": { - "x": 1209.180065, - "y": -2650.942985 - } - } - }, - { - "id": "16dbc420-a507-5f22-bfbf-f70e9305e620", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.180065, - "y": -2650.942985 - }, - "endPoint": { - "x": 1209.109682, - "y": -2651.146847 - } - } - }, - { - "id": "6d51209e-f9c0-5b22-aa71-567c865f1182", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.109682, - "y": -2651.146847 - }, - "endPoint": { - "x": 1209.074695, - "y": -2651.297968 - } - } - }, - { - "id": "f443fc9d-7ca7-568c-b106-9d81b504b7e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.074695, - "y": -2651.297968 - }, - "endPoint": { - "x": 1208.966146, - "y": -2651.390952 - } - } - }, - { - "id": "eb2a7ebd-779d-52d3-aa53-8b1c7ac651ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.966146, - "y": -2651.390952 - }, - "endPoint": { - "x": 1208.927363, - "y": -2651.487846 - } - } - }, - { - "id": "3aca2620-680b-5ef6-b24b-3500d09602b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.927363, - "y": -2651.487846 - }, - "endPoint": { - "x": 1208.896378, - "y": -2651.728098 - } - } - }, - { - "id": "3e5d1762-e716-5f0c-bea1-62976f0612ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.896378, - "y": -2651.728098 - }, - "endPoint": { - "x": 1208.729552, - "y": -2651.828846 - } - } - }, - { - "id": "d26caaca-38b7-50c5-b0ee-dd37f8f584ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.729552, - "y": -2651.828846 - }, - "endPoint": { - "x": 1208.604894, - "y": -2652.056215 - } - } - }, - { - "id": "794170cf-3e78-5516-8ee2-41d320979e65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.604894, - "y": -2652.056215 - }, - "endPoint": { - "x": 1208.531125, - "y": -2652.253801 - } - } - }, - { - "id": "45e2c5b0-0a54-5a14-99c2-cf5fe8db316c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.531125, - "y": -2652.253801 - }, - "endPoint": { - "x": 1208.310127, - "y": -2652.486346 - } - } - }, - { - "id": "81870457-ca2b-5fb9-b693-f663b24c6f36", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.310127, - "y": -2652.486346 - }, - "endPoint": { - "x": 1208.201577, - "y": -2652.703311 - } - } - }, - { - "id": "5c1d4264-bcec-558f-a464-4c4a58de12ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.201577, - "y": -2652.703311 - }, - "endPoint": { - "x": 1208.193779, - "y": -2653.114117 - } - } - }, - { - "id": "9a86f5cc-f7a5-5742-9b24-f75ebae32bcb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.193779, - "y": -2653.114117 - }, - "endPoint": { - "x": 1208.275243, - "y": -2653.214865 - } - } - }, - { - "id": "e75c8772-f9c1-55a2-839e-2d9fcdd008d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.275243, - "y": -2653.214865 - }, - "endPoint": { - "x": 1208.395387, - "y": -2653.404743 - } - } - }, - { - "id": "1b9cd286-7d9e-5b07-ab1d-abc0d45f1e28", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.395387, - "y": -2653.404743 - }, - "endPoint": { - "x": 1208.539641, - "y": -2653.662117 - } - } - }, - { - "id": "a77e2341-03fd-50e1-aff4-a01a3e418e3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.539641, - "y": -2653.662117 - }, - "endPoint": { - "x": 1208.869292, - "y": -2653.666026 - } - } - }, - { - "id": "e70e2ca4-f518-5eec-8b7f-9ed8e33e0da3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.869292, - "y": -2653.666026 - }, - "endPoint": { - "x": 1209.179552, - "y": -2653.681496 - } - } - }, - { - "id": "a4564fd7-0800-506f-b69f-4ed27d26149f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.179552, - "y": -2653.681496 - }, - "endPoint": { - "x": 1209.334682, - "y": -2653.658263 - } - } - }, - { - "id": "037b284c-d84d-56c3-972c-153b76e0f131", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.334682, - "y": -2653.658263 - }, - "endPoint": { - "x": 1209.381159, - "y": -2653.565223 - } - } - }, - { - "id": "305e8f0c-2975-5d7f-8a4b-7fbf7ffc8b5a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.381159, - "y": -2653.565223 - }, - "endPoint": { - "x": 1209.485913, - "y": -2653.510996 - } - } - }, - { - "id": "758a838d-7371-51af-80dd-46192981bb31", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.485913, - "y": -2653.510996 - }, - "endPoint": { - "x": 1209.606159, - "y": -2653.495471 - } - } - }, - { - "id": "0b174d01-b048-5e4a-922a-5f2984a56748", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.606159, - "y": -2653.495471 - }, - "endPoint": { - "x": 1209.726303, - "y": -2653.371491 - } - } - }, - { - "id": "ba005540-3fe9-5ae2-8ad1-86227319995c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.726303, - "y": -2653.371491 - }, - "endPoint": { - "x": 1209.86594, - "y": -2653.193229 - } - } - }, - { - "id": "86d730f4-20f8-5db4-b121-76c37185c190", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.86594, - "y": -2653.193229 - }, - "endPoint": { - "x": 1209.958997, - "y": -2653.108007 - } - } - }, - { - "id": "5aac545c-219b-5d10-ae49-73baa5e0a043", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.958997, - "y": -2653.108007 - }, - "endPoint": { - "x": 1210.133519, - "y": -2653.061487 - } - } - }, - { - "id": "0226a04c-5096-5da3-8cc3-fe8cf55f8dd3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.133519, - "y": -2653.061487 - }, - "endPoint": { - "x": 1210.245967, - "y": -2653.088628 - } - } - }, - { - "id": "ab56bc26-1ea9-5a34-93b1-df980d06a608", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.245967, - "y": -2653.088628 - }, - "endPoint": { - "x": 1210.33133, - "y": -2653.166088 - } - } - }, - { - "id": "4c970f44-2aff-5bde-a68a-9244026bf965", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.33133, - "y": -2653.166088 - }, - "endPoint": { - "x": 1210.424387, - "y": -2653.34435 - } - } - }, - { - "id": "065193d9-dc49-5d75-85b2-41fcd08bf853", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.424387, - "y": -2653.34435 - }, - "endPoint": { - "x": 1210.592342, - "y": -2653.41724 - } - } - }, - { - "id": "0c40dbd6-3aa7-5768-a8e0-36bba1a5531d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.592342, - "y": -2653.41724 - }, - "endPoint": { - "x": 1210.867718, - "y": -2653.483084 - } - } - }, - { - "id": "d980b6fa-3110-5c25-a212-b370fe58c94c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.867718, - "y": -2653.483084 - }, - "endPoint": { - "x": 1211.042239, - "y": -2653.506371 - } - } - }, - { - "id": "4977eed0-0e8d-5ab3-abbe-e5c930558df5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.042239, - "y": -2653.506371 - }, - "endPoint": { - "x": 1211.197369, - "y": -2653.378483 - } - } - }, - { - "id": "59d3f928-963f-5548-b917-dc95c0cfd2da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.197369, - "y": -2653.378483 - }, - "endPoint": { - "x": 1211.426165, - "y": -2653.235124 - } - } - }, - { - "id": "738ddff4-5048-531f-a52d-dc5c097e8a77", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.426165, - "y": -2653.235124 - }, - "endPoint": { - "x": 1211.530816, - "y": -2653.072332 - } - } - }, - { - "id": "a1f9df2f-c596-566d-9f5c-c0c1b4e62b2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.530816, - "y": -2653.072332 - }, - "endPoint": { - "x": 1211.569599, - "y": -2652.932827 - } - } - }, - { - "id": "9acb7588-c54a-5088-96ca-ff025c7409ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.569599, - "y": -2652.932827 - }, - "endPoint": { - "x": 1211.639469, - "y": -2652.746858 - } - } - }, - { - "id": "23f53022-430b-5106-8f1e-4fd28ddd7f95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.639469, - "y": -2652.746858 - }, - "endPoint": { - "x": 1211.769975, - "y": -2652.270317 - } - } - }, - { - "id": "ee10495d-d193-5113-b7b3-ef06104a79df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.769975, - "y": -2652.270317 - }, - "endPoint": { - "x": 1211.857287, - "y": -2651.905149 - } - } - }, - { - "id": "82553664-b7ad-593d-acf9-88e483cdb14f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.857287, - "y": -2651.905149 - }, - "endPoint": { - "x": 1211.846411, - "y": -2651.545487 - } - } - }, - { - "id": "95371638-5e68-5693-8599-a3258617585e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.846411, - "y": -2651.545487 - }, - "endPoint": { - "x": 1211.808244, - "y": -2651.114916 - } - } - }, - { - "id": "6986786d-e86a-5032-abc2-04aee372d9ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.808244, - "y": -2651.114916 - }, - "endPoint": { - "x": 1211.72637, - "y": -2650.940507 - } - } - }, - { - "id": "650695a6-d37b-5f4b-abb3-71bb0ebefe2e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.72637, - "y": -2650.940507 - }, - "endPoint": { - "x": 1211.562724, - "y": -2650.875104 - } - } - }, - { - "id": "34e71006-9c50-5e12-a4ab-86cbe4fb67c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.562724, - "y": -2650.875104 - }, - "endPoint": { - "x": 1211.31187, - "y": -2650.880554 - } - } - }, - { - "id": "8c08ac10-d035-544f-949c-be911c9025a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.31187, - "y": -2650.880554 - }, - "endPoint": { - "x": 1211.07189, - "y": -2651.038612 - } - } - }, - { - "id": "43c4efc6-40a1-5f91-a9b2-e65cea0be9e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.07189, - "y": -2651.038612 - }, - "endPoint": { - "x": 1210.86464, - "y": -2651.305675 - } - } - }, - { - "id": "e03946d9-1077-525b-bcb9-c2f0edeed7a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.86464, - "y": -2651.305675 - }, - "endPoint": { - "x": 1210.71187, - "y": -2651.670788 - } - } - }, - { - "id": "a2d347cb-c443-5259-bd8f-89454ba52452", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.71187, - "y": -2651.670788 - }, - "endPoint": { - "x": 1210.602807, - "y": -2651.807044 - } - } - }, - { - "id": "9baf7155-5c59-518e-8b18-a8c05dbf09f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.602807, - "y": -2651.807044 - }, - "endPoint": { - "x": 1210.455577, - "y": -2652.014155 - } - } - }, - { - "id": "35b0b071-0f17-5c0b-88fe-fa7386e3a3ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.455577, - "y": -2652.014155 - }, - "endPoint": { - "x": 1210.330098, - "y": -2652.074108 - } - } - }, - { - "id": "ee66e6c9-ae5b-5fa1-aaf3-6c9921810dfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.330098, - "y": -2652.074108 - }, - "endPoint": { - "x": 1210.174353, - "y": -2652.074328 - } - } - }, - { - "id": "5503660c-a00f-58db-a4f1-5fdb13872020", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.174353, - "y": -2652.074328 - }, - "endPoint": { - "x": 1210.110126, - "y": -2652.015531 - } - } - }, - { - "id": "8f3f10e8-96bd-5ce3-afe2-1d4bdd10bdbb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.110126, - "y": -2652.015531 - }, - "endPoint": { - "x": 1210.128799, - "y": -2651.724189 - } - } - }, - { - "id": "fc7bf9db-86e3-5d2a-89f7-fd8ff93642a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.128799, - "y": -2651.724189 - }, - "endPoint": { - "x": 1210.139982, - "y": -2651.51284 - } - } - }, - { - "id": "68ceb3a6-07fe-5d69-8110-76642f76072b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.139982, - "y": -2651.51284 - }, - "endPoint": { - "x": 1210.190358, - "y": -2651.355168 - } - } - }, - { - "id": "4dd8163c-b824-5b33-a1bc-ea1cf2f99e59", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.190358, - "y": -2651.355168 - }, - "endPoint": { - "x": 1210.170146, - "y": -2651.157197 - } - } - }, - { - "id": "1abcf266-8331-5e59-8315-b2f929acfee2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.170146, - "y": -2651.157197 - }, - "endPoint": { - "x": 1210.109716, - "y": -2651.059863 - } - } - }, - { - "id": "3e522a32-732b-56cc-9101-81a5000ee71c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.109716, - "y": -2651.059863 - }, - "endPoint": { - "x": 1210.139982, - "y": -2650.791423 - } - } - }, - { - "id": "3fc2ae99-ad33-5941-a1eb-82fa75c91786", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.139982, - "y": -2650.791423 - }, - "endPoint": { - "x": 1210.270899, - "y": -2650.630338 - } - } - }, - { - "id": "b42c307b-3b99-5d3d-a520-47eafef22299", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.270899, - "y": -2650.630338 - }, - "endPoint": { - "x": 1210.408587, - "y": -2650.59681 - } - } - }, - { - "id": "e75d7634-1d83-5d40-9f25-65629c47c150", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.408587, - "y": -2650.59681 - }, - "endPoint": { - "x": 1210.549661, - "y": -2650.657203 - } - } - }, - { - "id": "c26e9fc9-508f-5807-a8f7-c1c706ee89e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.549661, - "y": -2650.657203 - }, - "endPoint": { - "x": 1210.892137, - "y": -2650.687428 - } - } - }, - { - "id": "934c9151-d295-535c-b2c9-64ee1756a096", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.892137, - "y": -2650.687428 - }, - "endPoint": { - "x": 1210.932766, - "y": -2650.602481 - } - } - }, - { - "id": "90f6438f-308f-584b-bd6d-5ca8fef9ede4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.932766, - "y": -2650.602481 - }, - "endPoint": { - "x": 1210.966316, - "y": -2650.51858 - } - } - }, - { - "id": "3f570a0a-040b-5425-a14b-f6d1706ca5a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.966316, - "y": -2650.51858 - }, - "endPoint": { - "x": 1211.214811, - "y": -2650.471619 - } - } - }, - { - "id": "01cf699c-77f0-548b-bbbd-307e8448137a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.214811, - "y": -2650.471619 - }, - "endPoint": { - "x": 1211.470077, - "y": -2650.448111 - } - } - }, - { - "id": "11c0b9b7-3e92-5107-88d6-a59e1c5a449d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.470077, - "y": -2650.448111 - }, - "endPoint": { - "x": 1211.647984, - "y": -2650.448111 - } - } - }, - { - "id": "15567678-4a46-562e-b724-922dd3be6ca3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.647984, - "y": -2650.448111 - }, - "endPoint": { - "x": 1211.785672, - "y": -2650.51858 - } - } - }, - { - "id": "cfc3ffa8-7e3f-5a29-8896-22a4e918bdef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.785672, - "y": -2650.51858 - }, - "endPoint": { - "x": 1211.940187, - "y": -2650.582331 - } - } - }, - { - "id": "b6835c57-20f5-5e13-ad8e-46ce5c5e8017", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.940187, - "y": -2650.582331 - }, - "endPoint": { - "x": 1212.087929, - "y": -2650.729984 - } - } - }, - { - "id": "13dc282a-2308-5b3f-826f-aa205535d31b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.087929, - "y": -2650.729984 - }, - "endPoint": { - "x": 1212.202122, - "y": -2650.971557 - } - } - }, - { - "id": "5f5447cd-ae5b-5540-b561-a63ba699c77f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.202122, - "y": -2650.971557 - }, - "endPoint": { - "x": 1212.218846, - "y": -2651.246713 - } - } - }, - { - "id": "27006f29-13a9-597a-a937-4219508c6085", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.218846, - "y": -2651.246713 - }, - "endPoint": { - "x": 1212.212177, - "y": -2651.427948 - } - } - }, - { - "id": "3447bd89-f13a-5060-80bb-4a28e1864b78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.212177, - "y": -2651.427948 - }, - "endPoint": { - "x": 1212.22295, - "y": -2651.551488 - } - } - }, - { - "id": "58b3caf3-7f18-5ca0-ab32-10cc2b8ed184", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.22295, - "y": -2651.551488 - }, - "endPoint": { - "x": 1212.23557, - "y": -2651.808421 - } - } - }, - { - "id": "a3d52417-fc4d-5be7-a3cd-700f1651a1af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.23557, - "y": -2651.808421 - }, - "endPoint": { - "x": 1212.307286, - "y": -2651.960092 - } - } - }, - { - "id": "906ff212-9ddd-51be-8d46-a72387811ee3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.307286, - "y": -2651.960092 - }, - "endPoint": { - "x": 1212.400036, - "y": -2652.010631 - } - } - }, - { - "id": "d0783993-ea9f-5327-aa52-b459f109b3f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.400036, - "y": -2652.010631 - }, - "endPoint": { - "x": 1212.416862, - "y": -2652.393912 - } - } - }, - { - "id": "0649bd95-355b-585a-ba3f-7fa9c2da2ed5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.416862, - "y": -2652.393912 - }, - "endPoint": { - "x": 1212.429482, - "y": -2652.655084 - } - } - }, - { - "id": "3ef0baa7-43b8-5ae0-9640-5e3a49ef90d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.429482, - "y": -2652.655084 - }, - "endPoint": { - "x": 1212.539263, - "y": -2652.87838 - } - } - }, - { - "id": "e0bd50de-200c-54e2-a7d3-e494e138ff1b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.539263, - "y": -2652.87838 - }, - "endPoint": { - "x": 1212.855474, - "y": -2653.084774 - } - } - }, - { - "id": "dca8e809-8115-5e91-b388-dfcf5cf8df6f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.855474, - "y": -2653.084774 - }, - "endPoint": { - "x": 1213.053592, - "y": -2653.240685 - } - } - }, - { - "id": "dcd06d8c-ad57-5538-b3ce-c4e2a987a75c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.053592, - "y": -2653.240685 - }, - "endPoint": { - "x": 1213.237758, - "y": -2653.359545 - } - } - }, - { - "id": "e58c3a07-8803-5bf9-ad5f-ee8281c7923d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.237758, - "y": -2653.359545 - }, - "endPoint": { - "x": 1213.600343, - "y": -2653.397421 - } - } - }, - { - "id": "d9aaa3cd-b639-5a20-928f-f512a287eb52", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.600343, - "y": -2653.397421 - }, - "endPoint": { - "x": 1213.654105, - "y": -2653.45264 - } - } - }, - { - "id": "be1ca2c7-a2e8-5c6b-a6d7-ae6217a53a0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.654105, - "y": -2653.45264 - }, - "endPoint": { - "x": 1213.683756, - "y": -2653.713316 - } - } - }, - { - "id": "4d804023-a563-5401-bb56-86fd423ca906", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.683756, - "y": -2653.713316 - }, - "endPoint": { - "x": 1213.778661, - "y": -2653.796282 - } - } - }, - { - "id": "215fa68f-8d0a-5b28-b465-b4b8e45764ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.778661, - "y": -2653.796282 - }, - "endPoint": { - "x": 1214.543537, - "y": -2653.292655 - } - } - }, - { - "id": "0c3be6da-6bea-5f46-bfd0-4b8e731adc2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.543537, - "y": -2653.292655 - }, - "endPoint": { - "x": 1215.563475, - "y": -2652.463168 - } - } - }, - { - "id": "9019a8ec-224e-5e4e-8e5b-7d6dd623cae7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.563475, - "y": -2652.463168 - }, - "endPoint": { - "x": 1216.126744, - "y": -2651.870686 - } - } - }, - { - "id": "8d94b896-58fb-528a-82c6-8cbce797c971", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.126744, - "y": -2651.870686 - }, - "endPoint": { - "x": 1216.483276, - "y": -2651.293949 - } - } - }, - { - "id": "bafca298-4d43-5fdc-a367-2bc9abf55df3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.483276, - "y": -2651.293949 - }, - "endPoint": { - "x": 1216.667134, - "y": -2650.908852 - } - } - }, - { - "id": "48bb745a-39a9-5518-b217-52a2b1e6af86", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.667134, - "y": -2650.908852 - }, - "endPoint": { - "x": 1216.453625, - "y": -2651.009544 - } - } - }, - { - "id": "2f8a14e8-46ba-591b-9e1a-86a8ff2c7422", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.453625, - "y": -2651.009544 - }, - "endPoint": { - "x": 1216.340971, - "y": -2651.133964 - } - } - }, - { - "id": "69485035-a736-51c0-a7c6-58b57fd4f16a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.340971, - "y": -2651.133964 - }, - "endPoint": { - "x": 1216.151266, - "y": -2651.175474 - } - } - }, - { - "id": "30743b64-5862-5637-9fdc-a312778229b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.151266, - "y": -2651.175474 - }, - "endPoint": { - "x": 1216.02671, - "y": -2651.086563 - } - } - }, - { - "id": "74346a9d-67e0-58ba-a302-b9f269bcffdb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.02671, - "y": -2651.086563 - }, - "endPoint": { - "x": 1215.943708, - "y": -2650.902906 - } - } - }, - { - "id": "0be2b6de-a99e-53ee-8acc-33e52005a594", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.943708, - "y": -2650.902906 - }, - "endPoint": { - "x": 1215.659098, - "y": -2650.760703 - } - } - }, - { - "id": "e7194f7c-b5a5-527b-b6f0-9c4d476e8f2a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.659098, - "y": -2650.760703 - }, - "endPoint": { - "x": 1215.380438, - "y": -2650.754813 - } - } - }, - { - "id": "396fefb4-d2d6-518f-89f1-5e7f995eeadf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.380438, - "y": -2650.754813 - }, - "endPoint": { - "x": 1215.303284, - "y": -2650.701466 - } - } - }, - { - "id": "e6eddf77-ff1b-5f49-a642-95c101d2a20b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.303284, - "y": -2650.701466 - }, - "endPoint": { - "x": 1215.17288, - "y": -2650.802159 - } - } - }, - { - "id": "594a473d-c70f-594b-bdaa-a17ba2667a16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.17288, - "y": -2650.802159 - }, - "endPoint": { - "x": 1215.036526, - "y": -2650.985871 - } - } - }, - { - "id": "a882be26-3abb-579e-8717-330c6a764a08", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.036526, - "y": -2650.985871 - }, - "endPoint": { - "x": 1215.006875, - "y": -2651.151746 - } - } - }, - { - "id": "0b1c9bae-af16-569d-b062-5e8aa989e26f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.006875, - "y": -2651.151746 - }, - "endPoint": { - "x": 1215.036526, - "y": -2651.347295 - } - } - }, - { - "id": "def7e073-70bf-59f2-8bdc-11e8e744117e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.036526, - "y": -2651.347295 - }, - "endPoint": { - "x": 1215.226232, - "y": -2651.412423 - } - } - }, - { - "id": "b3af8181-a628-5524-a4f0-126f4efd6185", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.226232, - "y": -2651.412423 - }, - "endPoint": { - "x": 1215.487141, - "y": -2651.471715 - } - } - }, - { - "id": "2ff58942-f30c-592f-9f71-2262b0d31f8a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.487141, - "y": -2651.471715 - }, - "endPoint": { - "x": 1215.670896, - "y": -2651.513171 - } - } - }, - { - "id": "4823e818-3373-5f71-910e-25b8d46db20a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.670896, - "y": -2651.513171 - }, - "endPoint": { - "x": 1215.789501, - "y": -2651.548735 - } - } - }, - { - "id": "fb5f0c4b-61fa-5e6b-86f6-05caf8fe0fbb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.789501, - "y": -2651.548735 - }, - "endPoint": { - "x": 1215.801403, - "y": -2651.708664 - } - } - }, - { - "id": "a35e4981-e136-54de-be52-64f0b01339a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.801403, - "y": -2651.708664 - }, - "endPoint": { - "x": 1215.801403, - "y": -2651.910104 - } - } - }, - { - "id": "a55da89b-a81e-50cd-9b6a-83024d5e0c0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.801403, - "y": -2651.910104 - }, - "endPoint": { - "x": 1215.75985, - "y": -2652.064198 - } - } - }, - { - "id": "c8c2418b-4b61-50e4-9f06-f278a8d8b131", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.75985, - "y": -2652.064198 - }, - "endPoint": { - "x": 1215.510842, - "y": -2652.052306 - } - } - }, - { - "id": "0dc861e8-cb56-5995-857d-40c1dc7eded3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.510842, - "y": -2652.052306 - }, - "endPoint": { - "x": 1215.326984, - "y": -2651.987179 - } - } - }, - { - "id": "1aafd3ec-e7dd-5a3a-abdd-7b5b5d570e7b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.326984, - "y": -2651.987179 - }, - "endPoint": { - "x": 1215.178831, - "y": -2652.004906 - } - } - }, - { - "id": "c73cea5a-56b8-5203-894c-f3e5efcc9f11", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.178831, - "y": -2652.004906 - }, - "endPoint": { - "x": 1215.012723, - "y": -2652.105653 - } - } - }, - { - "id": "34d65246-bc8c-59bd-a472-abe1d7df6308", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.012723, - "y": -2652.105653 - }, - "endPoint": { - "x": 1214.805268, - "y": -2652.111599 - } - } - }, - { - "id": "010ff485-6339-5299-a07b-41acb3fb34a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.805268, - "y": -2652.111599 - }, - "endPoint": { - "x": 1214.597709, - "y": -2652.111599 - } - } - }, - { - "id": "2ce9fde2-f552-548d-ba39-034decfcb23a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.597709, - "y": -2652.111599 - }, - "endPoint": { - "x": 1214.449454, - "y": -2652.188618 - } - } - }, - { - "id": "f81bea4f-ac1e-5e88-9ea3-00e3efa2195f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.449454, - "y": -2652.188618 - }, - "endPoint": { - "x": 1214.277498, - "y": -2652.200455 - } - } - }, - { - "id": "a25a3039-82f7-5466-8deb-53f3d484d0ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.277498, - "y": -2652.200455 - }, - "endPoint": { - "x": 1214.058141, - "y": -2652.170836 - } - } - }, - { - "id": "7f847b62-77ff-5c2b-ae85-8b395fc3094c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.058141, - "y": -2652.170836 - }, - "endPoint": { - "x": 1213.986937, - "y": -2652.070089 - } - } - }, - { - "id": "ab1244b5-dec8-5641-909c-5cc97c086736", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.986937, - "y": -2652.070089 - }, - "endPoint": { - "x": 1213.78533, - "y": -2652.058252 - } - } - }, - { - "id": "03771723-ae09-548b-b57e-1e8c1165226f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.78533, - "y": -2652.058252 - }, - "endPoint": { - "x": 1213.637176, - "y": -2652.153054 - } - } - }, - { - "id": "e43b95fc-2ff9-59b2-a6e5-ff52177880b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.637176, - "y": -2652.153054 - }, - "endPoint": { - "x": 1213.595624, - "y": -2652.111599 - } - } - }, - { - "id": "0828bf84-40ab-504d-9af5-a892723888c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.595624, - "y": -2652.111599 - }, - "endPoint": { - "x": 1213.607525, - "y": -2651.999015 - } - } - }, - { - "id": "f4656940-19e6-56f0-b68c-5c9cad2e19e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.607525, - "y": -2651.999015 - }, - "endPoint": { - "x": 1213.494871, - "y": -2651.880485 - } - } - }, - { - "id": "d9588ae1-7ffb-5c00-af50-642e0697f931", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.494871, - "y": -2651.880485 - }, - "endPoint": { - "x": 1213.423668, - "y": -2651.827194 - } - } - }, - { - "id": "db19de47-93a5-5060-b1a1-ffaeb588ca3d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.423668, - "y": -2651.827194 - }, - "endPoint": { - "x": 1213.388066, - "y": -2651.79163 - } - } - }, - { - "id": "016c7368-5447-54a1-aaa7-2a96c1090b6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.388066, - "y": -2651.79163 - }, - "endPoint": { - "x": 1213.269564, - "y": -2651.767957 - } - } - }, - { - "id": "6e89c944-7794-57e6-8b27-9263c2e0513b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.269564, - "y": -2651.767957 - }, - "endPoint": { - "x": 1213.145008, - "y": -2651.602026 - } - } - }, - { - "id": "5228e7c1-0aa0-573e-9996-54d177c68b4b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.145008, - "y": -2651.602026 - }, - "endPoint": { - "x": 1213.050104, - "y": -2651.483552 - } - } - }, - { - "id": "523cfc6b-7118-56c3-b56d-969b8f982827", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.050104, - "y": -2651.483552 - }, - "endPoint": { - "x": 1213.026404, - "y": -2651.270221 - } - } - }, - { - "id": "915a06c5-f7f5-5690-9d80-fa85ec14ccf2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.026404, - "y": -2651.270221 - }, - "endPoint": { - "x": 1213.085706, - "y": -2651.133964 - } - } - }, - { - "id": "1bbab3db-c906-55dc-819c-2be4e7da363d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.085706, - "y": -2651.133964 - }, - "endPoint": { - "x": 1213.032354, - "y": -2650.950307 - } - } - }, - { - "id": "28aaef8d-d745-57fe-ae63-4998e22453ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.032354, - "y": -2650.950307 - }, - "endPoint": { - "x": 1213.079755, - "y": -2650.68963 - } - } - }, - { - "id": "3c8baaaf-4873-5c12-8a53-0765d46da2b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.079755, - "y": -2650.68963 - }, - "endPoint": { - "x": 1213.293264, - "y": -2650.511863 - } - } - }, - { - "id": "3db6cec1-dc73-5790-8f3d-5bc57e1de5b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.293264, - "y": -2650.511863 - }, - "endPoint": { - "x": 1213.512621, - "y": -2650.434844 - } - } - }, - { - "id": "2ba01e06-15ba-52cc-bb0f-8f661f47787b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.512621, - "y": -2650.434844 - }, - "endPoint": { - "x": 1213.625275, - "y": -2650.48819 - } - } - }, - { - "id": "36474dbb-0d3b-5a56-8d91-be1dee4793f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.625275, - "y": -2650.48819 - }, - "endPoint": { - "x": 1213.601574, - "y": -2650.577046 - } - } - }, - { - "id": "db79932d-9f46-52ee-92ca-2d17eb30356f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.601574, - "y": -2650.577046 - }, - "endPoint": { - "x": 1213.447368, - "y": -2650.68963 - } - } - }, - { - "id": "1b8b9592-19bf-541e-bf52-890e28d3193a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.447368, - "y": -2650.68963 - }, - "endPoint": { - "x": 1213.376267, - "y": -2650.914742 - } - } - }, - { - "id": "999a59ed-aeb1-5e7d-ba79-3d0b3527ee2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.376267, - "y": -2650.914742 - }, - "endPoint": { - "x": 1213.394016, - "y": -2651.276167 - } - } - }, - { - "id": "62e70259-6f5b-5322-b74e-3f9c3f8f992e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.394016, - "y": -2651.276167 - }, - "endPoint": { - "x": 1213.50667, - "y": -2651.447988 - } - } - }, - { - "id": "efb11cf9-010d-5402-b002-83a932133018", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.50667, - "y": -2651.447988 - }, - "endPoint": { - "x": 1213.761629, - "y": -2651.530953 - } - } - }, - { - "id": "198989f2-e86a-5dd7-a09d-de6f3f87de88", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.761629, - "y": -2651.530953 - }, - "endPoint": { - "x": 1214.03444, - "y": -2651.519116 - } - } - }, - { - "id": "c1d226ac-1ea6-5fed-be4d-2434fe026724", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.03444, - "y": -2651.519116 - }, - "endPoint": { - "x": 1214.170794, - "y": -2651.382805 - } - } - }, - { - "id": "aca5d863-3791-5638-86b1-f2b9440a3e16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.170794, - "y": -2651.382805 - }, - "endPoint": { - "x": 1214.325001, - "y": -2651.299894 - } - } - }, - { - "id": "4a49bd04-03cd-527c-b4c4-655ca5ea78b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.325001, - "y": -2651.299894 - }, - "endPoint": { - "x": 1214.443503, - "y": -2651.258384 - } - } - }, - { - "id": "c031ca96-04bb-555f-af86-ab8d2ec3941e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.443503, - "y": -2651.258384 - }, - "endPoint": { - "x": 1214.473154, - "y": -2651.104346 - } - } - }, - { - "id": "3cf3f862-da5b-5c80-b93b-240c3dac1eb3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.473154, - "y": -2651.104346 - }, - "endPoint": { - "x": 1214.473154, - "y": -2650.89696 - } - } - }, - { - "id": "7e9d44de-3ae7-5b70-afc8-329a6bde646d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.473154, - "y": -2650.89696 - }, - "endPoint": { - "x": 1214.413852, - "y": -2650.802159 - } - } - }, - { - "id": "8acd9c9a-c2bc-50e4-9437-7ee4372d8437", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.413852, - "y": -2650.802159 - }, - "endPoint": { - "x": 1214.277498, - "y": -2650.701466 - } - } - }, - { - "id": "ab141e2c-bdad-5619-b592-b682e0ab28f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.277498, - "y": -2650.701466 - }, - "endPoint": { - "x": 1214.158893, - "y": -2650.56521 - } - } - }, - { - "id": "4338eca3-ec19-5ec7-b595-d08262afe497", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.158893, - "y": -2650.56521 - }, - "endPoint": { - "x": 1214.194495, - "y": -2650.482244 - } - } - }, - { - "id": "76af0951-86dc-55de-a97a-447d44084829", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.194495, - "y": -2650.482244 - }, - "endPoint": { - "x": 1214.289399, - "y": -2650.440789 - } - } - }, - { - "id": "60a7d8ec-a252-5758-b5b3-b0e7af20e39a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.289399, - "y": -2650.440789 - }, - "endPoint": { - "x": 1214.491006, - "y": -2650.423007 - } - } - }, - { - "id": "59896036-19e2-55d4-bda5-c34abc1ab4b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.491006, - "y": -2650.423007 - }, - "endPoint": { - "x": 1214.585808, - "y": -2650.369661 - } - } - }, - { - "id": "4742a7af-aa1a-5757-afde-b5f2cd42e477", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.585808, - "y": -2650.369661 - }, - "endPoint": { - "x": 1214.704413, - "y": -2650.334151 - } - } - }, - { - "id": "a7c5e04d-f3d7-568b-9ee3-c8c670ad87c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.704413, - "y": -2650.334151 - }, - "endPoint": { - "x": 1214.793366, - "y": -2650.393389 - } - } - }, - { - "id": "f0c0064b-4106-5f8c-a661-2881d7c9f75f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.793366, - "y": -2650.393389 - }, - "endPoint": { - "x": 1214.894221, - "y": -2650.334151 - } - } - }, - { - "id": "cca45b96-51a2-5628-b06f-b91ab5892752", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.894221, - "y": -2650.334151 - }, - "endPoint": { - "x": 1215.042374, - "y": -2650.36377 - } - } - }, - { - "id": "aba38514-20f8-5852-8921-03d5fbe5133a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.042374, - "y": -2650.36377 - }, - "endPoint": { - "x": 1215.273633, - "y": -2650.428898 - } - } - }, - { - "id": "0a47c3ee-c4b1-577c-8fbb-357d6fd7d3e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.273633, - "y": -2650.428898 - }, - "endPoint": { - "x": 1215.564193, - "y": -2650.423007 - } - } - }, - { - "id": "7a4b8846-2ca1-5a2c-99aa-a9f0ecbc350e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.564193, - "y": -2650.423007 - }, - "endPoint": { - "x": 1215.872504, - "y": -2650.393389 - } - } - }, - { - "id": "86645767-d0a8-539c-9a1f-c6400a74fde1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.872504, - "y": -2650.393389 - }, - "endPoint": { - "x": 1216.00301, - "y": -2650.304478 - } - } - }, - { - "id": "e38080c5-996a-5000-978d-39e4159af3d0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.00301, - "y": -2650.304478 - }, - "endPoint": { - "x": 1216.127463, - "y": -2650.263023 - } - } - }, - { - "id": "2375c18b-89b3-5da8-9d47-509ceda4e98d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.127463, - "y": -2650.263023 - }, - "endPoint": { - "x": 1216.281669, - "y": -2650.233404 - } - } - }, - { - "id": "58ce09e7-d9a3-51a3-b254-d4b0b1165c97", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.281669, - "y": -2650.233404 - }, - "endPoint": { - "x": 1216.340971, - "y": -2650.073419 - } - } - }, - { - "id": "6b2e8bbf-ca15-5962-b2ad-b09591a56f22", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.340971, - "y": -2650.073419 - }, - "endPoint": { - "x": 1216.346922, - "y": -2649.931217 - } - } - }, - { - "id": "fd70d69c-2408-5027-8c8c-1acab797c9cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.346922, - "y": -2649.931217 - }, - "endPoint": { - "x": 1216.286902, - "y": -2649.904571 - } - } - }, - { - "id": "a8f4481d-1e3d-57c4-98cb-92765cf04407", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.286902, - "y": -2649.904571 - }, - "endPoint": { - "x": 1216.197948, - "y": -2649.815715 - } - } - }, - { - "id": "822b39d4-475a-5dc3-a1cc-1feb99f23d0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.197948, - "y": -2649.815715 - }, - "endPoint": { - "x": 1216.1684, - "y": -2649.661677 - } - } - }, - { - "id": "b6d65c9f-a615-5c97-8530-ccf77ab7eea0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.1684, - "y": -2649.661677 - }, - "endPoint": { - "x": 1216.073495, - "y": -2649.602384 - } - } - }, - { - "id": "9259977f-c381-5bff-84ab-324aa706b499", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.073495, - "y": -2649.602384 - }, - "endPoint": { - "x": 1215.937141, - "y": -2649.632003 - } - } - }, - { - "id": "7339b828-930e-55a9-bfd7-f2f65d71f032", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.937141, - "y": -2649.632003 - }, - "endPoint": { - "x": 1215.747333, - "y": -2649.637949 - } - } - }, - { - "id": "0860334a-fe09-5ce5-ba42-a094729940e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.747333, - "y": -2649.637949 - }, - "endPoint": { - "x": 1215.516074, - "y": -2649.549093 - } - } - }, - { - "id": "91205985-ff32-5c22-9fd2-310aae5460af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.516074, - "y": -2649.549093 - }, - "endPoint": { - "x": 1215.344118, - "y": -2649.566875 - } - } - }, - { - "id": "4bc6fb2b-51ea-597d-82a9-5573d5303509", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.344118, - "y": -2649.566875 - }, - "endPoint": { - "x": 1215.284816, - "y": -2649.649785 - } - } - }, - { - "id": "81f27663-e143-53cc-87e1-1fb4d248e45f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.284816, - "y": -2649.649785 - }, - "endPoint": { - "x": 1215.089159, - "y": -2649.596494 - } - } - }, - { - "id": "89dcd908-cd87-57d8-a3f5-ecf03c404a53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.089159, - "y": -2649.596494 - }, - "endPoint": { - "x": 1214.875753, - "y": -2649.549093 - } - } - }, - { - "id": "08772c66-1703-53b7-bbd5-7380ff5e38a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.875753, - "y": -2649.549093 - }, - "endPoint": { - "x": 1214.632593, - "y": -2649.554983 - } - } - }, - { - "id": "a5c93f5e-ed9b-56c7-bbf6-d6ada64365f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.632593, - "y": -2649.554983 - }, - "endPoint": { - "x": 1214.425138, - "y": -2649.602384 - } - } - }, - { - "id": "ab3f7179-6bc6-5dc9-9782-9024f340482c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.425138, - "y": -2649.602384 - }, - "endPoint": { - "x": 1214.116725, - "y": -2649.661677 - } - } - }, - { - "id": "a2be74a8-fc07-5f5e-9750-9109cee9485f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.116725, - "y": -2649.661677 - }, - "endPoint": { - "x": 1213.968572, - "y": -2649.572766 - } - } - }, - { - "id": "281fac99-c905-580e-835a-491f83096698", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.968572, - "y": -2649.572766 - }, - "endPoint": { - "x": 1213.761014, - "y": -2649.560929 - } - } - }, - { - "id": "58e5dfeb-3f3f-5305-b0ee-2126841b088a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.761014, - "y": -2649.560929 - }, - "endPoint": { - "x": 1213.559406, - "y": -2649.632003 - } - } - }, - { - "id": "6cf776f9-6c9a-596a-ab1e-ef8bab5cd4c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.559406, - "y": -2649.632003 - }, - "endPoint": { - "x": 1213.500104, - "y": -2649.786097 - } - } - }, - { - "id": "b630a8e4-1c59-5cba-8873-b539132e3c28", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.500104, - "y": -2649.786097 - }, - "endPoint": { - "x": 1212.978285, - "y": -2649.803824 - } - } - }, - { - "id": "3f0ca0d2-13c7-5eba-8f1a-071c1f1a1d9d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.978285, - "y": -2649.803824 - }, - "endPoint": { - "x": 1212.770727, - "y": -2649.768315 - } - } - }, - { - "id": "f76027dd-fca5-56ee-82e8-0522b2417f00", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.770727, - "y": -2649.768315 - }, - "endPoint": { - "x": 1212.626267, - "y": -2649.737485 - } - } - }, - { - "id": "814baeef-2caa-57fb-bdac-db033ea47b5a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.626267, - "y": -2649.737485 - }, - "endPoint": { - "x": 1212.410193, - "y": -2649.661622 - } - } - }, - { - "id": "4340a64f-9a8b-5754-a2af-e943d8051bf4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.410193, - "y": -2649.661622 - }, - "endPoint": { - "x": 1212.04217, - "y": -2649.626608 - } - } - }, - { - "id": "fb84119f-4f0a-58ca-a01a-059a0431a1b9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.04217, - "y": -2649.626608 - }, - "endPoint": { - "x": 1211.90202, - "y": -2649.766663 - } - } - }, - { - "id": "fe5042a3-816b-505b-8482-cd82a394dbbe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.90202, - "y": -2649.766663 - }, - "endPoint": { - "x": 1211.849489, - "y": -2649.725814 - } - } - }, - { - "id": "4a2566ff-1b3e-51c6-99ed-bdfdae4e5b6c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.849489, - "y": -2649.725814 - }, - "endPoint": { - "x": 1211.738477, - "y": -2649.725814 - } - } - }, - { - "id": "98c7dc93-1def-56ad-87d4-f3189139f0c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.738477, - "y": -2649.725814 - }, - "endPoint": { - "x": 1211.563237, - "y": -2649.801677 - } - } - }, - { - "id": "7d21fc26-976e-581d-9b00-7c2bd54c4dd5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.563237, - "y": -2649.801677 - }, - "endPoint": { - "x": 1211.452328, - "y": -2649.78417 - } - } - }, - { - "id": "081ddab3-0242-5e2a-ac27-e330fb9982b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.452328, - "y": -2649.78417 - }, - "endPoint": { - "x": 1211.417239, - "y": -2649.719978 - } - } - }, - { - "id": "804f6101-dde6-552e-b21a-5a35f0b914f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.417239, - "y": -2649.719978 - }, - "endPoint": { - "x": 1211.281398, - "y": -2649.749046 - } - } - }, - { - "id": "5c0717e5-772b-55f1-94aa-5b2d2c322dd0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.281398, - "y": -2649.749046 - }, - "endPoint": { - "x": 1210.984476, - "y": -2649.714968 - } - } - }, - { - "id": "be53fd12-51e5-5fe0-8a15-e548c5dced0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.984476, - "y": -2649.714968 - }, - "endPoint": { - "x": 1210.511699, - "y": -2649.866089 - } - } - }, - { - "id": "e437fcc3-4efb-5130-9ffa-8c7427e8a568", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.511699, - "y": -2649.866089 - }, - "endPoint": { - "x": 1210.474353, - "y": -2649.955771 - } - } - }, - { - "id": "09ce8059-4136-5e69-ad9a-539750057f1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.474353, - "y": -2649.955771 - }, - "endPoint": { - "x": 1210.40951, - "y": -2650.068575 - } - } - }, - { - "id": "c1774ac4-601e-58b9-8bc6-8207fe24bbb2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.40951, - "y": -2650.068575 - }, - "endPoint": { - "x": 1210.251508, - "y": -2650.093954 - } - } - }, - { - "id": "6f3419fe-e631-555d-be34-fca17b2c38e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.251508, - "y": -2650.093954 - }, - "endPoint": { - "x": 1210.115974, - "y": -2650.00653 - } - } - }, - { - "id": "faae4d9a-43f3-5ac3-9c7e-bb538bf2c136", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.115974, - "y": -2650.00653 - }, - "endPoint": { - "x": 1210.090632, - "y": -2649.851445 - } - } - }, - { - "id": "12423651-f05d-5f10-86ab-0bd603db1ab8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.090632, - "y": -2649.851445 - }, - "endPoint": { - "x": 1210.101918, - "y": -2649.671036 - } - } - }, - { - "id": "c8d94194-ed69-5a76-9036-6b76e6570b10", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.101918, - "y": -2649.671036 - }, - "endPoint": { - "x": 1210.203491, - "y": -2649.465192 - } - } - }, - { - "id": "a0bc821e-34f6-5fe8-9711-b4dd175ce508", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.203491, - "y": -2649.465192 - }, - "endPoint": { - "x": 1210.338922, - "y": -2649.327008 - } - } - }, - { - "id": "2cd8827e-7909-5800-8e5d-5faf50dc2dfc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.338922, - "y": -2649.327008 - }, - "endPoint": { - "x": 1210.46871, - "y": -2649.259348 - } - } - }, - { - "id": "970dbaad-f9b8-5edf-947e-732f3454a6ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.46871, - "y": -2649.259348 - }, - "endPoint": { - "x": 1210.669086, - "y": -2649.298821 - } - } - }, - { - "id": "34486db4-9381-5986-aec9-1f1807f32bf7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.669086, - "y": -2649.298821 - }, - "endPoint": { - "x": 1210.798874, - "y": -2649.363674 - } - } - }, - { - "id": "ab6ad220-306c-50c7-b21a-dbadf5a8e5f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.798874, - "y": -2649.363674 - }, - "endPoint": { - "x": 1211.112109, - "y": -2649.318585 - } - } - }, - { - "id": "b2f1e0f1-471b-51c6-a2ad-6041e51eeee6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.112109, - "y": -2649.318585 - }, - "endPoint": { - "x": 1211.385741, - "y": -2649.321393 - } - } - }, - { - "id": "9c216bc7-b990-59de-8e1a-f6a41556bb8d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.385741, - "y": -2649.321393 - }, - "endPoint": { - "x": 1211.663272, - "y": -2649.315117 - } - } - }, - { - "id": "ecb5eb3a-e5d0-52c6-9033-713fdc329f25", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.663272, - "y": -2649.315117 - }, - "endPoint": { - "x": 1212.092136, - "y": -2649.306639 - } - } - }, - { - "id": "3225f1df-8721-5b43-92e1-7bf510e34b61", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.092136, - "y": -2649.306639 - }, - "endPoint": { - "x": 1212.834236, - "y": -2649.26155 - } - } - }, - { - "id": "73d3a9c4-cc13-5a17-86f4-7f0dada055c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.834236, - "y": -2649.26155 - }, - "endPoint": { - "x": 1213.451267, - "y": -2649.295518 - } - } - }, - { - "id": "452a1746-0952-5d32-8d22-8754c6d9af4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.451267, - "y": -2649.295518 - }, - "endPoint": { - "x": 1214.300582, - "y": -2649.346277 - } - } - }, - { - "id": "8ae81e36-63bf-506d-83c5-a6218b9a83e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.300582, - "y": -2649.346277 - }, - "endPoint": { - "x": 1214.777463, - "y": -2649.303996 - } - } - }, - { - "id": "78fc6b22-2451-50fc-acae-998ad27542d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.777463, - "y": -2649.303996 - }, - "endPoint": { - "x": 1215.262757, - "y": -2649.256045 - } - } - }, - { - "id": "b35f6d96-262a-5871-bc1c-c01bb41f1d19", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.262757, - "y": -2649.256045 - }, - "endPoint": { - "x": 1215.563886, - "y": -2649.264303 - } - } - }, - { - "id": "33ed2266-6720-548f-b106-d0581edadd78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.563886, - "y": -2649.264303 - }, - "endPoint": { - "x": 1215.961765, - "y": -2649.086701 - } - } - }, - { - "id": "48f5639e-181d-5bcd-bb13-f8cb477d5001", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.961765, - "y": -2649.086701 - }, - "endPoint": { - "x": 1216.212517, - "y": -2648.865442 - } - } - }, - { - "id": "12a94a00-3d20-5c33-aac3-0e49b73fb3cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.212517, - "y": -2648.865442 - }, - "endPoint": { - "x": 1216.291519, - "y": -2648.701879 - } - } - }, - { - "id": "e00de027-bf7e-5236-bcc1-6be2915bc52e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.291519, - "y": -2648.701879 - }, - "endPoint": { - "x": 1216.280233, - "y": -2648.501706 - } - } - }, - { - "id": "4d168c7b-45fb-5383-a669-950f12213e51", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.280233, - "y": -2648.501706 - }, - "endPoint": { - "x": 1216.373393, - "y": -2648.369193 - } - } - }, - { - "id": "ced1da75-b363-5c69-9b00-b35caad47176", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.373393, - "y": -2648.369193 - }, - "endPoint": { - "x": 1216.311218, - "y": -2648.053408 - } - } - }, - { - "id": "281de00c-e3fd-5e24-aa41-38cbf18488ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.311218, - "y": -2648.053408 - }, - "endPoint": { - "x": 1216.229138, - "y": -2647.9166 - } - } - }, - { - "id": "d3c6a829-a6b7-523e-87f8-48d164637cbe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.229138, - "y": -2647.9166 - }, - "endPoint": { - "x": 1216.234781, - "y": -2647.795373 - } - } - }, - { - "id": "e5c8360a-493b-59ba-96e7-77b515d2ba38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.234781, - "y": -2647.795373 - }, - "endPoint": { - "x": 1216.09935, - "y": -2647.648767 - } - } - }, - { - "id": "c3b2991d-e4ae-5441-af05-6827a2e32a68", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.09935, - "y": -2647.648767 - }, - "endPoint": { - "x": 1215.90749, - "y": -2647.479588 - } - } - }, - { - "id": "538761e7-d3df-5fed-a3f2-e6508790c6d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.90749, - "y": -2647.479588 - }, - "endPoint": { - "x": 1215.678899, - "y": -2647.406257 - } - } - }, - { - "id": "a54a920a-dd23-5c52-98d9-de777ffa1a96", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.678899, - "y": -2647.406257 - }, - "endPoint": { - "x": 1215.204891, - "y": -2647.383685 - } - } - }, - { - "id": "6d250b88-bae4-5718-95de-e5034e18a307", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.204891, - "y": -2647.383685 - }, - "endPoint": { - "x": 1215.123017, - "y": -2647.392164 - } - } - }, - { - "id": "6f61b8a2-0397-5049-8db5-d385607d509d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.123017, - "y": -2647.392164 - }, - "endPoint": { - "x": 1215.066588, - "y": -2647.510583 - } - } - }, - { - "id": "e166f37d-1789-5d21-a388-d33662b33a31", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.066588, - "y": -2647.510583 - }, - "endPoint": { - "x": 1215.027087, - "y": -2647.555672 - } - } - }, - { - "id": "559d523a-10b6-5e3d-9f92-04af959d2100", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.027087, - "y": -2647.555672 - }, - "endPoint": { - "x": 1214.891656, - "y": -2647.535963 - } - } - }, - { - "id": "2c4329d8-7817-55e1-964f-5400cbb9dd9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.891656, - "y": -2647.535963 - }, - "endPoint": { - "x": 1214.756225, - "y": -2647.431637 - } - } - }, - { - "id": "e5b21d4f-94d1-5b3e-b327-90e6789db7be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.756225, - "y": -2647.431637 - }, - "endPoint": { - "x": 1214.442067, - "y": -2647.417268 - } - } - }, - { - "id": "be6b1889-b9a7-55b5-aeaa-c2baa83ff7b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.442067, - "y": -2647.417268 - }, - "endPoint": { - "x": 1214.185364, - "y": -2647.41446 - } - } - }, - { - "id": "365b306c-504f-5213-9e10-98b084e82f0f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.185364, - "y": -2647.41446 - }, - "endPoint": { - "x": 1214.134577, - "y": -2647.341129 - } - } - }, - { - "id": "a32b8861-a856-5bc7-9169-56586d6426cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.134577, - "y": -2647.341129 - }, - "endPoint": { - "x": 1214.114775, - "y": -2647.203001 - } - } - }, - { - "id": "515faad2-9473-57fc-a57d-1ba086f2e39e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.114775, - "y": -2647.203001 - }, - "endPoint": { - "x": 1214.241793, - "y": -2647.124055 - } - } - }, - { - "id": "71a26d01-be41-5b4b-a8ba-00df4bb8398f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.241793, - "y": -2647.124055 - }, - "endPoint": { - "x": 1214.48444, - "y": -2647.070488 - } - } - }, - { - "id": "6971e690-f7f9-51ce-a533-1b23090f2603", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.48444, - "y": -2647.070488 - }, - "endPoint": { - "x": 1214.715801, - "y": -2647.059202 - } - } - }, - { - "id": "5e41c842-75f6-5ddb-a1d0-818cb60db57c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.715801, - "y": -2647.059202 - }, - "endPoint": { - "x": 1214.769768, - "y": -2647.004149 - } - } - }, - { - "id": "bd0c88f7-349f-5f1f-8373-ba0e91985ca4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.769768, - "y": -2647.004149 - }, - "endPoint": { - "x": 1214.860055, - "y": -2646.888537 - } - } - }, - { - "id": "f1e69153-1f3f-51a1-894c-49ce0ac63e42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.860055, - "y": -2646.888537 - }, - "endPoint": { - "x": 1214.919358, - "y": -2646.837778 - } - } - }, - { - "id": "38849403-e0cd-57da-809c-9c24a71ff761", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.919358, - "y": -2646.837778 - }, - "endPoint": { - "x": 1215.034987, - "y": -2646.956197 - } - } - }, - { - "id": "a66d2700-8ba9-5148-96fe-9543861682a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.034987, - "y": -2646.956197 - }, - "endPoint": { - "x": 1215.153489, - "y": -2647.032336 - } - } - }, - { - "id": "1b4656db-860c-53db-8edb-c9d3bd65308f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.153489, - "y": -2647.032336 - }, - "endPoint": { - "x": 1215.317135, - "y": -2647.085903 - } - } - }, - { - "id": "69acd1ab-f8e9-5f23-8d5f-6e7444386d1b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.317135, - "y": -2647.085903 - }, - "endPoint": { - "x": 1215.492169, - "y": -2647.080232 - } - } - }, - { - "id": "3a1b3580-4496-5c9f-9d7f-1f0bfd28dfc8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.492169, - "y": -2647.080232 - }, - "endPoint": { - "x": 1215.647299, - "y": -2647.052045 - } - } - }, - { - "id": "71c51651-b9f1-5c05-8079-f05f9513d014", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.647299, - "y": -2647.052045 - }, - "endPoint": { - "x": 1215.715014, - "y": -2647.08871 - } - } - }, - { - "id": "11e3630e-343d-5c6b-9a09-c579d130dbf5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.715014, - "y": -2647.08871 - }, - "endPoint": { - "x": 1216.039535, - "y": -2646.959005 - } - } - }, - { - "id": "a43cc485-a197-5326-8710-5bcb1bb672d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.039535, - "y": -2646.959005 - }, - "endPoint": { - "x": 1216.253967, - "y": -2646.792689 - } - } - }, - { - "id": "ceefdd7c-ddb0-53c9-bb66-7c8ce76d7942", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.253967, - "y": -2646.792689 - }, - "endPoint": { - "x": 1216.358413, - "y": -2646.657314 - } - } - }, - { - "id": "2441e010-fcf3-521e-ae83-ec50eaaf2333", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.358413, - "y": -2646.657314 - }, - "endPoint": { - "x": 1216.386628, - "y": -2646.555851 - } - } - }, - { - "id": "704c96bf-170d-520a-af2a-506c3958505a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.386628, - "y": -2646.555851 - }, - "endPoint": { - "x": 1216.403557, - "y": -2646.465618 - } - } - }, - { - "id": "82e089c0-ff5c-53aa-a3a3-b6ee546a2a4b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.403557, - "y": -2646.465618 - }, - "endPoint": { - "x": 1216.402941, - "y": -2646.414474 - } - } - } - ] - }, - { - "id": "b636b5ba-b799-52ff-b955-c7af74ebc08e", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "2d5c0281-4527-548e-9989-4ca19b34e1fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.43769, - "y": -2647.568829 - }, - "endPoint": { - "x": 1212.423429, - "y": -2647.199202 - } - } - }, - { - "id": "95cb798a-ddfa-591f-914e-6fd6ea2d978b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.423429, - "y": -2647.199202 - }, - "endPoint": { - "x": 1212.123634, - "y": -2647.174208 - } - } - }, - { - "id": "40e4fcc7-2630-533d-80a9-8309ea05ca37", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.123634, - "y": -2647.174208 - }, - "endPoint": { - "x": 1211.683997, - "y": -2647.1812 - } - } - }, - { - "id": "860f656d-941a-5574-a5de-ef76a7469391", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.683997, - "y": -2647.1812 - }, - "endPoint": { - "x": 1211.279346, - "y": -2647.198597 - } - } - }, - { - "id": "2a3e1522-9bac-54c8-b151-9e05a5233808", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.279346, - "y": -2647.198597 - }, - "endPoint": { - "x": 1210.89583, - "y": -2647.203772 - } - } - }, - { - "id": "22ae3240-2f7f-5f7f-8718-3273cec06590", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.89583, - "y": -2647.203772 - }, - "endPoint": { - "x": 1210.689914, - "y": -2647.155655 - } - } - }, - { - "id": "f7effa3f-d365-56fd-b045-aecfa02524bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.689914, - "y": -2647.155655 - }, - "endPoint": { - "x": 1210.554175, - "y": -2647.138148 - } - } - }, - { - "id": "86560612-3e8b-5572-b242-fdbc1fc83a81", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.554175, - "y": -2647.138148 - }, - "endPoint": { - "x": 1210.427157, - "y": -2647.146902 - } - } - }, - { - "id": "9c74392a-5974-5496-a8e6-ec8a87743ca2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.427157, - "y": -2647.146902 - }, - "endPoint": { - "x": 1210.357082, - "y": -2647.225683 - } - } - }, - { - "id": "7e02bcc0-6164-5e3f-aa46-54b95986df57", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.357082, - "y": -2647.225683 - }, - "endPoint": { - "x": 1210.348361, - "y": -2647.308813 - } - } - }, - { - "id": "02896231-617f-5f30-beeb-75b8a2cb3b85", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.348361, - "y": -2647.308813 - }, - "endPoint": { - "x": 1210.265153, - "y": -2647.361334 - } - } - }, - { - "id": "2f94fca6-ac4e-54f7-aaa7-53fc3e3adfff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.265153, - "y": -2647.361334 - }, - "endPoint": { - "x": 1210.21252, - "y": -2647.440115 - } - } - }, - { - "id": "b56c6a18-ef27-529c-9dfc-5313f79b0b56", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.21252, - "y": -2647.440115 - }, - "endPoint": { - "x": 1210.278286, - "y": -2647.632636 - } - } - }, - { - "id": "9ffc06e7-ff9b-5523-9b4f-ba602e661d34", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.278286, - "y": -2647.632636 - }, - "endPoint": { - "x": 1210.400892, - "y": -2647.702664 - } - } - }, - { - "id": "86c1237b-f798-5dd0-97e3-9b7c52866c7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.400892, - "y": -2647.702664 - }, - "endPoint": { - "x": 1210.62425, - "y": -2647.733328 - } - } - }, - { - "id": "fa56f1b7-f4b5-5cf6-b428-803a10a12999", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.62425, - "y": -2647.733328 - }, - "endPoint": { - "x": 1210.795078, - "y": -2647.680808 - } - } - }, - { - "id": "1ce1e869-8201-5a6f-9df2-a97dcf486d0b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.795078, - "y": -2647.680808 - }, - "endPoint": { - "x": 1210.913272, - "y": -2647.672054 - } - } - }, - { - "id": "a181ef3d-2631-520d-b89c-30f60070cb49", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.913272, - "y": -2647.672054 - }, - "endPoint": { - "x": 1211.04029, - "y": -2647.571417 - } - } - }, - { - "id": "7073687a-6ac2-55aa-ba18-10f4f6e22718", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.04029, - "y": -2647.571417 - }, - "endPoint": { - "x": 1211.206808, - "y": -2647.545157 - } - } - }, - { - "id": "119c3070-5cff-5860-a673-612c1bb5d456", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.206808, - "y": -2647.545157 - }, - "endPoint": { - "x": 1211.403901, - "y": -2647.575766 - } - } - }, - { - "id": "4b986c81-a446-5f58-b31d-b41cf9380e44", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.403901, - "y": -2647.575766 - }, - "endPoint": { - "x": 1211.76741, - "y": -2647.58452 - } - } - }, - { - "id": "bb80041f-9514-5850-b168-7d7dec3ea3e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.76741, - "y": -2647.58452 - }, - "endPoint": { - "x": 1211.960091, - "y": -2647.575766 - } - } - }, - { - "id": "a898a81f-ca64-5726-ac48-8dfc7f380a21", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.960091, - "y": -2647.575766 - }, - "endPoint": { - "x": 1212.27979, - "y": -2647.575766 - } - } - }, - { - "id": "c644bc43-d96e-5122-aecf-59a416610129", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.27979, - "y": -2647.575766 - }, - "endPoint": { - "x": 1212.43769, - "y": -2647.568829 - } - } - } - ] - }, - { - "id": "9754ee44-99f9-5ec4-a908-bb3865b76a4c", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "41402ab2-ebd1-535d-a660-3f43dd19b280", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.977635, - "y": -2648.12283 - }, - "endPoint": { - "x": 1212.196582, - "y": -2648.144686 - } - } - }, - { - "id": "5c4bd7f3-41ab-5101-9c65-01c774595abc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.196582, - "y": -2648.144686 - }, - "endPoint": { - "x": 1212.336732, - "y": -2648.214713 - } - } - }, - { - "id": "522bdf25-bb09-5752-90cc-d7cae127b364", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.336732, - "y": -2648.214713 - }, - "endPoint": { - "x": 1212.37613, - "y": -2648.341611 - } - } - }, - { - "id": "ac4fffe8-dcec-599d-b744-90db4ad9a6c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.37613, - "y": -2648.341611 - }, - "endPoint": { - "x": 1212.297334, - "y": -2648.446653 - } - } - }, - { - "id": "7e9e1820-2959-5a23-8140-bb1deba0711c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.297334, - "y": -2648.446653 - }, - "endPoint": { - "x": 1212.214126, - "y": -2648.494769 - } - } - }, - { - "id": "4e96d296-93f5-5026-97c6-8140096bccf3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.214126, - "y": -2648.494769 - }, - "endPoint": { - "x": 1212.043299, - "y": -2648.556043 - } - } - }, - { - "id": "b18cb284-95f4-530c-bea5-2fa2345e65a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.043299, - "y": -2648.556043 - }, - "endPoint": { - "x": 1211.754277, - "y": -2648.54729 - } - } - }, - { - "id": "6f91d29d-8c9f-5e8b-8802-572d2fa782a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.754277, - "y": -2648.54729 - }, - "endPoint": { - "x": 1211.63598, - "y": -2648.363522 - } - } - }, - { - "id": "745f99dc-bfb5-523a-8731-c0df81c67eea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.63598, - "y": -2648.363522 - }, - "endPoint": { - "x": 1211.710467, - "y": -2648.26283 - } - } - }, - { - "id": "866f54d5-263b-5577-af6e-c8600800d2a6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.710467, - "y": -2648.26283 - }, - "endPoint": { - "x": 1211.81994, - "y": -2648.140337 - } - } - }, - { - "id": "b2b16fce-c91d-55c4-a275-d18a462bd572", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.81994, - "y": -2648.140337 - }, - "endPoint": { - "x": 1211.977635, - "y": -2648.12283 - } - } - } - ] - }, - { - "id": "eb53f5fe-92d8-512c-b1ce-685fd89f99de", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "26621cfc-c350-5b62-99de-35433aadd4d3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.25797, - "y": -2648.053518 - }, - "endPoint": { - "x": 1213.21416, - "y": -2648.044764 - } - } - }, - { - "id": "9516994a-b381-55d6-baa4-a642ebb6d457", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.21416, - "y": -2648.044764 - }, - "endPoint": { - "x": 1213.091554, - "y": -2648.127895 - } - } - }, - { - "id": "6e142785-6e1d-57a7-a61d-adb99d4acd77", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.091554, - "y": -2648.127895 - }, - "endPoint": { - "x": 1213.030302, - "y": -2648.281108 - } - } - }, - { - "id": "0ce5d7c9-46a7-5d8d-9c89-82e90edc84ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.030302, - "y": -2648.281108 - }, - "endPoint": { - "x": 1213.078421, - "y": -2648.447368 - } - } - }, - { - "id": "d9973cad-0f7d-5b20-8e15-85db56b9d87f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.078421, - "y": -2648.447368 - }, - "endPoint": { - "x": 1213.275514, - "y": -2648.548061 - } - } - }, - { - "id": "c41d7bd1-5366-5d25-ae4b-d33f2094485c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.275514, - "y": -2648.548061 - }, - "endPoint": { - "x": 1213.468196, - "y": -2648.574321 - } - } - }, - { - "id": "9d90c3c0-28b6-5233-8165-52dfe590b581", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.468196, - "y": -2648.574321 - }, - "endPoint": { - "x": 1213.599625, - "y": -2648.49554 - } - } - }, - { - "id": "cbce5c4d-2e63-5c59-a5f9-230729ead642", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.599625, - "y": -2648.49554 - }, - "endPoint": { - "x": 1213.691554, - "y": -2648.368587 - } - } - }, - { - "id": "47a0fff4-f85a-5e1d-b99d-fa4d4adf239c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.691554, - "y": -2648.368587 - }, - "endPoint": { - "x": 1213.700377, - "y": -2648.206676 - } - } - }, - { - "id": "5f8a3e36-eff7-5b9e-a1e4-3a2ff5217e52", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.700377, - "y": -2648.206676 - }, - "endPoint": { - "x": 1213.61717, - "y": -2648.018504 - } - } - }, - { - "id": "ee91e423-fc6e-5c1d-add3-adfbf59cc7ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.61717, - "y": -2648.018504 - }, - "endPoint": { - "x": 1213.446342, - "y": -2647.98349 - } - } - }, - { - "id": "902a4606-5b2e-5ed0-a45b-2d453ce903bf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.446342, - "y": -2647.98349 - }, - "endPoint": { - "x": 1213.297368, - "y": -2648.00975 - } - } - }, - { - "id": "ed10320e-464d-57ed-8167-d891bac7b334", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.297368, - "y": -2648.00975 - }, - "endPoint": { - "x": 1213.25797, - "y": -2648.053518 - } - } - } - ] - }, - { - "id": "fd5659c2-c702-577e-988a-1aa209b9a0fd", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "d48b8fff-69d7-538c-b60b-f92ecb37fac8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.304789, - "y": -2648.075374 - }, - "endPoint": { - "x": 1214.440528, - "y": -2647.965983 - } - } - }, - { - "id": "a217c615-6aff-509d-9d30-028359f03e8c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.440528, - "y": -2647.965983 - }, - "endPoint": { - "x": 1214.479926, - "y": -2647.887202 - } - } - }, - { - "id": "be2e23c1-7279-566b-8b2b-f4d85658b6e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.479926, - "y": -2647.887202 - }, - "endPoint": { - "x": 1214.624488, - "y": -2647.882853 - } - } - }, - { - "id": "ac33421f-904b-5023-886b-685c7e694a75", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.624488, - "y": -2647.882853 - }, - "endPoint": { - "x": 1214.782183, - "y": -2647.904709 - } - } - }, - { - "id": "3d801636-8f24-509a-90e3-fbc02d20582a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.782183, - "y": -2647.904709 - }, - "endPoint": { - "x": 1214.8697, - "y": -2648.000997 - } - } - }, - { - "id": "92212385-76ab-5e39-9e72-7e83e69c9b0a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.8697, - "y": -2648.000997 - }, - "endPoint": { - "x": 1214.979276, - "y": -2648.027257 - } - } - }, - { - "id": "0a66d40c-bb3a-5ff1-b080-9e04eb7e54c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.979276, - "y": -2648.027257 - }, - "endPoint": { - "x": 1214.992408, - "y": -2648.162908 - } - } - }, - { - "id": "2f98df37-d0a4-530b-9d62-ac6d319e840f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.992408, - "y": -2648.162908 - }, - "endPoint": { - "x": 1215.005541, - "y": -2648.337978 - } - } - }, - { - "id": "da817f8c-2306-5342-9471-e6ea8741cbcf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.005541, - "y": -2648.337978 - }, - "endPoint": { - "x": 1214.91351, - "y": -2648.499889 - } - } - }, - { - "id": "b31408de-0574-5144-835f-88055b29d2b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.91351, - "y": -2648.499889 - }, - "endPoint": { - "x": 1214.804036, - "y": -2648.543656 - } - } - }, - { - "id": "a1beee55-5adc-5253-87b7-588c4de41897", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.804036, - "y": -2648.543656 - }, - "endPoint": { - "x": 1214.54128, - "y": -2648.534903 - } - } - }, - { - "id": "0b83d684-e0ef-51a0-a7e7-f21472c0e3b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.54128, - "y": -2648.534903 - }, - "endPoint": { - "x": 1214.462381, - "y": -2648.460526 - } - } - }, - { - "id": "3e89e0a1-42ba-5a4a-ba7c-9b1d4784468c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.462381, - "y": -2648.460526 - }, - "endPoint": { - "x": 1214.331054, - "y": -2648.408005 - } - } - }, - { - "id": "86d5b90e-6d87-5a33-8ad0-2618db4f9516", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.331054, - "y": -2648.408005 - }, - "endPoint": { - "x": 1214.291656, - "y": -2648.298615 - } - } - }, - { - "id": "1e12aff1-607d-5a42-99b8-5f2416c7026a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.291656, - "y": -2648.298615 - }, - "endPoint": { - "x": 1214.287244, - "y": -2648.189169 - } - } - }, - { - "id": "9bdab5ed-a5e5-5829-990f-358d8a742b95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.287244, - "y": -2648.189169 - }, - "endPoint": { - "x": 1214.304789, - "y": -2648.075374 - } - } - } - ] - }, - { - "id": "d99b5da2-7737-592f-bae1-443c9ae14287", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "6092eff5-9d67-52ee-92e9-6362a1317ae6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.258899, - "y": -2636.387471 - }, - "endPoint": { - "x": 1201.396587, - "y": -2636.693181 - } - } - }, - { - "id": "bed69d75-41d4-51e3-b1bb-68ee8d068b37", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.396587, - "y": -2636.693181 - }, - "endPoint": { - "x": 1201.471381, - "y": -2636.866488 - } - } - }, - { - "id": "5bcfd4f5-9d64-5f97-ac16-8c3b6530681f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.471381, - "y": -2636.866488 - }, - "endPoint": { - "x": 1201.460916, - "y": -2637.302234 - } - } - }, - { - "id": "60ea33a0-f904-505c-86e2-9d620ed648c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.460916, - "y": -2637.302234 - }, - "endPoint": { - "x": 1201.424083, - "y": -2637.66977 - } - } - }, - { - "id": "1710b296-dcc0-53e8-b34f-8b3cc8b6eddb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.424083, - "y": -2637.66977 - }, - "endPoint": { - "x": 1201.529145, - "y": -2637.906003 - } - } - }, - { - "id": "bae79eb5-a1d1-5a82-9273-fcf69c7eadbf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.529145, - "y": -2637.906003 - }, - "endPoint": { - "x": 1201.902195, - "y": -2637.963754 - } - } - }, - { - "id": "a2de0f8a-97c9-5a76-baa3-a24b279b7939", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.902195, - "y": -2637.963754 - }, - "endPoint": { - "x": 1202.322544, - "y": -2638.021504 - } - } - }, - { - "id": "1449a2c9-e25a-5f4c-808c-e0e55f6d30de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.322544, - "y": -2638.021504 - }, - "endPoint": { - "x": 1202.427605, - "y": -2638.095 - } - } - }, - { - "id": "2f0f6482-6239-5926-80c9-f0c8d18456f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.427605, - "y": -2638.095 - }, - "endPoint": { - "x": 1202.627263, - "y": -2638.158036 - } - } - }, - { - "id": "f76b1cca-6e26-5f41-9670-6fc29ad3bc6d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.627263, - "y": -2638.158036 - }, - "endPoint": { - "x": 1202.727092, - "y": -2638.03202 - } - } - }, - { - "id": "e941e6d4-22a9-54c5-abb8-292fd45798bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.727092, - "y": -2638.03202 - }, - "endPoint": { - "x": 1202.821689, - "y": -2637.690745 - } - } - }, - { - "id": "26b7cdf8-85f3-523c-b1cc-1a66fe523261", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.821689, - "y": -2637.690745 - }, - "endPoint": { - "x": 1202.984616, - "y": -2637.029226 - } - } - }, - { - "id": "368bee9d-5152-5787-919b-e7540dfddf2c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.984616, - "y": -2637.029226 - }, - "endPoint": { - "x": 1203.546757, - "y": -2636.719496 - } - } - }, - { - "id": "ca1fd4c0-c646-5f76-bc57-6b0d3cdcc469", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.546757, - "y": -2636.719496 - }, - "endPoint": { - "x": 1204.100895, - "y": -2636.564907 - } - } - }, - { - "id": "970a8cbb-a4cf-51dd-b983-c3a425e55a3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.100895, - "y": -2636.564907 - }, - "endPoint": { - "x": 1204.558076, - "y": -2636.517671 - } - } - }, - { - "id": "e423b349-67fc-52fa-8aa4-3ce9f10ce84c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.558076, - "y": -2636.517671 - }, - "endPoint": { - "x": 1205.178083, - "y": -2636.470436 - } - } - }, - { - "id": "2fa0e3e9-f83d-5aa4-8e67-7fda37c74a6b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.178083, - "y": -2636.470436 - }, - "endPoint": { - "x": 1205.897816, - "y": -2636.512441 - } - } - }, - { - "id": "2d61d47f-fe84-584f-849f-7e75ef8ae7d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.897816, - "y": -2636.512441 - }, - "endPoint": { - "x": 1206.559888, - "y": -2636.774935 - } - } - }, - { - "id": "10e7c0cb-f87e-5c4b-b397-de176a07702d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.559888, - "y": -2636.774935 - }, - "endPoint": { - "x": 1206.84891, - "y": -2637.105695 - } - } - }, - { - "id": "077b4403-55a2-5043-8237-0b9c94e97b22", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.84891, - "y": -2637.105695 - }, - "endPoint": { - "x": 1206.975004, - "y": -2637.284177 - } - } - }, - { - "id": "bb790e87-88c0-5cf3-ab04-0732b915fd73", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.975004, - "y": -2637.284177 - }, - "endPoint": { - "x": 1206.947713, - "y": -2638.029212 - } - } - }, - { - "id": "528b547a-9c8e-5c16-8f8d-554695b9cfef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.947713, - "y": -2638.029212 - }, - "endPoint": { - "x": 1207.005476, - "y": -2638.412327 - } - } - }, - { - "id": "c0b4776b-056a-5024-8d34-767095589d47", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.005476, - "y": -2638.412327 - }, - "endPoint": { - "x": 1206.955921, - "y": -2639.415286 - } - } - }, - { - "id": "1e2271c6-657f-5cd1-be54-ad0c8b07c23d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.955921, - "y": -2639.415286 - }, - "endPoint": { - "x": 1206.980647, - "y": -2639.913793 - } - } - }, - { - "id": "5468a8eb-bf33-539f-97e4-41362f38a505", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.980647, - "y": -2639.913793 - }, - "endPoint": { - "x": 1207.042412, - "y": -2640.696869 - } - } - }, - { - "id": "f95b6329-c87f-5455-8f11-48b190cb8a58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.042412, - "y": -2640.696869 - }, - "endPoint": { - "x": 1207.108691, - "y": -2641.284287 - } - } - }, - { - "id": "37e24ac9-ba89-52dc-91fe-83ee910d1946", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.108691, - "y": -2641.284287 - }, - "endPoint": { - "x": 1207.125209, - "y": -2642.1778 - } - } - }, - { - "id": "72bed2be-8262-50ec-9875-42a32eb6aa19", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.125209, - "y": -2642.1778 - }, - "endPoint": { - "x": 1207.166659, - "y": -2642.665902 - } - } - }, - { - "id": "f9c834cc-bc46-5c7b-8769-711a7eb2dd8e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.166659, - "y": -2642.665902 - }, - "endPoint": { - "x": 1207.125209, - "y": -2643.336065 - } - } - }, - { - "id": "f678c410-06c2-5fe7-a679-e8bc625df00b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.125209, - "y": -2643.336065 - }, - "endPoint": { - "x": 1207.14183, - "y": -2643.617331 - } - } - }, - { - "id": "97327417-feb5-5db7-a2d4-bdb8d062221b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.14183, - "y": -2643.617331 - }, - "endPoint": { - "x": 1207.025893, - "y": -2643.956569 - } - } - }, - { - "id": "8501f0f8-2a7a-5a04-88ea-51568d7d7761", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.025893, - "y": -2643.956569 - }, - "endPoint": { - "x": 1206.909443, - "y": -2644.30891 - } - } - }, - { - "id": "f6974b56-b62b-5a8e-a6da-bce60ac423e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.909443, - "y": -2644.30891 - }, - "endPoint": { - "x": 1206.329861, - "y": -2644.780495 - } - } - }, - { - "id": "2e0fda70-8d08-5773-ac7b-8b815123ca00", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.329861, - "y": -2644.780495 - }, - "endPoint": { - "x": 1205.741968, - "y": -2644.970759 - } - } - }, - { - "id": "f6bf100c-944f-5254-91ba-346e73e2494d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.741968, - "y": -2644.970759 - }, - "endPoint": { - "x": 1205.187214, - "y": -2644.937672 - } - } - }, - { - "id": "669746d4-e0c3-56d7-94fe-abe0b5c2491f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.187214, - "y": -2644.937672 - }, - "endPoint": { - "x": 1204.731879, - "y": -2645.028675 - } - } - }, - { - "id": "e9910e44-32b1-5deb-b0e0-46b05fab0d20", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.731879, - "y": -2645.028675 - }, - "endPoint": { - "x": 1204.110847, - "y": -2644.863185 - } - } - }, - { - "id": "f5fd8cb8-fce7-5eb4-a555-a1bf45e1bf6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.110847, - "y": -2644.863185 - }, - "endPoint": { - "x": 1203.539575, - "y": -2644.69775 - } - } - }, - { - "id": "0d18479a-16ed-59fe-9e02-725b51888173", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.539575, - "y": -2644.69775 - }, - "endPoint": { - "x": 1203.059308, - "y": -2644.300596 - } - } - }, - { - "id": "aaff41d7-603f-515f-b377-5ea1d148d04d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.059308, - "y": -2644.300596 - }, - "endPoint": { - "x": 1202.786087, - "y": -2643.870411 - } - } - }, - { - "id": "a4b5bee1-e3c9-5f0d-8de9-cb95f8200adf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.786087, - "y": -2643.870411 - }, - "endPoint": { - "x": 1202.759103, - "y": -2643.271432 - } - } - }, - { - "id": "83776669-d851-521b-ac3f-e880dd7de003", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.759103, - "y": -2643.271432 - }, - "endPoint": { - "x": 1202.734274, - "y": -2642.568238 - } - } - }, - { - "id": "240e73d9-9874-52be-b1d2-65bf4fb20eb2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.734274, - "y": -2642.568238 - }, - "endPoint": { - "x": 1202.767414, - "y": -2642.270345 - } - } - }, - { - "id": "eca4494a-762d-5c2a-8afe-04c4f791780c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.767414, - "y": -2642.270345 - }, - "endPoint": { - "x": 1202.709445, - "y": -2642.013907 - } - } - }, - { - "id": "61f7e08b-c47c-5958-a4be-6e291c589225", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.709445, - "y": -2642.013907 - }, - "endPoint": { - "x": 1202.568679, - "y": -2642.005649 - } - } - }, - { - "id": "e0e7a887-a4cc-59bd-9170-4eddab61bbba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.568679, - "y": -2642.005649 - }, - "endPoint": { - "x": 1202.419603, - "y": -2642.162826 - } - } - }, - { - "id": "0a1735dc-eab1-5e01-9fe4-369f90cd2b3d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.419603, - "y": -2642.162826 - }, - "endPoint": { - "x": 1202.378255, - "y": -2642.262087 - } - } - }, - { - "id": "eba06638-ed91-5fb8-938b-b8a66d326d60", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.378255, - "y": -2642.262087 - }, - "endPoint": { - "x": 1202.2458, - "y": -2642.286916 - } - } - }, - { - "id": "0dd46278-2928-56fe-ac63-f1ca2724ca04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.2458, - "y": -2642.286916 - }, - "endPoint": { - "x": 1202.088413, - "y": -2642.171084 - } - } - }, - { - "id": "3dd210f2-def1-526c-9518-dcbc78f2576a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.088413, - "y": -2642.171084 - }, - "endPoint": { - "x": 1201.931128, - "y": -2642.071823 - } - } - }, - { - "id": "33326f3e-4173-52d1-a0b0-ec5faecf3c4a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.931128, - "y": -2642.071823 - }, - "endPoint": { - "x": 1201.757223, - "y": -2642.088339 - } - } - }, - { - "id": "2c6f442c-2bba-5458-b120-75676f056a65", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.757223, - "y": -2642.088339 - }, - "endPoint": { - "x": 1201.599938, - "y": -2642.129739 - } - } - }, - { - "id": "29d46ae2-8a51-528d-88d6-2a13dabdd214", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.599938, - "y": -2642.129739 - }, - "endPoint": { - "x": 1201.58342, - "y": -2642.303487 - } - } - }, - { - "id": "6443bb50-ad6e-5167-b814-c3526c8c9038", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.58342, - "y": -2642.303487 - }, - "endPoint": { - "x": 1201.707565, - "y": -2642.609583 - } - } - }, - { - "id": "6652850a-8bf0-53bc-b719-5f0a9ea35d88", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.707565, - "y": -2642.609583 - }, - "endPoint": { - "x": 1201.782052, - "y": -2642.841246 - } - } - }, - { - "id": "492ef42d-310d-5806-bc77-c9fd661eddb0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.782052, - "y": -2642.841246 - }, - "endPoint": { - "x": 1201.782052, - "y": -2643.122513 - } - } - }, - { - "id": "ec3d463a-4568-57e8-9c56-dd7ac67eeb49", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.782052, - "y": -2643.122513 - }, - "endPoint": { - "x": 1201.757223, - "y": -2643.561012 - } - } - }, - { - "id": "01a30540-8abb-5632-97a9-38b0785a436d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.757223, - "y": -2643.561012 - }, - "endPoint": { - "x": 1201.856641, - "y": -2643.726502 - } - } - }, - { - "id": "5ff2cc97-0201-539f-b7b8-cf3a4ed4e270", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.856641, - "y": -2643.726502 - }, - "endPoint": { - "x": 1201.856641, - "y": -2643.916766 - } - } - }, - { - "id": "d1381e8f-7eac-5aed-8241-5d58c831a305", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.856641, - "y": -2643.916766 - }, - "endPoint": { - "x": 1201.84002, - "y": -2644.140171 - } - } - }, - { - "id": "647c972e-d6a9-597c-93ca-e3a79c821451", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.84002, - "y": -2644.140171 - }, - "endPoint": { - "x": 1201.84002, - "y": -2644.37178 - } - } - }, - { - "id": "18b61cc5-9dea-55f0-9b6f-37c6bfd19362", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.84002, - "y": -2644.37178 - }, - "endPoint": { - "x": 1201.666217, - "y": -2644.669618 - } - } - }, - { - "id": "c5f677c7-ae07-5890-8492-f735d59fd0ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.666217, - "y": -2644.669618 - }, - "endPoint": { - "x": 1201.426033, - "y": -2644.893024 - } - } - }, - { - "id": "4f5896b3-8744-5edd-b5bb-beac8414faa2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.426033, - "y": -2644.893024 - }, - "endPoint": { - "x": 1201.227298, - "y": -2645.050201 - } - } - }, - { - "id": "1be4e1a7-607a-574b-beed-e527b112ce7b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.227298, - "y": -2645.050201 - }, - "endPoint": { - "x": 1200.863071, - "y": -2645.058514 - } - } - }, - { - "id": "ab6fcf11-49d9-583d-8b8b-f9810a28fda2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.863071, - "y": -2645.058514 - }, - "endPoint": { - "x": 1200.664337, - "y": -2645.091601 - } - } - }, - { - "id": "26a05055-baf5-5459-ac02-68e0aef99917", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.664337, - "y": -2645.091601 - }, - "endPoint": { - "x": 1200.506949, - "y": -2644.926111 - } - } - }, - { - "id": "18780c2b-8e25-586d-9b1c-5e0f3261bacb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.506949, - "y": -2644.926111 - }, - "endPoint": { - "x": 1200.283489, - "y": -2644.595186 - } - } - }, - { - "id": "356aa64e-871a-5b8d-9b6f-8aec23d65c2d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.283489, - "y": -2644.595186 - }, - "endPoint": { - "x": 1200.283489, - "y": -2644.073942 - } - } - }, - { - "id": "c48602b3-d9b9-549d-b438-b7c45ddb2de6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.283489, - "y": -2644.073942 - }, - "endPoint": { - "x": 1200.308318, - "y": -2643.354177 - } - } - }, - { - "id": "dec407d6-fc5b-5e0b-bf8d-8ca28f928668", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.308318, - "y": -2643.354177 - }, - "endPoint": { - "x": 1200.308318, - "y": -2642.866075 - } - } - }, - { - "id": "0b065d2b-2c14-53c0-9b8b-e9a3bbb61d1b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.308318, - "y": -2642.866075 - }, - "endPoint": { - "x": 1200.399323, - "y": -2642.634412 - } - } - }, - { - "id": "2e4dd63e-7f69-5142-82e3-4e8569fca3ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.399323, - "y": -2642.634412 - }, - "endPoint": { - "x": 1200.366286, - "y": -2642.402748 - } - } - }, - { - "id": "50474d53-f419-594f-8fc1-78b88fe938c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.366286, - "y": -2642.402748 - }, - "endPoint": { - "x": 1200.200691, - "y": -2642.386177 - } - } - }, - { - "id": "ccb48cf9-5372-527d-a59c-452b5d27008b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.200691, - "y": -2642.386177 - }, - "endPoint": { - "x": 1199.968817, - "y": -2642.667499 - } - } - }, - { - "id": "8f4fd228-8c8c-57bd-b1d8-1fe45198e137", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.968817, - "y": -2642.667499 - }, - "endPoint": { - "x": 1199.794911, - "y": -2642.890849 - } - } - }, - { - "id": "7ecbf45f-c698-5f26-847c-4dceda009c24", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.794911, - "y": -2642.890849 - }, - "endPoint": { - "x": 1199.571348, - "y": -2642.965336 - } - } - }, - { - "id": "11a7d287-b575-5777-ad93-0f65cb13b1ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.571348, - "y": -2642.965336 - }, - "endPoint": { - "x": 1199.447203, - "y": -2642.998423 - } - } - }, - { - "id": "a0bdf80c-418e-5245-964c-bb904cef80a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.447203, - "y": -2642.998423 - }, - "endPoint": { - "x": 1199.215329, - "y": -2643.1556 - } - } - }, - { - "id": "3ccee81f-c534-549f-b1a4-b9a63d0f6857", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.215329, - "y": -2643.1556 - }, - "endPoint": { - "x": 1198.958729, - "y": -2643.07291 - } - } - }, - { - "id": "967061c9-4c82-5528-98f3-12310ae7edca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.958729, - "y": -2643.07291 - }, - "endPoint": { - "x": 1198.677196, - "y": -2642.882591 - } - } - }, - { - "id": "e6db9a5a-d4dd-5a81-b133-980e8da6d789", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.677196, - "y": -2642.882591 - }, - "endPoint": { - "x": 1198.412183, - "y": -2642.617841 - } - } - }, - { - "id": "a3e42ee3-293d-5d20-8132-9b1da0f8b51a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.412183, - "y": -2642.617841 - }, - "endPoint": { - "x": 1198.312867, - "y": -2642.286916 - } - } - }, - { - "id": "a5f2d189-35a6-5c15-8b86-175ca00337c3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.312867, - "y": -2642.286916 - }, - "endPoint": { - "x": 1198.370835, - "y": -2641.881504 - } - } - }, - { - "id": "08cff94b-551d-5979-b38c-36ab1b5da927", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.370835, - "y": -2641.881504 - }, - "endPoint": { - "x": 1198.52812, - "y": -2641.674669 - } - } - }, - { - "id": "5e655639-3f7a-5550-be49-94f2dc5a074b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.52812, - "y": -2641.674669 - }, - "endPoint": { - "x": 1198.56957, - "y": -2641.484405 - } - } - }, - { - "id": "ecd908e0-df27-550f-87c7-54e9beb999fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.56957, - "y": -2641.484405 - }, - "endPoint": { - "x": 1198.850999, - "y": -2641.434747 - } - } - }, - { - "id": "81256279-aaf3-53fe-993a-7ce8cb2f7cc5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.850999, - "y": -2641.434747 - }, - "endPoint": { - "x": 1199.594535, - "y": -2640.719166 - } - } - }, - { - "id": "e8216226-5513-5389-a240-eaeb2aeef42d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.594535, - "y": -2640.719166 - }, - "endPoint": { - "x": 1199.960506, - "y": -2640.387801 - } - } - }, - { - "id": "1fdd35a9-7d4f-5386-a2b6-a5c87b72c13f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.960506, - "y": -2640.387801 - }, - "endPoint": { - "x": 1200.070082, - "y": -2640.253911 - } - } - }, - { - "id": "f29d7e4d-145d-540d-b5e4-cef585aac3ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.070082, - "y": -2640.253911 - }, - "endPoint": { - "x": 1200.090397, - "y": -2640.193023 - } - } - }, - { - "id": "501c74e5-f49c-5761-a857-5fe0b4a49ed1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.090397, - "y": -2640.193023 - }, - "endPoint": { - "x": 1200.005137, - "y": -2639.986078 - } - } - }, - { - "id": "5903b212-c74b-5b58-ae62-8f1db6f27035", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.005137, - "y": -2639.986078 - }, - "endPoint": { - "x": 1199.879248, - "y": -2639.835948 - } - } - }, - { - "id": "23d7dbf9-84be-548e-a53d-ce8940149864", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.879248, - "y": -2639.835948 - }, - "endPoint": { - "x": 1199.408113, - "y": -2639.811559 - } - } - }, - { - "id": "5c330321-9944-549c-a29e-e877e3d6b5c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.408113, - "y": -2639.811559 - }, - "endPoint": { - "x": 1199.119809, - "y": -2639.762892 - } - } - }, - { - "id": "e2afae52-0103-5d5d-b20e-a3031bea8011", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.119809, - "y": -2639.762892 - }, - "endPoint": { - "x": 1198.99392, - "y": -2639.730411 - } - } - }, - { - "id": "d73741a9-b748-53ff-8f50-e1bcfd76aa37", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.99392, - "y": -2639.730411 - }, - "endPoint": { - "x": 1198.773845, - "y": -2639.550827 - } - } - }, - { - "id": "d870b81b-df25-5280-b195-1632f71faa87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.773845, - "y": -2639.550827 - }, - "endPoint": { - "x": 1198.656061, - "y": -2639.274845 - } - } - }, - { - "id": "6779013e-95a4-5038-accb-bbfcaeb2c0c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.656061, - "y": -2639.274845 - }, - "endPoint": { - "x": 1198.501752, - "y": -2639.189678 - } - } - }, - { - "id": "b6ea04f3-dd04-5363-b7cb-19ad0278dee8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.501752, - "y": -2639.189678 - }, - "endPoint": { - "x": 1199.079693, - "y": -2638.225587 - } - } - }, - { - "id": "24c609b4-7bf5-5a86-9d5a-4c0613a13712", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.079693, - "y": -2638.225587 - }, - "endPoint": { - "x": 1199.650657, - "y": -2637.720308 - } - } - }, - { - "id": "96a5485d-a0a9-5438-8324-616db6f7ed2a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.650657, - "y": -2637.720308 - }, - "endPoint": { - "x": 1200.311293, - "y": -2637.141699 - } - } - }, - { - "id": "2453d458-c9cc-5c9c-b33e-ce2301077f81", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.311293, - "y": -2637.141699 - }, - "endPoint": { - "x": 1200.910882, - "y": -2636.530829 - } - } - }, - { - "id": "8f76ef29-d333-5cbd-8a62-409a9d389618", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.910882, - "y": -2636.530829 - }, - "endPoint": { - "x": 1201.173639, - "y": -2636.336822 - } - } - }, - { - "id": "0c6b1940-6eb3-5c62-8c57-862e4bcab8de", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.173639, - "y": -2636.336822 - }, - "endPoint": { - "x": 1201.220424, - "y": -2636.342877 - } - } - }, - { - "id": "3c88df53-5911-53de-9184-1af47c36ba94", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.220424, - "y": -2636.342877 - }, - "endPoint": { - "x": 1201.258899, - "y": -2636.387471 - } - } - } - ] - }, - { - "id": "88bbf0d1-8eef-51a4-9da2-1cbd4776550c", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "e41f7d32-ba3c-5bce-8cbd-f5ae4cb3977c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.718952, - "y": -2638.228284 - }, - "endPoint": { - "x": 1204.533863, - "y": -2638.189362 - } - } - }, - { - "id": "071816a9-ce9d-52a5-8ee3-f974faf6e419", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.533863, - "y": -2638.189362 - }, - "endPoint": { - "x": 1204.353596, - "y": -2638.247773 - } - } - }, - { - "id": "c73c4648-6875-5766-b1bc-0999ef987e6a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.353596, - "y": -2638.247773 - }, - "endPoint": { - "x": 1204.231811, - "y": -2638.413263 - } - } - }, - { - "id": "42df3b50-e32b-50fe-b62b-e750a1df7e7e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.231811, - "y": -2638.413263 - }, - "endPoint": { - "x": 1204.215395, - "y": -2638.467215 - } - } - }, - { - "id": "6bd34752-eb98-51db-a90c-cd049cf16f75", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.215395, - "y": -2638.467215 - }, - "endPoint": { - "x": 1204.220217, - "y": -2638.538839 - } - } - }, - { - "id": "fcc0b405-c87d-5fb0-b22c-746ee17716c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.220217, - "y": -2638.538839 - }, - "endPoint": { - "x": 1204.382632, - "y": -2638.610519 - } - } - }, - { - "id": "decab088-eea7-5e1e-a0ef-a5b9717367ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.382632, - "y": -2638.610519 - }, - "endPoint": { - "x": 1204.647953, - "y": -2638.691667 - } - } - }, - { - "id": "31031def-2190-5842-a63a-35a6b3155c94", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.647953, - "y": -2638.691667 - }, - "endPoint": { - "x": 1204.853459, - "y": -2638.674986 - } - } - }, - { - "id": "1be931c9-8d87-50ee-b773-dee45ccab978", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.853459, - "y": -2638.674986 - }, - "endPoint": { - "x": 1205.152125, - "y": -2638.660617 - } - } - }, - { - "id": "61432d0b-a90f-5f7f-810e-7decf61ffd70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.152125, - "y": -2638.660617 - }, - "endPoint": { - "x": 1205.300278, - "y": -2638.64867 - } - } - }, - { - "id": "c684a178-ea41-5aac-a0fc-180882ad3303", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.300278, - "y": -2638.64867 - }, - "endPoint": { - "x": 1205.405956, - "y": -2638.559319 - } - } - }, - { - "id": "04263d6d-3487-547e-9b54-d4d870f0f818", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.405956, - "y": -2638.559319 - }, - "endPoint": { - "x": 1205.556981, - "y": -2638.510652 - } - } - }, - { - "id": "27789871-2da7-5c3d-b06b-34d32861bdc1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.556981, - "y": -2638.510652 - }, - "endPoint": { - "x": 1205.459512, - "y": -2638.359751 - } - } - }, - { - "id": "295eb777-12da-53c2-b693-d52e0a8e69e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.459512, - "y": -2638.359751 - }, - "endPoint": { - "x": 1205.308486, - "y": -2638.194206 - } - } - }, - { - "id": "8a898ceb-3440-5d77-86b0-e7143b9771c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.308486, - "y": -2638.194206 - }, - "endPoint": { - "x": 1205.069738, - "y": -2638.174773 - } - } - }, - { - "id": "76050364-1e4d-52de-8747-8339e1a34b29", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.069738, - "y": -2638.174773 - }, - "endPoint": { - "x": 1204.718952, - "y": -2638.228284 - } - } - } - ] - }, - { - "id": "f41114be-bc50-59d5-adf3-4a5cbf932037", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "fa474952-1fc3-522b-afec-e01ce3d8b3ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.341113, - "y": -2640.409877 - }, - "endPoint": { - "x": 1205.483213, - "y": -2640.360605 - } - } - }, - { - "id": "2d584a0d-bb6c-51e5-b2a2-702275fb7040", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.483213, - "y": -2640.360605 - }, - "endPoint": { - "x": 1205.532152, - "y": -2640.259031 - } - } - }, - { - "id": "c25a9a79-3313-5689-bbff-0fd76f152008", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.532152, - "y": -2640.259031 - }, - "endPoint": { - "x": 1205.528356, - "y": -2640.13863 - } - } - }, - { - "id": "75fe4b3e-3ac0-5324-bbcf-0bd481e5973e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.528356, - "y": -2640.13863 - }, - "endPoint": { - "x": 1205.539745, - "y": -2640.025771 - } - } - }, - { - "id": "75b71306-96cc-59bc-8b92-857d2a5f5059", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.539745, - "y": -2640.025771 - }, - "endPoint": { - "x": 1205.407905, - "y": -2639.98817 - } - } - }, - { - "id": "f6fddfb8-7c95-5a6f-81ac-23e0c169e0f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.407905, - "y": -2639.98817 - }, - "endPoint": { - "x": 1205.253493, - "y": -2639.894084 - } - } - }, - { - "id": "5cd9217b-867c-5414-bc88-4cda873adba1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.253493, - "y": -2639.894084 - }, - "endPoint": { - "x": 1205.076612, - "y": -2639.864025 - } - } - }, - { - "id": "afb03cdd-9625-549a-8271-ae44a8117d76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.076612, - "y": -2639.864025 - }, - "endPoint": { - "x": 1204.790361, - "y": -2639.897882 - } - } - }, - { - "id": "ec324430-1e64-5705-8d7e-d2c59263d0f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.790361, - "y": -2639.897882 - }, - "endPoint": { - "x": 1204.669909, - "y": -2639.965598 - } - } - }, - { - "id": "78161e21-e144-5391-8a6c-aca1e5a1e5ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.669909, - "y": -2639.965598 - }, - "endPoint": { - "x": 1204.545662, - "y": -2640.010741 - } - } - }, - { - "id": "d5c48ba9-477c-5356-87a0-e77c28da2ea1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.545662, - "y": -2640.010741 - }, - "endPoint": { - "x": 1204.323535, - "y": -2640.003199 - } - } - }, - { - "id": "3fa4ef0a-e228-5b67-9456-57a390d9e33b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.323535, - "y": -2640.003199 - }, - "endPoint": { - "x": 1204.314198, - "y": -2640.082971 - } - } - }, - { - "id": "17d0fbd6-a899-5c17-8bbc-c62dc27d6655", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.314198, - "y": -2640.082971 - }, - "endPoint": { - "x": 1204.294191, - "y": -2640.186581 - } - } - }, - { - "id": "067915b2-8adf-55e6-bc63-11b1aed566e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.294191, - "y": -2640.186581 - }, - "endPoint": { - "x": 1204.310607, - "y": -2640.33016 - } - } - }, - { - "id": "175b12c3-f458-555e-9968-fa08bd8f1acb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.310607, - "y": -2640.33016 - }, - "endPoint": { - "x": 1204.35965, - "y": -2640.368312 - } - } - }, - { - "id": "ebe038b6-38c2-59d8-8068-4a75f1bc79e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.35965, - "y": -2640.368312 - }, - "endPoint": { - "x": 1204.552536, - "y": -2640.388296 - } - } - }, - { - "id": "71a9564d-3f10-56dd-ac2b-065f4744c2e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.552536, - "y": -2640.388296 - }, - "endPoint": { - "x": 1204.858076, - "y": -2640.399197 - } - } - }, - { - "id": "4daa54ab-7580-5d3c-a51c-41621ab3c1b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.858076, - "y": -2640.399197 - }, - "endPoint": { - "x": 1205.341113, - "y": -2640.409877 - } - } - } - ] - }, - { - "id": "a3f1356c-c1be-5676-8d21-48d6907818d8", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "078c6baa-a9db-5cfc-b0ea-458e8982c8bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.851715, - "y": -2641.824579 - }, - "endPoint": { - "x": 1204.674013, - "y": -2641.864658 - } - } - }, - { - "id": "65f42ef2-a622-5efc-934c-ca9f0c5c59c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.674013, - "y": -2641.864658 - }, - "endPoint": { - "x": 1204.542071, - "y": -2641.973498 - } - } - }, - { - "id": "a2ad8c98-0877-5239-a720-f5c762200692", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.542071, - "y": -2641.973498 - }, - "endPoint": { - "x": 1204.398842, - "y": -2641.9964 - } - } - }, - { - "id": "cbe3e4f7-838b-5a87-b85d-794566d026be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.398842, - "y": -2641.9964 - }, - "endPoint": { - "x": 1204.384479, - "y": -2642.082338 - } - } - }, - { - "id": "81f5f007-ce17-57b5-96a8-55093fdb18e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.384479, - "y": -2642.082338 - }, - "endPoint": { - "x": 1204.458966, - "y": -2642.196904 - } - } - }, - { - "id": "3121c671-630c-55bc-a129-1b3b1f206822", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.458966, - "y": -2642.196904 - }, - "endPoint": { - "x": 1204.630922, - "y": -2642.320058 - } - } - }, - { - "id": "3325f452-ba1d-54cc-b1b4-0a5cdda258cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.630922, - "y": -2642.320058 - }, - "endPoint": { - "x": 1204.745628, - "y": -2642.388764 - } - } - }, - { - "id": "c3c59b78-e298-5f0e-8248-f9e645f00807", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.745628, - "y": -2642.388764 - }, - "endPoint": { - "x": 1204.9577, - "y": -2642.460388 - } - } - }, - { - "id": "dd9b0c79-0ceb-5b66-8f3c-09a8a87f3838", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.9577, - "y": -2642.460388 - }, - "endPoint": { - "x": 1205.158384, - "y": -2642.471839 - } - } - }, - { - "id": "51eef87a-9974-5256-b2c9-bc326f84714d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.158384, - "y": -2642.471839 - }, - "endPoint": { - "x": 1205.255853, - "y": -2642.405941 - } - } - }, - { - "id": "e2ad36e7-4c5c-5028-b1c1-21cd99841bb6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.255853, - "y": -2642.405941 - }, - "endPoint": { - "x": 1205.333213, - "y": -2642.351548 - } - } - }, - { - "id": "5c1c7b54-d760-572d-b80d-d9e453cb2d5a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.333213, - "y": -2642.351548 - }, - "endPoint": { - "x": 1205.508042, - "y": -2642.302881 - } - } - }, - { - "id": "fbb04b4d-6de8-5e3b-9a07-253974633b7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.508042, - "y": -2642.302881 - }, - "endPoint": { - "x": 1205.631263, - "y": -2642.136731 - } - } - }, - { - "id": "3aa657ba-e857-5880-8915-dad581c4df51", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.631263, - "y": -2642.136731 - }, - "endPoint": { - "x": 1205.57114, - "y": -2642.065162 - } - } - }, - { - "id": "fa1d9d21-ce7c-595a-bb93-137f6a271361", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.57114, - "y": -2642.065162 - }, - "endPoint": { - "x": 1205.508042, - "y": -2641.993537 - } - } - }, - { - "id": "aaf5cdfa-a299-512c-9dcf-5c61eb6735a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.508042, - "y": -2641.993537 - }, - "endPoint": { - "x": 1205.410573, - "y": -2641.91905 - } - } - }, - { - "id": "39f5a49f-7beb-5a1b-a5b4-8c47f8c94d38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.410573, - "y": -2641.91905 - }, - "endPoint": { - "x": 1205.301715, - "y": -2641.850344 - } - } - }, - { - "id": "5305c6e3-6f8d-547d-a089-e549e85c7e5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.301715, - "y": -2641.850344 - }, - "endPoint": { - "x": 1205.060915, - "y": -2641.818854 - } - } - }, - { - "id": "3c8145e9-5021-5e64-be90-39227dcb995a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.060915, - "y": -2641.818854 - }, - "endPoint": { - "x": 1204.851715, - "y": -2641.824579 - } - } - } - ] - }, - { - "id": "cc68f3b0-9c9d-5477-812b-154afcc33aba", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "4489c74e-8f42-56cb-878b-5c7ec5b7bdc0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.034343, - "y": -2639.65774 - }, - "endPoint": { - "x": 1201.866183, - "y": -2639.529246 - } - } - }, - { - "id": "3fb0ae78-14d8-5b99-a5f2-7dc8fc35f46a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.866183, - "y": -2639.529246 - }, - "endPoint": { - "x": 1201.678221, - "y": -2639.55892 - } - } - }, - { - "id": "bbf8a55e-1cf6-54b0-a971-6aee47b56b3f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.678221, - "y": -2639.55892 - }, - "endPoint": { - "x": 1201.64857, - "y": -2639.66765 - } - } - }, - { - "id": "af9381d9-eeaf-5241-8582-b4aa2b2a2fdc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.64857, - "y": -2639.66765 - }, - "endPoint": { - "x": 1201.65093, - "y": -2639.724245 - } - } - }, - { - "id": "8e162f07-93e5-5581-b67f-b1d6046d32d4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.65093, - "y": -2639.724245 - }, - "endPoint": { - "x": 1201.701306, - "y": -2639.915665 - } - } - }, - { - "id": "9e753138-40fa-5024-bc82-ae2f416d7217", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.701306, - "y": -2639.915665 - }, - "endPoint": { - "x": 1202.02398, - "y": -2640.157513 - } - } - }, - { - "id": "ada60fe8-739a-577a-9799-86a78d4590c5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.02398, - "y": -2640.157513 - }, - "endPoint": { - "x": 1202.245902, - "y": -2640.308634 - } - } - }, - { - "id": "536b31e4-2d30-5a4d-82d2-a315eb0624f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.245902, - "y": -2640.308634 - }, - "endPoint": { - "x": 1202.487831, - "y": -2640.238111 - } - } - }, - { - "id": "5614c0fb-74dd-5932-bbc0-4e97b00ea5a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.487831, - "y": -2640.238111 - }, - "endPoint": { - "x": 1202.659274, - "y": -2640.217962 - } - } - }, - { - "id": "3c362480-143e-5f2d-b239-7a8a4eb6fc95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.659274, - "y": -2640.217962 - }, - "endPoint": { - "x": 1202.669431, - "y": -2639.814917 - } - } - }, - { - "id": "1178ac34-e389-5d7d-ade3-124dc44ad2ea", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.669431, - "y": -2639.814917 - }, - "endPoint": { - "x": 1202.669431, - "y": -2639.583143 - } - } - }, - { - "id": "2e7173ba-76b1-5887-87ef-2704632febe3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.669431, - "y": -2639.583143 - }, - "endPoint": { - "x": 1202.487831, - "y": -2639.593218 - } - } - }, - { - "id": "af06178b-073e-5c8f-b1d8-e7e2df6fb3f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.487831, - "y": -2639.593218 - }, - "endPoint": { - "x": 1202.360813, - "y": -2639.682459 - } - } - }, - { - "id": "46c376b7-860c-5409-8551-ebfca5c3e4c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.360813, - "y": -2639.682459 - }, - "endPoint": { - "x": 1202.034343, - "y": -2639.65774 - } - } - } - ] - }, - { - "id": "7b352db9-f7c7-5ff9-ba05-69d82cfcfd4e", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "00920d18-be3a-5381-abd5-7115456d7187", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.483215, - "y": -2637.875779 - }, - "endPoint": { - "x": 1199.488961, - "y": -2637.904682 - } - } - }, - { - "id": "c4d74dc8-fea9-5727-8c3d-8333819737ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.488961, - "y": -2637.904682 - }, - "endPoint": { - "x": 1199.463927, - "y": -2638.075291 - } - } - }, - { - "id": "a14e7db1-bdad-5e88-ba0d-710389103f89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.463927, - "y": -2638.075291 - }, - "endPoint": { - "x": 1199.589405, - "y": -2638.175653 - } - } - }, - { - "id": "9f6fcad9-d64b-5a1e-8d6f-016c0f9bb820", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.589405, - "y": -2638.175653 - }, - "endPoint": { - "x": 1199.991184, - "y": -2638.065272 - } - } - }, - { - "id": "546aeab8-f592-5cce-aa64-b488cad265f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.991184, - "y": -2638.065272 - }, - "endPoint": { - "x": 1200.12169, - "y": -2637.924776 - } - } - }, - { - "id": "86aa6af2-1c1c-5d27-a3b0-e72e56f02448", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.12169, - "y": -2637.924776 - }, - "endPoint": { - "x": 1200.151854, - "y": -2637.643784 - } - } - }, - { - "id": "88522906-8dc9-5592-b7a3-6428c5329b8a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.151854, - "y": -2637.643784 - }, - "endPoint": { - "x": 1199.991184, - "y": -2637.483249 - } - } - }, - { - "id": "6352c257-ea2c-56ed-8704-3c72726ce1f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.991184, - "y": -2637.483249 - }, - "endPoint": { - "x": 1199.980975, - "y": -2637.431004 - } - } - }, - { - "id": "0fec4a48-9d85-5f9a-beb7-6929ed21e3e0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.980975, - "y": -2637.431004 - }, - "endPoint": { - "x": 1199.483215, - "y": -2637.875779 - } - } - } - ] - }, - { - "id": "714956c3-72bd-536f-8c11-4f3d5b5a26de", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "43d415a0-d201-5898-8127-42ded9981f7d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.258899, - "y": -2636.387471 - }, - "endPoint": { - "x": 1201.396587, - "y": -2636.693181 - } - } - }, - { - "id": "c443996d-911c-5c90-9939-10d5d0619636", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.396587, - "y": -2636.693181 - }, - "endPoint": { - "x": 1201.471381, - "y": -2636.866488 - } - } - }, - { - "id": "4defc754-fe5b-56ca-a4b4-375a903a40c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.471381, - "y": -2636.866488 - }, - "endPoint": { - "x": 1201.460916, - "y": -2637.302234 - } - } - }, - { - "id": "dad5bda2-61a5-573f-b44a-2d8bdab76d7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.460916, - "y": -2637.302234 - }, - "endPoint": { - "x": 1201.424083, - "y": -2637.66977 - } - } - }, - { - "id": "1182e0d1-3ab3-5aa6-b0bc-c69f557fcb52", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.424083, - "y": -2637.66977 - }, - "endPoint": { - "x": 1201.529145, - "y": -2637.906003 - } - } - }, - { - "id": "0f3bd645-a250-5dc4-a535-b55d390a1a55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.529145, - "y": -2637.906003 - }, - "endPoint": { - "x": 1201.902195, - "y": -2637.963754 - } - } - }, - { - "id": "23f90a90-880e-523e-8197-addce49c91f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.902195, - "y": -2637.963754 - }, - "endPoint": { - "x": 1202.322544, - "y": -2638.021504 - } - } - }, - { - "id": "6f11b306-3f03-5fd1-84b4-e653dfb2f70a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.322544, - "y": -2638.021504 - }, - "endPoint": { - "x": 1202.427605, - "y": -2638.095 - } - } - }, - { - "id": "1cdffcd7-a39c-581e-84f7-c73125991881", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.427605, - "y": -2638.095 - }, - "endPoint": { - "x": 1202.627263, - "y": -2638.158036 - } - } - }, - { - "id": "40886d3e-134f-5ad8-b86a-2f2fe75bc1b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.627263, - "y": -2638.158036 - }, - "endPoint": { - "x": 1202.727092, - "y": -2638.03202 - } - } - }, - { - "id": "5eeb3e29-b233-5f73-bd61-9f8dd1ebb8c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.727092, - "y": -2638.03202 - }, - "endPoint": { - "x": 1202.821689, - "y": -2637.690745 - } - } - }, - { - "id": "ec5d9edb-8a4b-53cd-badd-d50e646b4dca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.821689, - "y": -2637.690745 - }, - "endPoint": { - "x": 1202.984616, - "y": -2637.029226 - } - } - }, - { - "id": "fc77cb49-4ff3-5e88-9a7a-f46299ebfb74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.984616, - "y": -2637.029226 - }, - "endPoint": { - "x": 1203.546757, - "y": -2636.719496 - } - } - }, - { - "id": "56575791-e65c-5e42-9556-2ab2c24bf534", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.546757, - "y": -2636.719496 - }, - "endPoint": { - "x": 1204.100895, - "y": -2636.564907 - } - } - }, - { - "id": "e6a5c7fc-36f1-5491-8aa7-c839aa677d58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.100895, - "y": -2636.564907 - }, - "endPoint": { - "x": 1204.558076, - "y": -2636.517671 - } - } - }, - { - "id": "c210e79d-5e2c-5c01-8912-a7e7709c8386", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.558076, - "y": -2636.517671 - }, - "endPoint": { - "x": 1205.178083, - "y": -2636.470436 - } - } - }, - { - "id": "34351862-2570-54f3-a2ae-9580e4f4f94f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.178083, - "y": -2636.470436 - }, - "endPoint": { - "x": 1205.897816, - "y": -2636.512441 - } - } - }, - { - "id": "f9f4d449-1f4e-54cf-8545-4200d3a99752", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.897816, - "y": -2636.512441 - }, - "endPoint": { - "x": 1206.559888, - "y": -2636.774935 - } - } - }, - { - "id": "e90b083e-69a0-5f60-b0ea-9481cfaa8b7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.559888, - "y": -2636.774935 - }, - "endPoint": { - "x": 1206.84891, - "y": -2637.105695 - } - } - }, - { - "id": "c4e910e5-cdcb-538e-8a33-d134ce8507ff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.84891, - "y": -2637.105695 - }, - "endPoint": { - "x": 1206.975004, - "y": -2637.284177 - } - } - }, - { - "id": "845725ba-6427-50bb-952b-1777c5668b02", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.975004, - "y": -2637.284177 - }, - "endPoint": { - "x": 1206.947713, - "y": -2638.029212 - } - } - }, - { - "id": "b566cdf5-03ba-522b-a056-8ecec12eba87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.947713, - "y": -2638.029212 - }, - "endPoint": { - "x": 1207.005476, - "y": -2638.412327 - } - } - }, - { - "id": "fd1ace24-bbaa-530e-a00a-96d284022562", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.005476, - "y": -2638.412327 - }, - "endPoint": { - "x": 1206.955921, - "y": -2639.415286 - } - } - }, - { - "id": "3df0447c-bc09-5c62-9e27-4141e8b59f18", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.955921, - "y": -2639.415286 - }, - "endPoint": { - "x": 1206.980647, - "y": -2639.913793 - } - } - }, - { - "id": "063e1b24-9480-5957-a69c-302fecf981d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.980647, - "y": -2639.913793 - }, - "endPoint": { - "x": 1207.042412, - "y": -2640.696869 - } - } - }, - { - "id": "78bd7ef1-1d6e-5d9e-80ab-89308bdc092d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.042412, - "y": -2640.696869 - }, - "endPoint": { - "x": 1207.108691, - "y": -2641.284287 - } - } - }, - { - "id": "3d97d824-1ff6-505d-a825-a98bca1305e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.108691, - "y": -2641.284287 - }, - "endPoint": { - "x": 1207.125209, - "y": -2642.1778 - } - } - }, - { - "id": "d6b94484-8b7a-5c64-90ec-72cf8df2d705", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.125209, - "y": -2642.1778 - }, - "endPoint": { - "x": 1207.166659, - "y": -2642.665902 - } - } - }, - { - "id": "501499a8-18f2-5191-b790-e74d8ec1dbc2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.166659, - "y": -2642.665902 - }, - "endPoint": { - "x": 1207.125209, - "y": -2643.336065 - } - } - }, - { - "id": "93e5017f-f3d7-51c7-83c7-30f686dce663", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.125209, - "y": -2643.336065 - }, - "endPoint": { - "x": 1207.14183, - "y": -2643.617331 - } - } - }, - { - "id": "a4ff3d16-d0de-5df3-a5ba-75d37e8f319a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.14183, - "y": -2643.617331 - }, - "endPoint": { - "x": 1207.025893, - "y": -2643.956569 - } - } - }, - { - "id": "fb3d155a-7537-586a-aa11-a0a7aaa1ca1d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.025893, - "y": -2643.956569 - }, - "endPoint": { - "x": 1206.909443, - "y": -2644.30891 - } - } - }, - { - "id": "20f5ac94-f4cb-5705-98f3-139f2b84a080", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.909443, - "y": -2644.30891 - }, - "endPoint": { - "x": 1206.329861, - "y": -2644.780495 - } - } - }, - { - "id": "c594a3a9-f3c9-5d0c-bfa1-26bbda60de74", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.329861, - "y": -2644.780495 - }, - "endPoint": { - "x": 1205.741968, - "y": -2644.970759 - } - } - }, - { - "id": "d898e1ac-aa64-5c88-9449-e7ff16edd020", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.741968, - "y": -2644.970759 - }, - "endPoint": { - "x": 1205.187214, - "y": -2644.937672 - } - } - }, - { - "id": "e1e8e8fa-8250-5af9-9c55-bc296645ea6a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.187214, - "y": -2644.937672 - }, - "endPoint": { - "x": 1204.731879, - "y": -2645.028675 - } - } - }, - { - "id": "fd7cf79a-d5c7-5481-a1d0-9a078949c4c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.731879, - "y": -2645.028675 - }, - "endPoint": { - "x": 1204.110847, - "y": -2644.863185 - } - } - }, - { - "id": "40a84058-6bd5-54d3-ad57-bce90d9fd6b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.110847, - "y": -2644.863185 - }, - "endPoint": { - "x": 1203.539575, - "y": -2644.69775 - } - } - }, - { - "id": "6b271c84-c74e-542d-a961-f5f8ae6a62d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.539575, - "y": -2644.69775 - }, - "endPoint": { - "x": 1203.059308, - "y": -2644.300596 - } - } - }, - { - "id": "48e462c1-7f7e-5bcc-abfb-22b3324ca2db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.059308, - "y": -2644.300596 - }, - "endPoint": { - "x": 1202.786087, - "y": -2643.870411 - } - } - }, - { - "id": "db05c11a-c885-5869-b714-3d335b6adcbf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.786087, - "y": -2643.870411 - }, - "endPoint": { - "x": 1202.759103, - "y": -2643.271432 - } - } - }, - { - "id": "e66fec31-c82a-564b-8fa9-f9318bbaefe8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.759103, - "y": -2643.271432 - }, - "endPoint": { - "x": 1202.734274, - "y": -2642.568238 - } - } - }, - { - "id": "53add854-324d-52f1-858a-1a0f5a74fa0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.734274, - "y": -2642.568238 - }, - "endPoint": { - "x": 1202.767414, - "y": -2642.270345 - } - } - }, - { - "id": "ad68a3a9-9e80-52c5-946e-33f1b6e1810a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.767414, - "y": -2642.270345 - }, - "endPoint": { - "x": 1202.709445, - "y": -2642.013907 - } - } - }, - { - "id": "5634d00a-0251-59ad-b1f7-5d79151e2157", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.709445, - "y": -2642.013907 - }, - "endPoint": { - "x": 1202.568679, - "y": -2642.005649 - } - } - }, - { - "id": "c5f18875-f828-50af-b811-17f8f8e7e138", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.568679, - "y": -2642.005649 - }, - "endPoint": { - "x": 1202.419603, - "y": -2642.162826 - } - } - }, - { - "id": "1817d7b7-5963-5528-ad8f-f7fea2a42d0e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.419603, - "y": -2642.162826 - }, - "endPoint": { - "x": 1202.378255, - "y": -2642.262087 - } - } - }, - { - "id": "07eab643-5738-5b37-8187-800f20a03f43", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.378255, - "y": -2642.262087 - }, - "endPoint": { - "x": 1202.2458, - "y": -2642.286916 - } - } - }, - { - "id": "b4ade0ca-615f-5882-b3d1-0448c575fc4d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.2458, - "y": -2642.286916 - }, - "endPoint": { - "x": 1202.088413, - "y": -2642.171084 - } - } - }, - { - "id": "26178e28-a20b-5d5a-839d-68973d8a1131", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.088413, - "y": -2642.171084 - }, - "endPoint": { - "x": 1201.931128, - "y": -2642.071823 - } - } - }, - { - "id": "9d688e6c-7012-5af6-8105-e7918edf07c4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.931128, - "y": -2642.071823 - }, - "endPoint": { - "x": 1201.757223, - "y": -2642.088339 - } - } - }, - { - "id": "94dc3f75-79bf-5b26-9cf5-a8346fb96212", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.757223, - "y": -2642.088339 - }, - "endPoint": { - "x": 1201.599938, - "y": -2642.129739 - } - } - }, - { - "id": "f6f9c8ed-408b-5abd-a93e-5e94af112d98", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.599938, - "y": -2642.129739 - }, - "endPoint": { - "x": 1201.58342, - "y": -2642.303487 - } - } - }, - { - "id": "54781754-cde8-5f61-8525-45d1f8e3acb4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.58342, - "y": -2642.303487 - }, - "endPoint": { - "x": 1201.707565, - "y": -2642.609583 - } - } - }, - { - "id": "5083d234-b3cc-5169-9797-41f86e375685", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.707565, - "y": -2642.609583 - }, - "endPoint": { - "x": 1201.782052, - "y": -2642.841246 - } - } - }, - { - "id": "fc53259a-7286-5848-848f-af0ae250c162", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.782052, - "y": -2642.841246 - }, - "endPoint": { - "x": 1201.782052, - "y": -2643.122513 - } - } - }, - { - "id": "2c4effc3-c1ce-531e-8f47-eddccd3d3f7f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.782052, - "y": -2643.122513 - }, - "endPoint": { - "x": 1201.757223, - "y": -2643.561012 - } - } - }, - { - "id": "69afd09c-5d01-51c0-a76c-09385294bc2a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.757223, - "y": -2643.561012 - }, - "endPoint": { - "x": 1201.856641, - "y": -2643.726502 - } - } - }, - { - "id": "5ffa5326-7b7a-5b48-a649-0a88391bc102", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.856641, - "y": -2643.726502 - }, - "endPoint": { - "x": 1201.856641, - "y": -2643.916766 - } - } - }, - { - "id": "2309cb4e-aff5-5b70-9639-7229d02d73eb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.856641, - "y": -2643.916766 - }, - "endPoint": { - "x": 1201.84002, - "y": -2644.140171 - } - } - }, - { - "id": "8c4f7d62-18ac-55a4-ac69-6127ebeb450f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.84002, - "y": -2644.140171 - }, - "endPoint": { - "x": 1201.84002, - "y": -2644.37178 - } - } - }, - { - "id": "45d38317-1b5c-57af-b2b6-9ff1c36f26ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.84002, - "y": -2644.37178 - }, - "endPoint": { - "x": 1201.666217, - "y": -2644.669618 - } - } - }, - { - "id": "1ec6e232-efc2-509f-ac10-bb1a95c3730f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.666217, - "y": -2644.669618 - }, - "endPoint": { - "x": 1201.426033, - "y": -2644.893024 - } - } - }, - { - "id": "6e5097f4-8b23-517c-a9f4-9aca1aa49fe9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.426033, - "y": -2644.893024 - }, - "endPoint": { - "x": 1201.227298, - "y": -2645.050201 - } - } - }, - { - "id": "f06a6745-b6af-5635-8c81-54e92cf695c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.227298, - "y": -2645.050201 - }, - "endPoint": { - "x": 1200.863071, - "y": -2645.058514 - } - } - }, - { - "id": "35b3a1f6-6d31-5fc9-8e86-f83a4de75340", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.863071, - "y": -2645.058514 - }, - "endPoint": { - "x": 1200.664337, - "y": -2645.091601 - } - } - }, - { - "id": "72831439-7a66-5415-b625-0a0203030f46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.664337, - "y": -2645.091601 - }, - "endPoint": { - "x": 1200.506949, - "y": -2644.926111 - } - } - }, - { - "id": "01135569-4072-5995-8f0e-8a3cdf3a5eba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.506949, - "y": -2644.926111 - }, - "endPoint": { - "x": 1200.283489, - "y": -2644.595186 - } - } - }, - { - "id": "88c4965c-0ecd-5ff7-90bf-6513bbb12f4d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.283489, - "y": -2644.595186 - }, - "endPoint": { - "x": 1200.283489, - "y": -2644.073942 - } - } - }, - { - "id": "05557202-d2ba-5948-8849-b2e56b782de7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.283489, - "y": -2644.073942 - }, - "endPoint": { - "x": 1200.308318, - "y": -2643.354177 - } - } - }, - { - "id": "375083bc-dfb6-5d79-911c-debf488ad844", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.308318, - "y": -2643.354177 - }, - "endPoint": { - "x": 1200.308318, - "y": -2642.866075 - } - } - }, - { - "id": "83af853a-1222-51e0-845a-7f357e82b273", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.308318, - "y": -2642.866075 - }, - "endPoint": { - "x": 1200.399323, - "y": -2642.634412 - } - } - }, - { - "id": "392b4618-e3d9-5fa4-b684-54b798a894cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.399323, - "y": -2642.634412 - }, - "endPoint": { - "x": 1200.366286, - "y": -2642.402748 - } - } - }, - { - "id": "50fd760f-5e9b-5ca6-93af-bf3bd77cda3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.366286, - "y": -2642.402748 - }, - "endPoint": { - "x": 1200.200691, - "y": -2642.386177 - } - } - }, - { - "id": "9786c8b4-b738-57d2-a451-10f057891211", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.200691, - "y": -2642.386177 - }, - "endPoint": { - "x": 1199.968817, - "y": -2642.667499 - } - } - }, - { - "id": "79c564aa-712e-5001-acd4-4c1fd38b0611", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.968817, - "y": -2642.667499 - }, - "endPoint": { - "x": 1199.794911, - "y": -2642.890849 - } - } - }, - { - "id": "e9196697-100a-54cb-b896-5a6c89dcda6d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.794911, - "y": -2642.890849 - }, - "endPoint": { - "x": 1199.571348, - "y": -2642.965336 - } - } - }, - { - "id": "0e7c1299-4c6c-5900-b8ff-790f41d20b9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.571348, - "y": -2642.965336 - }, - "endPoint": { - "x": 1199.447203, - "y": -2642.998423 - } - } - }, - { - "id": "b0bd287c-3367-5424-80f4-afee8d3db64e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.447203, - "y": -2642.998423 - }, - "endPoint": { - "x": 1199.215329, - "y": -2643.1556 - } - } - }, - { - "id": "eb47bd84-31fa-5631-9579-8d55dda74853", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.215329, - "y": -2643.1556 - }, - "endPoint": { - "x": 1198.958729, - "y": -2643.07291 - } - } - }, - { - "id": "9ca51bd0-2333-5daf-81d0-98d798237edb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.958729, - "y": -2643.07291 - }, - "endPoint": { - "x": 1198.677196, - "y": -2642.882591 - } - } - }, - { - "id": "b3ef2c15-11a8-5a93-a997-60a4938df6fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.677196, - "y": -2642.882591 - }, - "endPoint": { - "x": 1198.412183, - "y": -2642.617841 - } - } - }, - { - "id": "a721c40a-7f5b-5227-b375-9531894fb40c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.412183, - "y": -2642.617841 - }, - "endPoint": { - "x": 1198.312867, - "y": -2642.286916 - } - } - }, - { - "id": "0b16df67-f95f-50a4-af51-ea7b8aa056f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.312867, - "y": -2642.286916 - }, - "endPoint": { - "x": 1198.370835, - "y": -2641.881504 - } - } - }, - { - "id": "f1431855-eda7-5a30-84c7-9b3633ff3561", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.370835, - "y": -2641.881504 - }, - "endPoint": { - "x": 1198.52812, - "y": -2641.674669 - } - } - }, - { - "id": "5931dc6d-ed6c-58f7-8750-bb039ab254df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.52812, - "y": -2641.674669 - }, - "endPoint": { - "x": 1198.56957, - "y": -2641.484405 - } - } - }, - { - "id": "9d1d253f-b247-59e6-a934-e84931fa14c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.56957, - "y": -2641.484405 - }, - "endPoint": { - "x": 1198.850999, - "y": -2641.434747 - } - } - }, - { - "id": "95a3f347-e0c8-5994-b9fd-a559e2edc0bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.850999, - "y": -2641.434747 - }, - "endPoint": { - "x": 1199.594535, - "y": -2640.719166 - } - } - }, - { - "id": "ffe74afa-a0cb-5f4b-a031-2e04da06cfe4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.594535, - "y": -2640.719166 - }, - "endPoint": { - "x": 1199.960506, - "y": -2640.387801 - } - } - }, - { - "id": "56bc787d-f902-5ec8-9b3c-47f0114b1790", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.960506, - "y": -2640.387801 - }, - "endPoint": { - "x": 1200.070082, - "y": -2640.253911 - } - } - }, - { - "id": "4cc745b0-c738-5e9a-a878-fba61bc05146", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.070082, - "y": -2640.253911 - }, - "endPoint": { - "x": 1200.090397, - "y": -2640.193023 - } - } - }, - { - "id": "28c7c49c-8017-5282-8eb6-4fbfc0c4a5cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.090397, - "y": -2640.193023 - }, - "endPoint": { - "x": 1200.005137, - "y": -2639.986078 - } - } - }, - { - "id": "5714c7fa-727e-529a-a06d-20146d396c6a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.005137, - "y": -2639.986078 - }, - "endPoint": { - "x": 1199.879248, - "y": -2639.835948 - } - } - }, - { - "id": "1230f3a5-fe7d-57a7-81e5-9ebde078674d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.879248, - "y": -2639.835948 - }, - "endPoint": { - "x": 1199.408113, - "y": -2639.811559 - } - } - }, - { - "id": "ade71144-6d8a-5873-a6df-b78a77da08c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.408113, - "y": -2639.811559 - }, - "endPoint": { - "x": 1199.119809, - "y": -2639.762892 - } - } - }, - { - "id": "09e25daa-df85-52ce-84cb-2341b5f95224", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.119809, - "y": -2639.762892 - }, - "endPoint": { - "x": 1198.99392, - "y": -2639.730411 - } - } - }, - { - "id": "8fbfaaad-31b8-5f2d-aae5-b56f0d5d77fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.99392, - "y": -2639.730411 - }, - "endPoint": { - "x": 1198.773845, - "y": -2639.550827 - } - } - }, - { - "id": "cc07815e-8b38-533d-9dba-ac51a42c4690", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.773845, - "y": -2639.550827 - }, - "endPoint": { - "x": 1198.656061, - "y": -2639.274845 - } - } - }, - { - "id": "0c4311c9-9532-5ea6-9f7b-418aedb856b4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.656061, - "y": -2639.274845 - }, - "endPoint": { - "x": 1198.501752, - "y": -2639.189678 - } - } - }, - { - "id": "69ff99f6-b076-567b-a905-186c0024643d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.501752, - "y": -2639.189678 - }, - "endPoint": { - "x": 1199.079693, - "y": -2638.225587 - } - } - }, - { - "id": "2539eedc-90c7-5f8a-9d4a-b4275c125036", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.079693, - "y": -2638.225587 - }, - "endPoint": { - "x": 1199.650657, - "y": -2637.720308 - } - } - }, - { - "id": "6cc21e38-7220-55a6-886f-dce213669797", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.650657, - "y": -2637.720308 - }, - "endPoint": { - "x": 1200.311293, - "y": -2637.141699 - } - } - }, - { - "id": "fb2727df-a134-56f9-a3cb-f51be1402aa8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.311293, - "y": -2637.141699 - }, - "endPoint": { - "x": 1200.910882, - "y": -2636.530829 - } - } - }, - { - "id": "1efcd072-f3fc-5369-b344-6a69433d637d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.910882, - "y": -2636.530829 - }, - "endPoint": { - "x": 1201.173639, - "y": -2636.336822 - } - } - }, - { - "id": "5f38b506-10f6-55f2-8eba-63c850478343", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.173639, - "y": -2636.336822 - }, - "endPoint": { - "x": 1201.220424, - "y": -2636.342877 - } - } - }, - { - "id": "7437466f-19ab-5aac-bd58-a69088bce7e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.220424, - "y": -2636.342877 - }, - "endPoint": { - "x": 1201.258899, - "y": -2636.387471 - } - } - } - ] - }, - { - "id": "159369b7-f4e5-59f8-b120-46ec194f2679", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "6be0dbf9-f281-5627-b81d-2b5a868c08f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.488961, - "y": -2637.904682 - }, - "endPoint": { - "x": 1199.463927, - "y": -2638.075291 - } - } - }, - { - "id": "8347e0ef-86d1-5f77-86c7-b31ac2d3ee47", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.463927, - "y": -2638.075291 - }, - "endPoint": { - "x": 1199.589405, - "y": -2638.175653 - } - } - }, - { - "id": "ef47b1d6-a783-50dd-a31a-28d205c60f42", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.589405, - "y": -2638.175653 - }, - "endPoint": { - "x": 1199.991184, - "y": -2638.065272 - } - } - }, - { - "id": "e050e08f-9918-5c47-a984-fa3cee97967a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.991184, - "y": -2638.065272 - }, - "endPoint": { - "x": 1200.12169, - "y": -2637.924776 - } - } - }, - { - "id": "ac63b007-de70-5876-a4a5-546d05e798d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.12169, - "y": -2637.924776 - }, - "endPoint": { - "x": 1200.151854, - "y": -2637.643784 - } - } - }, - { - "id": "49b31088-a5e4-5c7e-93b5-00e4c38f7c2d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.151854, - "y": -2637.643784 - }, - "endPoint": { - "x": 1199.991184, - "y": -2637.483249 - } - } - }, - { - "id": "dc0e0ec7-77dc-5995-bc9c-910bf2a21dd9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.991184, - "y": -2637.483249 - }, - "endPoint": { - "x": 1199.980975, - "y": -2637.431004 - } - } - }, - { - "id": "08bdfec8-be3c-59f4-bd89-f768c1768411", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.980975, - "y": -2637.431004 - }, - "endPoint": { - "x": 1199.483215, - "y": -2637.875779 - } - } - }, - { - "id": "ad5bef78-a5d6-53e7-b56f-a1da8bf4f719", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.483215, - "y": -2637.875779 - }, - "endPoint": { - "x": 1199.488961, - "y": -2637.904682 - } - } - } - ] - }, - { - "id": "875fa9d4-e9a3-5d36-a906-492aee93f6c7", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "7dcac6a1-8ffb-5ec6-b934-e1423244ce8d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.65093, - "y": -2639.724245 - }, - "endPoint": { - "x": 1201.701306, - "y": -2639.915665 - } - } - }, - { - "id": "78972210-5247-5a88-9099-7817226ef8a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.701306, - "y": -2639.915665 - }, - "endPoint": { - "x": 1202.02398, - "y": -2640.157513 - } - } - }, - { - "id": "3d1edb07-8a9f-573c-891d-bd2ebb027a5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.02398, - "y": -2640.157513 - }, - "endPoint": { - "x": 1202.245902, - "y": -2640.308634 - } - } - }, - { - "id": "6f204fc6-9c3f-563f-941a-4f91f0e28878", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.245902, - "y": -2640.308634 - }, - "endPoint": { - "x": 1202.487831, - "y": -2640.238111 - } - } - }, - { - "id": "6198bfbb-48d1-5ad5-8fc9-607ae43af872", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.487831, - "y": -2640.238111 - }, - "endPoint": { - "x": 1202.659274, - "y": -2640.217962 - } - } - }, - { - "id": "1e6fd9ec-bade-556d-a7bb-73ba8dcdd6f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.659274, - "y": -2640.217962 - }, - "endPoint": { - "x": 1202.669431, - "y": -2639.814917 - } - } - }, - { - "id": "e7ca13e0-0f2a-5657-8972-42768c30cb3d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.669431, - "y": -2639.814917 - }, - "endPoint": { - "x": 1202.669431, - "y": -2639.583143 - } - } - }, - { - "id": "24f559aa-2c59-5b97-b020-9d294b83d98c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.669431, - "y": -2639.583143 - }, - "endPoint": { - "x": 1202.487831, - "y": -2639.593218 - } - } - }, - { - "id": "c8c734cb-2da2-5876-a226-0acf95adf75f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.487831, - "y": -2639.593218 - }, - "endPoint": { - "x": 1202.360813, - "y": -2639.682459 - } - } - }, - { - "id": "a7d1a413-8eac-5679-9f95-fb385b6c4a68", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.360813, - "y": -2639.682459 - }, - "endPoint": { - "x": 1202.034343, - "y": -2639.65774 - } - } - }, - { - "id": "b1d4d61a-7329-530e-987f-7d0b138b8691", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.034343, - "y": -2639.65774 - }, - "endPoint": { - "x": 1201.866183, - "y": -2639.529246 - } - } - }, - { - "id": "dbbfddfb-78aa-5737-80b5-4d1159265ea8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.866183, - "y": -2639.529246 - }, - "endPoint": { - "x": 1201.678221, - "y": -2639.55892 - } - } - }, - { - "id": "a36b736b-99f3-528c-a31c-a22578fb191a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.678221, - "y": -2639.55892 - }, - "endPoint": { - "x": 1201.64857, - "y": -2639.66765 - } - } - }, - { - "id": "7d449bfb-c462-55d6-9a1e-d89d58673c49", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.64857, - "y": -2639.66765 - }, - "endPoint": { - "x": 1201.65093, - "y": -2639.724245 - } - } - } - ] - }, - { - "id": "b6cdea31-4a77-58ab-b00c-0e49e3939360", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "fb981e5c-e092-599f-bdbc-9d065bc890ee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.231811, - "y": -2638.413263 - }, - "endPoint": { - "x": 1204.353596, - "y": -2638.247773 - } - } - }, - { - "id": "43af059b-f794-5b7e-9536-9bf626f75916", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.353596, - "y": -2638.247773 - }, - "endPoint": { - "x": 1204.533863, - "y": -2638.189362 - } - } - }, - { - "id": "24beeb18-2eb2-586b-97cd-fc5859a4e3af", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.533863, - "y": -2638.189362 - }, - "endPoint": { - "x": 1204.718952, - "y": -2638.228284 - } - } - }, - { - "id": "8f28ebd1-7f5a-536a-a664-c89a184985f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.718952, - "y": -2638.228284 - }, - "endPoint": { - "x": 1205.069738, - "y": -2638.174773 - } - } - }, - { - "id": "ea1bd5d9-8876-5048-8ba6-ab605f4007cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.069738, - "y": -2638.174773 - }, - "endPoint": { - "x": 1205.308486, - "y": -2638.194206 - } - } - }, - { - "id": "0e48ab73-2846-5808-b746-66665760f5c0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.308486, - "y": -2638.194206 - }, - "endPoint": { - "x": 1205.459512, - "y": -2638.359751 - } - } - }, - { - "id": "b81aabe1-14c5-5ea4-b511-895c70229f20", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.459512, - "y": -2638.359751 - }, - "endPoint": { - "x": 1205.556981, - "y": -2638.510652 - } - } - }, - { - "id": "c47e4584-dd3b-5375-8b13-138cbfebc54b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.556981, - "y": -2638.510652 - }, - "endPoint": { - "x": 1205.405956, - "y": -2638.559319 - } - } - }, - { - "id": "e682703b-5ce6-5e16-844d-2f152992e62f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.405956, - "y": -2638.559319 - }, - "endPoint": { - "x": 1205.300278, - "y": -2638.64867 - } - } - }, - { - "id": "d78ea9f8-5eeb-5f37-a606-258fa5050899", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.300278, - "y": -2638.64867 - }, - "endPoint": { - "x": 1205.152125, - "y": -2638.660617 - } - } - }, - { - "id": "cec3e759-7394-59fb-b051-dc90780569f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.152125, - "y": -2638.660617 - }, - "endPoint": { - "x": 1204.853459, - "y": -2638.674986 - } - } - }, - { - "id": "d83a1921-bc38-5756-80a5-c84a2fcf0192", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.853459, - "y": -2638.674986 - }, - "endPoint": { - "x": 1204.647953, - "y": -2638.691667 - } - } - }, - { - "id": "f38e6dfd-624a-5861-8e3b-87e6d621774a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.647953, - "y": -2638.691667 - }, - "endPoint": { - "x": 1204.382632, - "y": -2638.610519 - } - } - }, - { - "id": "244b9c31-c70c-5e91-a53a-06607cb4e61a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.382632, - "y": -2638.610519 - }, - "endPoint": { - "x": 1204.220217, - "y": -2638.538839 - } - } - }, - { - "id": "88c356ed-f6c3-5d70-805b-ab4039901752", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.220217, - "y": -2638.538839 - }, - "endPoint": { - "x": 1204.215395, - "y": -2638.467215 - } - } - }, - { - "id": "c4af20d0-6c4c-53d7-b1f9-0434d26ad9f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.215395, - "y": -2638.467215 - }, - "endPoint": { - "x": 1204.231811, - "y": -2638.413263 - } - } - } - ] - }, - { - "id": "226844ed-6bb2-5eef-bf65-05d0f7813e7b", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "8e5b9d1d-0b81-54eb-8251-951f8c6eb23b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.323535, - "y": -2640.003199 - }, - "endPoint": { - "x": 1204.545662, - "y": -2640.010741 - } - } - }, - { - "id": "79027088-6211-5365-9722-c71e92ac8e59", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.545662, - "y": -2640.010741 - }, - "endPoint": { - "x": 1204.669909, - "y": -2639.965598 - } - } - }, - { - "id": "0621c14d-666d-5023-9927-486d8f0fb9d6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.669909, - "y": -2639.965598 - }, - "endPoint": { - "x": 1204.790361, - "y": -2639.897882 - } - } - }, - { - "id": "798f9449-03f9-5c2b-9ded-f1bef78fd756", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.790361, - "y": -2639.897882 - }, - "endPoint": { - "x": 1205.076612, - "y": -2639.864025 - } - } - }, - { - "id": "3c1f0d24-fccf-5b46-8f39-cebb52ff9320", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.076612, - "y": -2639.864025 - }, - "endPoint": { - "x": 1205.253493, - "y": -2639.894084 - } - } - }, - { - "id": "8599f2e1-b0eb-5b71-8dc7-3c363441787d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.253493, - "y": -2639.894084 - }, - "endPoint": { - "x": 1205.407905, - "y": -2639.98817 - } - } - }, - { - "id": "9461cfb0-b1a5-5735-ae26-10cdcee3de03", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.407905, - "y": -2639.98817 - }, - "endPoint": { - "x": 1205.539745, - "y": -2640.025771 - } - } - }, - { - "id": "4733fc7a-ae1f-5b0c-981b-5361244b93a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.539745, - "y": -2640.025771 - }, - "endPoint": { - "x": 1205.528356, - "y": -2640.13863 - } - } - }, - { - "id": "d75236d4-4fd1-52d1-bd5a-247ddeb4e993", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.528356, - "y": -2640.13863 - }, - "endPoint": { - "x": 1205.532152, - "y": -2640.259031 - } - } - }, - { - "id": "7084b803-8d24-506d-a27c-be15fb162fe9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.532152, - "y": -2640.259031 - }, - "endPoint": { - "x": 1205.483213, - "y": -2640.360605 - } - } - }, - { - "id": "743e3671-849c-57a9-bc37-f2fb7eeffd5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.483213, - "y": -2640.360605 - }, - "endPoint": { - "x": 1205.341113, - "y": -2640.409877 - } - } - }, - { - "id": "6861b7ef-e6e9-53ca-a51b-2bd8e039cb3b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.341113, - "y": -2640.409877 - }, - "endPoint": { - "x": 1204.858076, - "y": -2640.399197 - } - } - }, - { - "id": "55e43b96-7216-5cc4-9df8-89636f25ece2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.858076, - "y": -2640.399197 - }, - "endPoint": { - "x": 1204.552536, - "y": -2640.388296 - } - } - }, - { - "id": "acedc3f6-5388-565d-9636-ca51a61c5456", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.552536, - "y": -2640.388296 - }, - "endPoint": { - "x": 1204.35965, - "y": -2640.368312 - } - } - }, - { - "id": "5ace0f2e-92f7-5d51-bda7-576d5588122f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.35965, - "y": -2640.368312 - }, - "endPoint": { - "x": 1204.310607, - "y": -2640.33016 - } - } - }, - { - "id": "a27043ed-abe5-5952-a673-cb25a34dd751", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.310607, - "y": -2640.33016 - }, - "endPoint": { - "x": 1204.294191, - "y": -2640.186581 - } - } - }, - { - "id": "70916310-e31b-5f28-857c-1e79cef8df75", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.294191, - "y": -2640.186581 - }, - "endPoint": { - "x": 1204.314198, - "y": -2640.082971 - } - } - }, - { - "id": "b92f8876-e0ea-5076-8cb8-c9a060247875", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.314198, - "y": -2640.082971 - }, - "endPoint": { - "x": 1204.323535, - "y": -2640.003199 - } - } - } - ] - }, - { - "id": "cca71e0a-8e73-5eb6-a30c-9b0b7fb0be2a", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "dcc25c1d-87f1-54ba-9fce-e8faff36dfc8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.398842, - "y": -2641.9964 - }, - "endPoint": { - "x": 1204.542071, - "y": -2641.973498 - } - } - }, - { - "id": "6ef258f4-0a56-5b95-ba3a-2ff665c35d7a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.542071, - "y": -2641.973498 - }, - "endPoint": { - "x": 1204.674013, - "y": -2641.864658 - } - } - }, - { - "id": "b5ea30f5-d672-50c7-b2fc-92de49863af0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.674013, - "y": -2641.864658 - }, - "endPoint": { - "x": 1204.851715, - "y": -2641.824579 - } - } - }, - { - "id": "e1dfe90e-b5f0-5d4d-b411-90cd6108729b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.851715, - "y": -2641.824579 - }, - "endPoint": { - "x": 1205.060915, - "y": -2641.818854 - } - } - }, - { - "id": "d3a2dc49-0970-566e-9348-c26f4e10dce9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.060915, - "y": -2641.818854 - }, - "endPoint": { - "x": 1205.301715, - "y": -2641.850344 - } - } - }, - { - "id": "efda8d83-0700-5e3e-b341-09576e91b99d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.301715, - "y": -2641.850344 - }, - "endPoint": { - "x": 1205.410573, - "y": -2641.91905 - } - } - }, - { - "id": "df5ae433-2c2e-5d63-ba06-708adaf7e852", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.410573, - "y": -2641.91905 - }, - "endPoint": { - "x": 1205.508042, - "y": -2641.993537 - } - } - }, - { - "id": "21b0bcfc-070d-5154-ab2c-c39d4d0b772d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.508042, - "y": -2641.993537 - }, - "endPoint": { - "x": 1205.57114, - "y": -2642.065162 - } - } - }, - { - "id": "cbdc4f27-ab28-5a7b-9532-b638643a92e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.57114, - "y": -2642.065162 - }, - "endPoint": { - "x": 1205.631263, - "y": -2642.136731 - } - } - }, - { - "id": "47fbfb56-d122-55b3-87db-c16ea3e37287", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.631263, - "y": -2642.136731 - }, - "endPoint": { - "x": 1205.508042, - "y": -2642.302881 - } - } - }, - { - "id": "e06eec7d-0ae0-5a13-a840-478cbfa512d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.508042, - "y": -2642.302881 - }, - "endPoint": { - "x": 1205.333213, - "y": -2642.351548 - } - } - }, - { - "id": "3eee2a80-b04c-5919-83a7-87d24882a4ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.333213, - "y": -2642.351548 - }, - "endPoint": { - "x": 1205.255853, - "y": -2642.405941 - } - } - }, - { - "id": "6b29667d-9ec5-50aa-9f7c-f21362719fb8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.255853, - "y": -2642.405941 - }, - "endPoint": { - "x": 1205.158384, - "y": -2642.471839 - } - } - }, - { - "id": "e0bee235-5650-5fe3-bdea-7190d14e571e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.158384, - "y": -2642.471839 - }, - "endPoint": { - "x": 1204.9577, - "y": -2642.460388 - } - } - }, - { - "id": "6ee9fe86-46bc-55b0-9d62-8655731a9ad3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.9577, - "y": -2642.460388 - }, - "endPoint": { - "x": 1204.745628, - "y": -2642.388764 - } - } - }, - { - "id": "27e493a7-67c4-52c8-8108-28267f09a748", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.745628, - "y": -2642.388764 - }, - "endPoint": { - "x": 1204.630922, - "y": -2642.320058 - } - } - }, - { - "id": "454954e4-79d7-5546-9e67-e848d653d304", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.630922, - "y": -2642.320058 - }, - "endPoint": { - "x": 1204.458966, - "y": -2642.196904 - } - } - }, - { - "id": "f48ce821-305c-51b2-9ccd-c8df4f996325", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.458966, - "y": -2642.196904 - }, - "endPoint": { - "x": 1204.384479, - "y": -2642.082338 - } - } - }, - { - "id": "787969fb-2e1d-5ebf-8bb7-4343abbe8b36", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.384479, - "y": -2642.082338 - }, - "endPoint": { - "x": 1204.398842, - "y": -2641.9964 - } - } - } - ] - }, - { - "id": "94f7e2e4-11b1-54b4-91c4-06ac0caa1d01", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "b6720a6c-901d-5753-b964-7278d523fb86", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.50671, - "y": -2647.611716 - }, - "endPoint": { - "x": 1199.393133, - "y": -2647.522089 - } - } - }, - { - "id": "f36015d6-98fc-52d5-9826-a3618697e98f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.393133, - "y": -2647.522089 - }, - "endPoint": { - "x": 1199.129966, - "y": -2647.510143 - } - } - }, - { - "id": "e6ecc7d7-5c44-5d49-986f-f53881ebedf0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.129966, - "y": -2647.510143 - }, - "endPoint": { - "x": 1199.010438, - "y": -2647.426462 - } - } - }, - { - "id": "7cad4abe-1cb6-5f64-949f-44fea288ecfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.010438, - "y": -2647.426462 - }, - "endPoint": { - "x": 1198.836738, - "y": -2647.106988 - } - } - }, - { - "id": "b96ab75b-971b-5761-b33e-6ce65a7edee6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.836738, - "y": -2647.106988 - }, - "endPoint": { - "x": 1198.794878, - "y": -2646.760483 - } - } - }, - { - "id": "a3b75526-36e8-5d65-ad51-e2d6d304ec51", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.794878, - "y": -2646.760483 - }, - "endPoint": { - "x": 1198.938414, - "y": -2646.282456 - } - } - }, - { - "id": "c2fc676e-cf2a-57ff-8b21-293a1ce6c643", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.938414, - "y": -2646.282456 - }, - "endPoint": { - "x": 1199.345014, - "y": -2645.894111 - } - } - }, - { - "id": "8d7fc805-82b7-54c5-90fb-c4bf8a9b864a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.345014, - "y": -2645.894111 - }, - "endPoint": { - "x": 1199.673844, - "y": -2645.613285 - } - } - }, - { - "id": "36e5d6e3-ff66-53f7-8c16-550187d29799", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.673844, - "y": -2645.613285 - }, - "endPoint": { - "x": 1200.283796, - "y": -2645.565499 - } - } - }, - { - "id": "40476cf2-df82-5a57-a5d0-9f2fbe0bd488", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.283796, - "y": -2645.565499 - }, - "endPoint": { - "x": 1200.53619, - "y": -2645.438876 - } - } - }, - { - "id": "b839933f-fe47-5acd-adf5-22b15033e06b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.53619, - "y": -2645.438876 - }, - "endPoint": { - "x": 1200.805308, - "y": -2645.444877 - } - } - }, - { - "id": "f06adf7f-037b-5a25-b334-82b3102f4174", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.805308, - "y": -2645.444877 - }, - "endPoint": { - "x": 1200.990602, - "y": -2645.534504 - } - } - }, - { - "id": "d3c1dbb8-328c-5114-a658-4d6f047e8e5c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.990602, - "y": -2645.534504 - }, - "endPoint": { - "x": 1201.451067, - "y": -2645.474716 - } - } - }, - { - "id": "7b4961ce-3094-5d8c-a759-5d174cb87b70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.451067, - "y": -2645.474716 - }, - "endPoint": { - "x": 1202.043064, - "y": -2645.438876 - } - } - }, - { - "id": "b3642805-c06a-5216-a92a-a5a84c83db69", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.043064, - "y": -2645.438876 - }, - "endPoint": { - "x": 1202.51543, - "y": -2645.516556 - } - } - }, - { - "id": "c0546118-00ee-50e2-8ef3-847c356253ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.51543, - "y": -2645.516556 - }, - "endPoint": { - "x": 1202.641011, - "y": -2645.648023 - } - } - }, - { - "id": "814f8a57-aff7-5fe7-9de3-f8e85f98cdd2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.641011, - "y": -2645.648023 - }, - "endPoint": { - "x": 1202.727297, - "y": -2645.875008 - } - } - }, - { - "id": "1fb2eb70-e5f0-58d0-8b20-2ac37143d4f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.727297, - "y": -2645.875008 - }, - "endPoint": { - "x": 1202.894739, - "y": -2645.851115 - } - } - }, - { - "id": "40b20f81-52ed-5c5b-89ae-dee22f54a6ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.894739, - "y": -2645.851115 - }, - "endPoint": { - "x": 1203.18766, - "y": -2645.516501 - } - } - }, - { - "id": "d5a9e797-fec4-5518-b139-e0c67091b144", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.18766, - "y": -2645.516501 - }, - "endPoint": { - "x": 1203.379007, - "y": -2645.396981 - } - } - }, - { - "id": "f2b79086-06f5-5227-8480-936cfb6d66da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.379007, - "y": -2645.396981 - }, - "endPoint": { - "x": 1203.516592, - "y": -2645.307354 - } - } - }, - { - "id": "ae6e96ee-1b25-58bf-8e43-54a0cfd2371f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.516592, - "y": -2645.307354 - }, - "endPoint": { - "x": 1203.899287, - "y": -2645.241676 - } - } - }, - { - "id": "552cf9ca-de11-5944-8273-c9069ed84217", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.899287, - "y": -2645.241676 - }, - "endPoint": { - "x": 1204.03677, - "y": -2645.492608 - } - } - }, - { - "id": "ea874cf3-44b9-5264-87d2-4c130e630b14", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.03677, - "y": -2645.492608 - }, - "endPoint": { - "x": 1204.108589, - "y": -2645.671861 - } - } - }, - { - "id": "fb4b0572-73c6-50c2-8c10-43b16aa4d2c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.108589, - "y": -2645.671861 - }, - "endPoint": { - "x": 1204.162351, - "y": -2645.869007 - } - } - }, - { - "id": "c55618c9-dfe6-5a61-96bb-a2a46124e59e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.162351, - "y": -2645.869007 - }, - "endPoint": { - "x": 1204.156401, - "y": -2646.2813 - } - } - }, - { - "id": "2cf9dc7a-06e2-5c96-992a-b0d045ff35a4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.156401, - "y": -2646.2813 - }, - "endPoint": { - "x": 1204.317789, - "y": -2646.227513 - } - } - }, - { - "id": "4200cd6e-6c17-51ef-b06b-ecb9b6b048a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.317789, - "y": -2646.227513 - }, - "endPoint": { - "x": 1204.473329, - "y": -2646.0841 - } - } - }, - { - "id": "cb8462f4-d919-5a4d-9bd7-426ddbadaa58", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.473329, - "y": -2646.0841 - }, - "endPoint": { - "x": 1204.527091, - "y": -2645.946687 - } - } - }, - { - "id": "df172d97-6b0f-50eb-bc0b-a84acbe8b25f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.527091, - "y": -2645.946687 - }, - "endPoint": { - "x": 1204.521141, - "y": -2645.785381 - } - } - }, - { - "id": "63509686-e67a-5594-87c2-773b80f35faf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.521141, - "y": -2645.785381 - }, - "endPoint": { - "x": 1204.389609, - "y": -2645.689754 - } - } - }, - { - "id": "08903080-4b3a-5702-8b33-f06934db16bc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.389609, - "y": -2645.689754 - }, - "endPoint": { - "x": 1204.281982, - "y": -2645.641968 - } - } - }, - { - "id": "3b56426e-c50f-564c-9ce3-ef55528ab53f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.281982, - "y": -2645.641968 - }, - "endPoint": { - "x": 1204.297269, - "y": -2645.408817 - } - } - }, - { - "id": "31d043ef-dc57-586f-a337-fd28eccb06a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.297269, - "y": -2645.408817 - }, - "endPoint": { - "x": 1204.400381, - "y": -2645.231546 - } - } - }, - { - "id": "ac4297ce-0948-5ce2-8044-2f7bbe47daa5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.400381, - "y": -2645.231546 - }, - "endPoint": { - "x": 1204.569465, - "y": -2645.206827 - } - } - }, - { - "id": "cc3dbdb6-47e1-539f-bbf2-062c7ed865c1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.569465, - "y": -2645.206827 - }, - "endPoint": { - "x": 1204.771585, - "y": -2645.219214 - } - } - }, - { - "id": "461a72f9-6d0c-5417-83c6-877bdbcd22c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.771585, - "y": -2645.219214 - }, - "endPoint": { - "x": 1205.031469, - "y": -2645.346993 - } - } - }, - { - "id": "2b97f24f-d904-5745-9995-36bb0f1dda3d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.031469, - "y": -2645.346993 - }, - "endPoint": { - "x": 1205.146995, - "y": -2645.392301 - } - } - }, - { - "id": "4e81d590-e08e-5263-94cc-f1a4f80695b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.146995, - "y": -2645.392301 - }, - "endPoint": { - "x": 1205.464642, - "y": -2645.433536 - } - } - }, - { - "id": "72a4b630-f567-5df4-85b5-d0f6abe72c77", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.464642, - "y": -2645.433536 - }, - "endPoint": { - "x": 1205.613103, - "y": -2645.52008 - } - } - }, - { - "id": "b2209bfc-fbca-5567-894c-b11513b5f75c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.613103, - "y": -2645.52008 - }, - "endPoint": { - "x": 1205.779622, - "y": -2645.672963 - } - } - }, - { - "id": "23736ba2-c3ac-52df-b5ed-3458a2f277e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.779622, - "y": -2645.672963 - }, - "endPoint": { - "x": 1206.126099, - "y": -2645.94498 - } - } - }, - { - "id": "593aa40a-4e0d-5e27-ab27-322990f5ad26", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.126099, - "y": -2645.94498 - }, - "endPoint": { - "x": 1206.406605, - "y": -2646.184021 - } - } - }, - { - "id": "baf48347-fa57-5bc7-8e8f-04fe9a234945", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.406605, - "y": -2646.184021 - }, - "endPoint": { - "x": 1206.608725, - "y": -2646.33239 - } - } - }, - { - "id": "324c908f-9069-516e-bc1e-c4f189ede1e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.608725, - "y": -2646.33239 - }, - "endPoint": { - "x": 1206.84378, - "y": -2646.629181 - } - } - }, - { - "id": "1cb7d960-1559-597e-9b3f-f1e5645665ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.84378, - "y": -2646.629181 - }, - "endPoint": { - "x": 1206.975825, - "y": -2646.806398 - } - } - }, - { - "id": "03200966-141f-532f-9653-780f745d8123", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.975825, - "y": -2646.806398 - }, - "endPoint": { - "x": 1207.263, - "y": -2647.93207 - } - } - }, - { - "id": "e8c7b70f-27ff-5689-9bfd-36069a76698b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.263, - "y": -2647.93207 - }, - "endPoint": { - "x": 1207.344258, - "y": -2648.923358 - } - } - }, - { - "id": "8ef75a49-751f-5c2a-a072-40e1bc34e559", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.344258, - "y": -2648.923358 - }, - "endPoint": { - "x": 1207.367548, - "y": -2649.418507 - } - } - }, - { - "id": "fcf97487-8d86-5941-82e6-be83ad81ca1d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.367548, - "y": -2649.418507 - }, - "endPoint": { - "x": 1207.292138, - "y": -2649.650336 - } - } - }, - { - "id": "a10e970f-3e60-5378-b03b-dcc1d94ec9b1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.292138, - "y": -2649.650336 - }, - "endPoint": { - "x": 1207.268951, - "y": -2649.870658 - } - } - }, - { - "id": "b781b5b6-b326-59f6-be8e-daffa206d797", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.268951, - "y": -2649.870658 - }, - "endPoint": { - "x": 1207.251509, - "y": -2650.137281 - } - } - }, - { - "id": "e5556be6-8a6f-5bac-b057-c5c52d0c9ddf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.251509, - "y": -2650.137281 - }, - "endPoint": { - "x": 1207.083246, - "y": -2650.554694 - } - } - }, - { - "id": "3401d87c-f0f5-51ec-8982-1acabd7866f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.083246, - "y": -2650.554694 - }, - "endPoint": { - "x": 1206.796892, - "y": -2651.262623 - } - } - }, - { - "id": "62e83939-cae0-5918-aac0-c186f3488799", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.796892, - "y": -2651.262623 - }, - "endPoint": { - "x": 1206.292104, - "y": -2651.663191 - } - } - }, - { - "id": "3489e5b5-d925-5610-a6af-b41c92dce81d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.292104, - "y": -2651.663191 - }, - "endPoint": { - "x": 1205.753664, - "y": -2651.982499 - } - } - }, - { - "id": "c18e166e-bf1b-5580-b572-d51f552e728a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.753664, - "y": -2651.982499 - }, - "endPoint": { - "x": 1205.265805, - "y": -2652.069813 - } - } - }, - { - "id": "6ce80d34-f0c3-5dac-a13c-442927649ab8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.265805, - "y": -2652.069813 - }, - "endPoint": { - "x": 1204.806982, - "y": -2652.084402 - } - } - }, - { - "id": "7c71d1ac-c133-5986-b731-0e82fc4f5b9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.806982, - "y": -2652.084402 - }, - "endPoint": { - "x": 1204.428288, - "y": -2652.142594 - } - } - }, - { - "id": "6f8dcaff-5436-5592-b164-95e8bc55bd49", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.428288, - "y": -2652.142594 - }, - "endPoint": { - "x": 1204.280751, - "y": -2652.274611 - } - } - }, - { - "id": "5e04ec94-765f-51d5-a454-eeac5214d6f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.280751, - "y": -2652.274611 - }, - "endPoint": { - "x": 1204.261462, - "y": -2652.432174 - } - } - }, - { - "id": "d7dd823b-61fe-59d7-8ed2-183733a14788", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.261462, - "y": -2652.432174 - }, - "endPoint": { - "x": 1204.322098, - "y": -2652.945379 - } - } - }, - { - "id": "ca9a5fbf-056b-54f9-94d0-0f307d7a15dd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.322098, - "y": -2652.945379 - }, - "endPoint": { - "x": 1204.348979, - "y": -2653.164932 - } - } - }, - { - "id": "ca51fbdf-7538-5397-b6c4-c52c27178c43", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.348979, - "y": -2653.164932 - }, - "endPoint": { - "x": 1204.456606, - "y": -2653.267936 - } - } - }, - { - "id": "268f4d9e-eea3-526a-82a4-bd2ee5511821", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.456606, - "y": -2653.267936 - }, - "endPoint": { - "x": 1204.505956, - "y": -2653.362022 - } - } - }, - { - "id": "53800e46-c8db-5227-89d1-01cbb5527a9a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.505956, - "y": -2653.362022 - }, - "endPoint": { - "x": 1204.514882, - "y": -2653.509895 - } - } - }, - { - "id": "7e88a261-8217-5567-b10d-5af3d1a71702", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.514882, - "y": -2653.509895 - }, - "endPoint": { - "x": 1204.37586, - "y": -2653.715959 - } - } - }, - { - "id": "a48bfcbc-a398-52fc-bdbc-84e540d61f68", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.37586, - "y": -2653.715959 - }, - "endPoint": { - "x": 1204.209957, - "y": -2653.993757 - } - } - }, - { - "id": "1a81f787-1c55-5f5c-be3a-49936789a124", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.209957, - "y": -2653.993757 - }, - "endPoint": { - "x": 1203.936531, - "y": -2654.07887 - } - } - }, - { - "id": "8ca3167a-153a-5d91-830b-d1f8120f668e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.936531, - "y": -2654.07887 - }, - "endPoint": { - "x": 1203.479144, - "y": -2654.04303 - } - } - }, - { - "id": "fd79e9f2-68b9-59c9-8c76-11fafde09200", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.479144, - "y": -2654.04303 - }, - "endPoint": { - "x": 1203.241524, - "y": -2653.819019 - } - } - }, - { - "id": "be909ad6-eaa6-5889-98a5-9e428b5fd509", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.241524, - "y": -2653.819019 - }, - "endPoint": { - "x": 1203.04874, - "y": -2653.581574 - } - } - }, - { - "id": "e92f72aa-463f-5c03-bd17-ea9c09891529", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.04874, - "y": -2653.581574 - }, - "endPoint": { - "x": 1202.981538, - "y": -2653.397862 - } - } - }, - { - "id": "50cca4b7-d185-59a7-a4ca-d99911444978", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.981538, - "y": -2653.397862 - }, - "endPoint": { - "x": 1203.075621, - "y": -2652.999166 - } - } - }, - { - "id": "05139de0-01cf-504e-9feb-7e7a4f6d1a3e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.075621, - "y": -2652.999166 - }, - "endPoint": { - "x": 1203.138412, - "y": -2652.694502 - } - } - }, - { - "id": "be1635c5-6738-55f4-9e0b-b20c8fe009fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.138412, - "y": -2652.694502 - }, - "endPoint": { - "x": 1203.205717, - "y": -2652.457058 - } - } - }, - { - "id": "23debdbf-16ac-5499-802c-da2c28546ed2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.205717, - "y": -2652.457058 - }, - "endPoint": { - "x": 1203.120457, - "y": -2652.237505 - } - } - }, - { - "id": "26ada782-14d9-5fcc-8b8a-894df7a03ade", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.120457, - "y": -2652.237505 - }, - "endPoint": { - "x": 1203.0353, - "y": -2652.152393 - } - } - }, - { - "id": "57123ab7-7d71-59d7-9da5-6fba310d5df8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.0353, - "y": -2652.152393 - }, - "endPoint": { - "x": 1202.98595, - "y": -2652.121068 - } - } - }, - { - "id": "0cd917a3-ac59-56c3-b5c2-15ad6c3ec1e9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.98595, - "y": -2652.121068 - }, - "endPoint": { - "x": 1202.716935, - "y": -2652.129987 - } - } - }, - { - "id": "2282e446-5d06-58aa-b393-f01705fa4d7b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.716935, - "y": -2652.129987 - }, - "endPoint": { - "x": 1202.533077, - "y": -2652.10758 - } - } - }, - { - "id": "24080192-79dc-5bdb-b1dd-89b209ab130b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.533077, - "y": -2652.10758 - }, - "endPoint": { - "x": 1202.479315, - "y": -2652.192747 - } - } - }, - { - "id": "4dbd67dd-0d5b-575b-a174-db674e64d829", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.479315, - "y": -2652.192747 - }, - "endPoint": { - "x": 1202.421039, - "y": -2652.210639 - } - } - }, - { - "id": "1b0264a0-e26a-55c1-8364-7f17c790a59f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.421039, - "y": -2652.210639 - }, - "endPoint": { - "x": 1202.100724, - "y": -2652.272024 - } - } - }, - { - "id": "987486f4-5e47-5bf3-b5bc-06858dbd5b56", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.100724, - "y": -2652.272024 - }, - "endPoint": { - "x": 1201.907941, - "y": -2652.379543 - } - } - }, - { - "id": "a9fbf6d3-5e33-56e6-9e8a-ab7f70c6531f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.907941, - "y": -2652.379543 - }, - "endPoint": { - "x": 1201.49539, - "y": -2652.415382 - } - } - }, - { - "id": "1b32642c-73bd-599c-9b61-de189b4b2692", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.49539, - "y": -2652.415382 - }, - "endPoint": { - "x": 1200.988755, - "y": -2652.410923 - } - } - }, - { - "id": "33a9c38a-40d2-59cd-bb31-e57b5152718a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.988755, - "y": -2652.410923 - }, - "endPoint": { - "x": 1200.863276, - "y": -2652.312323 - } - } - }, - { - "id": "65a71475-27a8-5d8c-aeb2-5bd29a39b29c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.863276, - "y": -2652.312323 - }, - "endPoint": { - "x": 1200.603187, - "y": -2652.245158 - } - } - }, - { - "id": "a2070290-7c54-5c58-991f-50d45cc7db4f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.603187, - "y": -2652.245158 - }, - "endPoint": { - "x": 1199.911464, - "y": -2652.236239 - } - } - }, - { - "id": "22319c34-e1b6-5575-9b3f-ebe369ba5389", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.911464, - "y": -2652.236239 - }, - "endPoint": { - "x": 1199.799836, - "y": -2652.241579 - } - } - }, - { - "id": "a06c6272-fd73-56fb-9bc1-f12f863c821b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.799836, - "y": -2652.241579 - }, - "endPoint": { - "x": 1199.534925, - "y": -2652.014705 - } - } - }, - { - "id": "0dc3aac6-34b5-5518-a6c4-537064f1c464", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.534925, - "y": -2652.014705 - }, - "endPoint": { - "x": 1199.238619, - "y": -2651.460264 - } - } - }, - { - "id": "e588c5bf-76fd-5f6f-8e04-f8d50f70f1f7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.238619, - "y": -2651.460264 - }, - "endPoint": { - "x": 1199.093544, - "y": -2650.993964 - } - } - }, - { - "id": "110119b8-9710-513b-a669-fc492273bb4c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.093544, - "y": -2650.993964 - }, - "endPoint": { - "x": 1198.909378, - "y": -2650.195748 - } - } - }, - { - "id": "c0cec23e-af8b-51e0-aa76-742b4bdf7593", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.909378, - "y": -2650.195748 - }, - "endPoint": { - "x": 1199.07959, - "y": -2648.815839 - } - } - }, - { - "id": "8ff81226-ffd2-5327-af7e-83e3a70d8e62", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.07959, - "y": -2648.815839 - }, - "endPoint": { - "x": 1199.331882, - "y": -2648.110167 - } - } - }, - { - "id": "e7564161-e629-53be-8f43-dc5b7f2b959b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.331882, - "y": -2648.110167 - }, - "endPoint": { - "x": 1199.48342, - "y": -2647.886211 - } - } - }, - { - "id": "4d954754-3db8-5fc1-91c7-e5df23aec0a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.48342, - "y": -2647.886211 - }, - "endPoint": { - "x": 1199.50671, - "y": -2647.611716 - } - } - } - ] - }, - { - "id": "b4ac8021-3110-581d-9047-e87e4530d4d6", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "b3a73dd9-3f13-5503-abaf-587454f9c36e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.175279, - "y": -2648.994817 - }, - "endPoint": { - "x": 1204.152605, - "y": -2649.75323 - } - } - }, - { - "id": "6b56e212-b7fc-507a-8896-786b7dd20369", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.152605, - "y": -2649.75323 - }, - "endPoint": { - "x": 1204.323637, - "y": -2650.147521 - } - } - }, - { - "id": "18a2503e-bec2-5141-b6b0-1540ed0a86b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.323637, - "y": -2650.147521 - }, - "endPoint": { - "x": 1204.442037, - "y": -2650.200097 - } - } - }, - { - "id": "ce664573-804b-5498-a7e8-af956947d5e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.442037, - "y": -2650.200097 - }, - "endPoint": { - "x": 1204.678733, - "y": -2650.489291 - } - } - }, - { - "id": "088a40e3-4853-5f49-a290-0bf828f4ec89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.678733, - "y": -2650.489291 - }, - "endPoint": { - "x": 1205.139198, - "y": -2650.489291 - } - } - }, - { - "id": "8e25c29e-e04c-5b44-bc5a-f9913c3c75b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.139198, - "y": -2650.489291 - }, - "endPoint": { - "x": 1205.481263, - "y": -2650.173836 - } - } - }, - { - "id": "af321000-69cc-5e1d-9cc2-407139ac989c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.481263, - "y": -2650.173836 - }, - "endPoint": { - "x": 1205.665429, - "y": -2649.77949 - } - } - }, - { - "id": "c78d0717-09d6-5f01-bcf3-70510f488c7d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.665429, - "y": -2649.77949 - }, - "endPoint": { - "x": 1205.751715, - "y": -2649.579537 - } - } - }, - { - "id": "913bd30c-4463-5905-bd22-ef98034c2fc6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.751715, - "y": -2649.579537 - }, - "endPoint": { - "x": 1205.81153, - "y": -2648.891758 - } - } - }, - { - "id": "c0b2c0de-c36d-5d2f-b423-431362b060f4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.81153, - "y": -2648.891758 - }, - "endPoint": { - "x": 1205.766694, - "y": -2648.29366 - } - } - }, - { - "id": "a00225df-ea64-5235-9675-ad1a0c64c240", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.766694, - "y": -2648.29366 - }, - "endPoint": { - "x": 1205.676817, - "y": -2648.02456 - } - } - }, - { - "id": "ffa65443-82cd-57bd-b383-2e46d929c89e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.676817, - "y": -2648.02456 - }, - "endPoint": { - "x": 1205.497269, - "y": -2647.725511 - } - } - }, - { - "id": "2849f656-fd08-52ea-bc45-c85f2f4fd6ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.497269, - "y": -2647.725511 - }, - "endPoint": { - "x": 1205.542207, - "y": -2647.48625 - } - } - }, - { - "id": "4d055bc8-40d9-5fc6-8638-7d291225a15a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.542207, - "y": -2647.48625 - }, - "endPoint": { - "x": 1205.287864, - "y": -2647.276937 - } - } - }, - { - "id": "86626802-cae0-530f-8c1d-5e9b206fc3cb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.287864, - "y": -2647.276937 - }, - "endPoint": { - "x": 1204.928664, - "y": -2646.977888 - } - } - }, - { - "id": "112fafcf-464a-54ec-8abf-85f359cd393d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.928664, - "y": -2646.977888 - }, - "endPoint": { - "x": 1204.345081, - "y": -2647.097519 - } - } - }, - { - "id": "aa89288b-c165-5300-8a06-88c837428c15", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.345081, - "y": -2647.097519 - }, - "endPoint": { - "x": 1204.22545, - "y": -2647.516199 - } - } - }, - { - "id": "fe69ec84-f2a3-5aed-b4da-598b27ea9920", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.22545, - "y": -2647.516199 - }, - "endPoint": { - "x": 1204.21047, - "y": -2648.233872 - } - } - }, - { - "id": "71e75e41-45da-53c5-8db9-0ab565ea1298", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.21047, - "y": -2648.233872 - }, - "endPoint": { - "x": 1204.175279, - "y": -2648.994817 - } - } - } - ] - }, - { - "id": "90aa4933-6b0c-5dbe-9b6c-eff2bb1e8927", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "77dc96f3-2dfe-5445-859b-cc719e8aac8e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.122955, - "y": -2647.578409 - }, - "endPoint": { - "x": 1200.866867, - "y": -2647.672495 - } - } - }, - { - "id": "9eb20abc-9931-5818-b31e-2ab664a84f89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.866867, - "y": -2647.672495 - }, - "endPoint": { - "x": 1200.685985, - "y": -2647.830607 - } - } - }, - { - "id": "d3ae5e1b-23e3-54ea-891c-eed372aefe89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.685985, - "y": -2647.830607 - }, - "endPoint": { - "x": 1200.441183, - "y": -2647.951064 - } - } - }, - { - "id": "19cc524a-96de-5159-bef2-182910bda3f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.441183, - "y": -2647.951064 - }, - "endPoint": { - "x": 1200.249015, - "y": -2648.222036 - } - } - }, - { - "id": "df96c9fc-7c64-5400-ab1b-d3ffa84e6634", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.249015, - "y": -2648.222036 - }, - "endPoint": { - "x": 1200.203872, - "y": -2648.429091 - } - } - }, - { - "id": "5031904f-e728-52f6-b592-dabb76f32312", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.203872, - "y": -2648.429091 - }, - "endPoint": { - "x": 1199.992825, - "y": -2648.688832 - } - } - }, - { - "id": "f5902136-e673-57f3-8250-29473c8594ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.992825, - "y": -2648.688832 - }, - "endPoint": { - "x": 1199.940089, - "y": -2648.775375 - } - } - }, - { - "id": "5b50f445-bb0a-5910-9cb8-12dcf6272c41", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.940089, - "y": -2648.775375 - }, - "endPoint": { - "x": 1199.88684, - "y": -2649.12744 - } - } - }, - { - "id": "b5b4e6c3-2068-5bf3-bf9a-8a58b4b09a0c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.88684, - "y": -2649.12744 - }, - "endPoint": { - "x": 1199.917004, - "y": -2649.477469 - } - } - }, - { - "id": "58a7d6c0-953e-5dc4-a9b4-e85a681e9f31", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.917004, - "y": -2649.477469 - }, - "endPoint": { - "x": 1199.973537, - "y": -2649.744752 - } - } - }, - { - "id": "43829496-b9d5-539f-9a5f-917e9bbc169f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.973537, - "y": -2649.744752 - }, - "endPoint": { - "x": 1199.954658, - "y": -2649.917894 - } - } - }, - { - "id": "f4913382-a339-5832-8488-d32858e063ce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.954658, - "y": -2649.917894 - }, - "endPoint": { - "x": 1200.094091, - "y": -2650.072208 - } - } - }, - { - "id": "ec4d3223-22d4-5a6c-9747-451451dab90d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.094091, - "y": -2650.072208 - }, - "endPoint": { - "x": 1200.35777, - "y": -2650.29633 - } - } - }, - { - "id": "b6db08d4-41cf-5676-92f0-2e3a62996d21", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.35777, - "y": -2650.29633 - }, - "endPoint": { - "x": 1200.892722, - "y": -2650.458186 - } - } - }, - { - "id": "f4c7f2cc-4097-5e36-98d7-a1cb831d552d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.892722, - "y": -2650.458186 - }, - "endPoint": { - "x": 1201.393714, - "y": -2650.522213 - } - } - }, - { - "id": "aa12c32a-0a53-50c1-87f5-375ff6fcd429", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.393714, - "y": -2650.522213 - }, - "endPoint": { - "x": 1201.838173, - "y": -2650.428072 - } - } - }, - { - "id": "9ca1fc75-5f09-5b59-ba0d-b937cc9590d1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.838173, - "y": -2650.428072 - }, - "endPoint": { - "x": 1202.212557, - "y": -2650.390746 - } - } - }, - { - "id": "7401085c-c068-5655-90e6-358ddfabb41d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.212557, - "y": -2650.390746 - }, - "endPoint": { - "x": 1202.461155, - "y": -2650.225091 - } - } - }, - { - "id": "2cc0c06f-4f44-5913-a82a-c7f3c5ce8117", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.461155, - "y": -2650.225091 - }, - "endPoint": { - "x": 1202.657017, - "y": -2650.078319 - } - } - }, - { - "id": "1b3844cf-15b0-53cb-81c4-2ad29cda0279", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.657017, - "y": -2650.078319 - }, - "endPoint": { - "x": 1202.901921, - "y": -2650.104635 - } - } - }, - { - "id": "31a74951-a7d7-565d-80ec-fcae31cd7c1b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.901921, - "y": -2650.104635 - }, - "endPoint": { - "x": 1203.218337, - "y": -2650.082063 - } - } - }, - { - "id": "199f2826-729e-5e8b-9a87-8ee4b123630f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.218337, - "y": -2650.082063 - }, - "endPoint": { - "x": 1203.338891, - "y": -2649.886349 - } - } - }, - { - "id": "e0f68149-5ee1-5ed5-9998-e3d7149826d4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.338891, - "y": -2649.886349 - }, - "endPoint": { - "x": 1203.387831, - "y": -2649.769636 - } - } - }, - { - "id": "0be6dd49-f4a1-536c-8856-d585130f682a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.387831, - "y": -2649.769636 - }, - "endPoint": { - "x": 1203.395936, - "y": -2649.691295 - } - } - }, - { - "id": "f5db51ba-de02-5327-9352-5cc58810ba9b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.395936, - "y": -2649.691295 - }, - "endPoint": { - "x": 1203.249117, - "y": -2649.544578 - } - } - }, - { - "id": "75a7de6c-8482-59c2-a6ee-629ebd3a903d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.249117, - "y": -2649.544578 - }, - "endPoint": { - "x": 1203.258863, - "y": -2648.859992 - } - } - }, - { - "id": "1535eff0-0b28-52c7-81d6-1fc75360ee16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.258863, - "y": -2648.859992 - }, - "endPoint": { - "x": 1203.209924, - "y": -2647.969947 - } - } - }, - { - "id": "80a7e7f7-ec8b-593c-a268-7fb028254b88", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.209924, - "y": -2647.969947 - }, - "endPoint": { - "x": 1203.072954, - "y": -2647.627681 - } - } - }, - { - "id": "7c97f1f9-3d6b-5402-976f-8b43ae7130c6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.072954, - "y": -2647.627681 - }, - "endPoint": { - "x": 1202.994568, - "y": -2647.471165 - } - } - }, - { - "id": "50f301b5-2504-5d67-9a79-e021abe5c380", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.994568, - "y": -2647.471165 - }, - "endPoint": { - "x": 1202.887249, - "y": -2647.441106 - } - } - }, - { - "id": "6f71da54-1e48-56e6-af8d-1879706a07b7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.887249, - "y": -2647.441106 - }, - "endPoint": { - "x": 1202.752947, - "y": -2647.417543 - } - } - }, - { - "id": "ba5130c2-cf79-5844-bd8a-c0f6555565a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.752947, - "y": -2647.417543 - }, - "endPoint": { - "x": 1202.571654, - "y": -2647.481075 - } - } - }, - { - "id": "342d52c1-74c3-5981-858b-73137c6b72ad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.571654, - "y": -2647.481075 - }, - "endPoint": { - "x": 1202.395081, - "y": -2647.575216 - } - } - }, - { - "id": "5b837fd5-6473-535f-8c46-61187d8334df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.395081, - "y": -2647.575216 - }, - "endPoint": { - "x": 1201.804829, - "y": -2647.597237 - } - } - }, - { - "id": "4c4ab4d5-acf6-555f-bb0b-0bf17d356805", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.804829, - "y": -2647.597237 - }, - "endPoint": { - "x": 1201.122955, - "y": -2647.578409 - } - } - } - ] - }, - { - "id": "a8da197a-b3be-5c1c-b7e3-e5a656aa1efc", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "529d2bd4-636b-569b-9881-3cd6b3a37935", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.50671, - "y": -2647.611716 - }, - "endPoint": { - "x": 1199.393133, - "y": -2647.522089 - } - } - }, - { - "id": "ffd5eb3b-df24-59b2-a869-fe0a5109c906", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.393133, - "y": -2647.522089 - }, - "endPoint": { - "x": 1199.129966, - "y": -2647.510143 - } - } - }, - { - "id": "028d8842-36d3-5c5e-84f7-1416efd0ce87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.129966, - "y": -2647.510143 - }, - "endPoint": { - "x": 1199.010438, - "y": -2647.426462 - } - } - }, - { - "id": "3f504773-077b-54e3-8efc-653a5b1d3e27", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.010438, - "y": -2647.426462 - }, - "endPoint": { - "x": 1198.836738, - "y": -2647.106988 - } - } - }, - { - "id": "bd276dd0-af94-58f6-9cd0-881fc0bc3c3f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.836738, - "y": -2647.106988 - }, - "endPoint": { - "x": 1198.794878, - "y": -2646.760483 - } - } - }, - { - "id": "feec16ce-dd76-5cf2-9b04-60388e6bfd38", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.794878, - "y": -2646.760483 - }, - "endPoint": { - "x": 1198.938414, - "y": -2646.282456 - } - } - }, - { - "id": "664e58e0-790f-5bcd-8687-73d94e0fbc20", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.938414, - "y": -2646.282456 - }, - "endPoint": { - "x": 1199.345014, - "y": -2645.894111 - } - } - }, - { - "id": "cc5712ed-25b7-552f-98c9-c3513e67f89f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.345014, - "y": -2645.894111 - }, - "endPoint": { - "x": 1199.673844, - "y": -2645.613285 - } - } - }, - { - "id": "2afa90bc-e873-5696-babc-2825e1af777b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.673844, - "y": -2645.613285 - }, - "endPoint": { - "x": 1200.283796, - "y": -2645.565499 - } - } - }, - { - "id": "d5b8fd03-dc33-5ddb-82c4-535150912cfd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.283796, - "y": -2645.565499 - }, - "endPoint": { - "x": 1200.53619, - "y": -2645.438876 - } - } - }, - { - "id": "cb588c91-6e1c-5c86-bcdf-0004a9440f2b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.53619, - "y": -2645.438876 - }, - "endPoint": { - "x": 1200.805308, - "y": -2645.444877 - } - } - }, - { - "id": "824c3cf5-ab57-5980-8386-bbade72361cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.805308, - "y": -2645.444877 - }, - "endPoint": { - "x": 1200.990602, - "y": -2645.534504 - } - } - }, - { - "id": "59df469d-7280-5103-b74b-053b205457f0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.990602, - "y": -2645.534504 - }, - "endPoint": { - "x": 1201.451067, - "y": -2645.474716 - } - } - }, - { - "id": "3e3504ff-28c4-539e-bfc8-1675f964030f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.451067, - "y": -2645.474716 - }, - "endPoint": { - "x": 1202.043064, - "y": -2645.438876 - } - } - }, - { - "id": "8b53f037-b571-5c21-aa50-003af19ec76b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.043064, - "y": -2645.438876 - }, - "endPoint": { - "x": 1202.51543, - "y": -2645.516556 - } - } - }, - { - "id": "537e3886-4625-50fa-85be-6db4ee20cc86", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.51543, - "y": -2645.516556 - }, - "endPoint": { - "x": 1202.641011, - "y": -2645.648023 - } - } - }, - { - "id": "7938e87d-c0d7-5678-b953-953194b60bc4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.641011, - "y": -2645.648023 - }, - "endPoint": { - "x": 1202.727297, - "y": -2645.875008 - } - } - }, - { - "id": "ae6cd7ab-3742-5d03-be4b-d7140076eaf7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.727297, - "y": -2645.875008 - }, - "endPoint": { - "x": 1202.894739, - "y": -2645.851115 - } - } - }, - { - "id": "17de029c-7077-5c3e-b7c0-5b74bd5e3401", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.894739, - "y": -2645.851115 - }, - "endPoint": { - "x": 1203.18766, - "y": -2645.516501 - } - } - }, - { - "id": "361a4aea-4795-53f2-b97a-605fe1431c51", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.18766, - "y": -2645.516501 - }, - "endPoint": { - "x": 1203.379007, - "y": -2645.396981 - } - } - }, - { - "id": "999c79c4-9d85-568e-81fe-74d872d53128", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.379007, - "y": -2645.396981 - }, - "endPoint": { - "x": 1203.516592, - "y": -2645.307354 - } - } - }, - { - "id": "7df2ab99-3a68-5e6f-b6ab-a88a222a7ae6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.516592, - "y": -2645.307354 - }, - "endPoint": { - "x": 1203.899287, - "y": -2645.241676 - } - } - }, - { - "id": "1364de8c-fe67-5bf2-b446-713f44a18c98", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.899287, - "y": -2645.241676 - }, - "endPoint": { - "x": 1204.03677, - "y": -2645.492608 - } - } - }, - { - "id": "ff09aa61-917a-572b-a1a7-4d3280a1dcf2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.03677, - "y": -2645.492608 - }, - "endPoint": { - "x": 1204.108589, - "y": -2645.671861 - } - } - }, - { - "id": "69dc6a48-1cdc-526f-8624-05fac4c7f345", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.108589, - "y": -2645.671861 - }, - "endPoint": { - "x": 1204.162351, - "y": -2645.869007 - } - } - }, - { - "id": "1487dcb6-198f-5850-8eaa-fcfc0be7d1e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.162351, - "y": -2645.869007 - }, - "endPoint": { - "x": 1204.156401, - "y": -2646.2813 - } - } - }, - { - "id": "3284aa13-35f5-560a-92bb-d71cbf4c3434", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.156401, - "y": -2646.2813 - }, - "endPoint": { - "x": 1204.317789, - "y": -2646.227513 - } - } - }, - { - "id": "dc755113-985d-5d07-b203-c220460d30ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.317789, - "y": -2646.227513 - }, - "endPoint": { - "x": 1204.473329, - "y": -2646.0841 - } - } - }, - { - "id": "b5f46952-f6f8-5d62-bb95-c01683acb48c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.473329, - "y": -2646.0841 - }, - "endPoint": { - "x": 1204.527091, - "y": -2645.946687 - } - } - }, - { - "id": "5deb845e-d72a-5b79-b3ca-09d0928ae7d8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.527091, - "y": -2645.946687 - }, - "endPoint": { - "x": 1204.521141, - "y": -2645.785381 - } - } - }, - { - "id": "2f1fc294-8e8c-5ff4-8865-877b4e3535c7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.521141, - "y": -2645.785381 - }, - "endPoint": { - "x": 1204.389609, - "y": -2645.689754 - } - } - }, - { - "id": "cebfe9a3-6719-532e-acda-4697ac765374", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.389609, - "y": -2645.689754 - }, - "endPoint": { - "x": 1204.281982, - "y": -2645.641968 - } - } - }, - { - "id": "af2b11f8-016e-5d98-afad-06224dd6e7a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.281982, - "y": -2645.641968 - }, - "endPoint": { - "x": 1204.297269, - "y": -2645.408817 - } - } - }, - { - "id": "11449831-2c37-50a9-b1d5-4ee5680fa6fa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.297269, - "y": -2645.408817 - }, - "endPoint": { - "x": 1204.400381, - "y": -2645.231546 - } - } - }, - { - "id": "07f68c3f-7ace-5fdc-a23d-1f9066e79a00", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.400381, - "y": -2645.231546 - }, - "endPoint": { - "x": 1204.569465, - "y": -2645.206827 - } - } - }, - { - "id": "62c720ac-79cd-598e-8234-e4bacca29f9c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.569465, - "y": -2645.206827 - }, - "endPoint": { - "x": 1204.771585, - "y": -2645.219214 - } - } - }, - { - "id": "0d97fbbd-fd0c-51b0-b134-edce30a4a600", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.771585, - "y": -2645.219214 - }, - "endPoint": { - "x": 1205.031469, - "y": -2645.346993 - } - } - }, - { - "id": "07e1fead-b3cc-5f55-9e44-1069e4f1af64", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.031469, - "y": -2645.346993 - }, - "endPoint": { - "x": 1205.146995, - "y": -2645.392301 - } - } - }, - { - "id": "9e23f241-bf6c-5acd-8d50-0771f0b1cb49", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.146995, - "y": -2645.392301 - }, - "endPoint": { - "x": 1205.464642, - "y": -2645.433536 - } - } - }, - { - "id": "8d0aadce-76a2-5f42-8e66-a38d553ed548", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.464642, - "y": -2645.433536 - }, - "endPoint": { - "x": 1205.613103, - "y": -2645.52008 - } - } - }, - { - "id": "c63624ff-7869-5bb3-9b20-130cc1496875", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.613103, - "y": -2645.52008 - }, - "endPoint": { - "x": 1205.779622, - "y": -2645.672963 - } - } - }, - { - "id": "c0c912f5-95fd-5c1d-b215-91080d1f0446", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.779622, - "y": -2645.672963 - }, - "endPoint": { - "x": 1206.126099, - "y": -2645.94498 - } - } - }, - { - "id": "5bf24404-f1b4-55f6-a402-7397fc6aa4ff", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.126099, - "y": -2645.94498 - }, - "endPoint": { - "x": 1206.406605, - "y": -2646.184021 - } - } - }, - { - "id": "d1ab225c-2a97-5aff-bb17-42dea7c10568", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.406605, - "y": -2646.184021 - }, - "endPoint": { - "x": 1206.608725, - "y": -2646.33239 - } - } - }, - { - "id": "dfad6efd-6520-5b72-a63d-c2bed1eb7662", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.608725, - "y": -2646.33239 - }, - "endPoint": { - "x": 1206.84378, - "y": -2646.629181 - } - } - }, - { - "id": "d8a50804-4861-5c02-a3fd-f0adc647bafd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.84378, - "y": -2646.629181 - }, - "endPoint": { - "x": 1206.975825, - "y": -2646.806398 - } - } - }, - { - "id": "d7ac6889-535f-585d-8140-1d1b2d3a4fce", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.975825, - "y": -2646.806398 - }, - "endPoint": { - "x": 1207.263, - "y": -2647.93207 - } - } - }, - { - "id": "58bcf6ef-1c42-5f5e-9c8c-7b578884a1e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.263, - "y": -2647.93207 - }, - "endPoint": { - "x": 1207.344258, - "y": -2648.923358 - } - } - }, - { - "id": "a1533f3d-5cdf-5aaf-8c21-db8ce4171c35", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.344258, - "y": -2648.923358 - }, - "endPoint": { - "x": 1207.367548, - "y": -2649.418507 - } - } - }, - { - "id": "9083de6c-686e-5abe-b82d-7042afaf8cf7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.367548, - "y": -2649.418507 - }, - "endPoint": { - "x": 1207.292138, - "y": -2649.650336 - } - } - }, - { - "id": "be4da762-5adb-5dfb-a19c-0d427ca8ac45", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.292138, - "y": -2649.650336 - }, - "endPoint": { - "x": 1207.268951, - "y": -2649.870658 - } - } - }, - { - "id": "4e2c7f4b-d4a8-59b1-8902-301b1dacce40", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.268951, - "y": -2649.870658 - }, - "endPoint": { - "x": 1207.251509, - "y": -2650.137281 - } - } - }, - { - "id": "5e54a134-6acf-5ac1-88b6-31740c274637", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.251509, - "y": -2650.137281 - }, - "endPoint": { - "x": 1207.083246, - "y": -2650.554694 - } - } - }, - { - "id": "74abfbd2-fa10-54fc-9359-61a68df95c91", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.083246, - "y": -2650.554694 - }, - "endPoint": { - "x": 1206.796892, - "y": -2651.262623 - } - } - }, - { - "id": "1740dfc9-2410-5661-8f25-fb14778564f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.796892, - "y": -2651.262623 - }, - "endPoint": { - "x": 1206.292104, - "y": -2651.663191 - } - } - }, - { - "id": "8325e881-1402-5fb3-940c-50363591a3a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.292104, - "y": -2651.663191 - }, - "endPoint": { - "x": 1205.753664, - "y": -2651.982499 - } - } - }, - { - "id": "91251f68-0632-57d0-b130-9d76e675d12f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.753664, - "y": -2651.982499 - }, - "endPoint": { - "x": 1205.265805, - "y": -2652.069813 - } - } - }, - { - "id": "57b3653d-bd02-5ff1-9082-041e84c61644", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.265805, - "y": -2652.069813 - }, - "endPoint": { - "x": 1204.806982, - "y": -2652.084402 - } - } - }, - { - "id": "53624524-7219-527f-b83b-0da83eff5718", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.806982, - "y": -2652.084402 - }, - "endPoint": { - "x": 1204.428288, - "y": -2652.142594 - } - } - }, - { - "id": "b763697b-7baa-52c3-9e96-3d37702fa574", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.428288, - "y": -2652.142594 - }, - "endPoint": { - "x": 1204.280751, - "y": -2652.274611 - } - } - }, - { - "id": "c4e46311-c1c4-5469-88a5-cade37c7e948", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.280751, - "y": -2652.274611 - }, - "endPoint": { - "x": 1204.261462, - "y": -2652.432174 - } - } - }, - { - "id": "df777a32-91d4-5643-a678-d64abfa68fac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.261462, - "y": -2652.432174 - }, - "endPoint": { - "x": 1204.322098, - "y": -2652.945379 - } - } - }, - { - "id": "6db6af6d-f31a-563b-915e-6ac70a174900", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.322098, - "y": -2652.945379 - }, - "endPoint": { - "x": 1204.348979, - "y": -2653.164932 - } - } - }, - { - "id": "eb428cce-8554-5843-b03e-f026b3bb35df", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.348979, - "y": -2653.164932 - }, - "endPoint": { - "x": 1204.456606, - "y": -2653.267936 - } - } - }, - { - "id": "f6a9740c-ef1b-5a1c-9712-802635695674", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.456606, - "y": -2653.267936 - }, - "endPoint": { - "x": 1204.505956, - "y": -2653.362022 - } - } - }, - { - "id": "17bbc351-86a7-5e1b-b3a5-0417f2af3643", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.505956, - "y": -2653.362022 - }, - "endPoint": { - "x": 1204.514882, - "y": -2653.509895 - } - } - }, - { - "id": "43783809-0015-5f8c-b660-43bc13d5ec70", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.514882, - "y": -2653.509895 - }, - "endPoint": { - "x": 1204.37586, - "y": -2653.715959 - } - } - }, - { - "id": "17e933a8-212e-5b49-b144-bb7a4ca73de1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.37586, - "y": -2653.715959 - }, - "endPoint": { - "x": 1204.209957, - "y": -2653.993757 - } - } - }, - { - "id": "5bfa185e-db70-5b91-8a67-5d6a9d92313f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.209957, - "y": -2653.993757 - }, - "endPoint": { - "x": 1203.936531, - "y": -2654.07887 - } - } - }, - { - "id": "6fc70cee-b166-5313-94b4-ac4d48bbd716", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.936531, - "y": -2654.07887 - }, - "endPoint": { - "x": 1203.479144, - "y": -2654.04303 - } - } - }, - { - "id": "5b4c23ef-c08b-5eec-9d60-4fded0b9a95c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.479144, - "y": -2654.04303 - }, - "endPoint": { - "x": 1203.241524, - "y": -2653.819019 - } - } - }, - { - "id": "3235e2d4-0439-5a66-8772-5f772e08e00c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.241524, - "y": -2653.819019 - }, - "endPoint": { - "x": 1203.04874, - "y": -2653.581574 - } - } - }, - { - "id": "0a7476fb-4bc3-5167-b8a5-7bf579fb9973", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.04874, - "y": -2653.581574 - }, - "endPoint": { - "x": 1202.981538, - "y": -2653.397862 - } - } - }, - { - "id": "934b49d8-f3a6-521c-a161-1f15b57d3b84", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.981538, - "y": -2653.397862 - }, - "endPoint": { - "x": 1203.075621, - "y": -2652.999166 - } - } - }, - { - "id": "d26c1c59-e2b9-5c7f-90bc-b90e6d16c5a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.075621, - "y": -2652.999166 - }, - "endPoint": { - "x": 1203.138412, - "y": -2652.694502 - } - } - }, - { - "id": "07c1fc7d-2bc2-5633-982e-869f1a0a6344", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.138412, - "y": -2652.694502 - }, - "endPoint": { - "x": 1203.205717, - "y": -2652.457058 - } - } - }, - { - "id": "1a81bb16-2ef3-5535-944b-1a35b489b6da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.205717, - "y": -2652.457058 - }, - "endPoint": { - "x": 1203.120457, - "y": -2652.237505 - } - } - }, - { - "id": "769ccafa-f598-551b-b8ae-1cdba194c064", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.120457, - "y": -2652.237505 - }, - "endPoint": { - "x": 1203.0353, - "y": -2652.152393 - } - } - }, - { - "id": "260ba92d-3fc9-5d00-924f-b7de3256d16a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.0353, - "y": -2652.152393 - }, - "endPoint": { - "x": 1202.98595, - "y": -2652.121068 - } - } - }, - { - "id": "7023c42b-428a-523d-b11d-a7e08899693a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.98595, - "y": -2652.121068 - }, - "endPoint": { - "x": 1202.716935, - "y": -2652.129987 - } - } - }, - { - "id": "75cdbfce-3433-50fa-ac11-4aaf5486ba94", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.716935, - "y": -2652.129987 - }, - "endPoint": { - "x": 1202.533077, - "y": -2652.10758 - } - } - }, - { - "id": "c2cb3126-a29c-51dd-8857-a1e86d8a2a1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.533077, - "y": -2652.10758 - }, - "endPoint": { - "x": 1202.479315, - "y": -2652.192747 - } - } - }, - { - "id": "b5a9cc0f-15c0-52a0-8412-d4c76ec8d4b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.479315, - "y": -2652.192747 - }, - "endPoint": { - "x": 1202.421039, - "y": -2652.210639 - } - } - }, - { - "id": "88f585b7-e9a2-5c37-8534-1e461ce6a7f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.421039, - "y": -2652.210639 - }, - "endPoint": { - "x": 1202.100724, - "y": -2652.272024 - } - } - }, - { - "id": "6f80637d-7406-5d6f-9262-495aa5a80a99", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.100724, - "y": -2652.272024 - }, - "endPoint": { - "x": 1201.907941, - "y": -2652.379543 - } - } - }, - { - "id": "927766c4-0cb7-5ebf-bb76-c7fb4015cf87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.907941, - "y": -2652.379543 - }, - "endPoint": { - "x": 1201.49539, - "y": -2652.415382 - } - } - }, - { - "id": "62016852-a8ec-5e8a-a370-f0ce92ace7b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.49539, - "y": -2652.415382 - }, - "endPoint": { - "x": 1200.988755, - "y": -2652.410923 - } - } - }, - { - "id": "e77d9de3-7127-5d6b-8ae2-9892d2b2ac1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.988755, - "y": -2652.410923 - }, - "endPoint": { - "x": 1200.863276, - "y": -2652.312323 - } - } - }, - { - "id": "d3fa68c5-aa43-5310-8cb2-035a12530a7d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.863276, - "y": -2652.312323 - }, - "endPoint": { - "x": 1200.603187, - "y": -2652.245158 - } - } - }, - { - "id": "f423c864-d5e7-5826-a524-198a710a6475", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.603187, - "y": -2652.245158 - }, - "endPoint": { - "x": 1199.911464, - "y": -2652.236239 - } - } - }, - { - "id": "a2d0b9e2-2d0a-5461-a4c0-a5afe27b207f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.911464, - "y": -2652.236239 - }, - "endPoint": { - "x": 1199.799836, - "y": -2652.241579 - } - } - }, - { - "id": "30be6234-1a7f-5671-8e3f-48eca63897ec", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.799836, - "y": -2652.241579 - }, - "endPoint": { - "x": 1199.534925, - "y": -2652.014705 - } - } - }, - { - "id": "faeed09b-dc14-53da-a355-925b2d5e32e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.534925, - "y": -2652.014705 - }, - "endPoint": { - "x": 1199.238619, - "y": -2651.460264 - } - } - }, - { - "id": "1d53d25f-57ac-5c5d-b62e-a3a0cd3df6ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.238619, - "y": -2651.460264 - }, - "endPoint": { - "x": 1199.093544, - "y": -2650.993964 - } - } - }, - { - "id": "abbd7e61-e74f-5659-8359-9f1ba1df089c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.093544, - "y": -2650.993964 - }, - "endPoint": { - "x": 1198.909378, - "y": -2650.195748 - } - } - }, - { - "id": "c0baf234-b930-5206-b85f-192d046e7159", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.909378, - "y": -2650.195748 - }, - "endPoint": { - "x": 1199.07959, - "y": -2648.815839 - } - } - }, - { - "id": "18a134f8-e9ea-595e-8fbe-619a5f6424a3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.07959, - "y": -2648.815839 - }, - "endPoint": { - "x": 1199.331882, - "y": -2648.110167 - } - } - }, - { - "id": "ffbf947b-537e-541b-b547-4250425f5571", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.331882, - "y": -2648.110167 - }, - "endPoint": { - "x": 1199.48342, - "y": -2647.886211 - } - } - }, - { - "id": "b0947bd7-d966-505b-ad15-42839aa3b871", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.48342, - "y": -2647.886211 - }, - "endPoint": { - "x": 1199.50671, - "y": -2647.611716 - } - } - } - ] - }, - { - "id": "00d42d22-d1d7-5b3f-aa62-45b65d13168d", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "420402d0-61cc-528b-a3d8-d836565c7757", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.395936, - "y": -2649.691295 - }, - "endPoint": { - "x": 1203.249117, - "y": -2649.544578 - } - } - }, - { - "id": "7a2f7728-7083-55a6-9447-a6f12d77dee2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.249117, - "y": -2649.544578 - }, - "endPoint": { - "x": 1203.258863, - "y": -2648.859992 - } - } - }, - { - "id": "f5645790-fff6-5518-92f6-ffb4cf76bede", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.258863, - "y": -2648.859992 - }, - "endPoint": { - "x": 1203.209924, - "y": -2647.969947 - } - } - }, - { - "id": "046051b3-579b-5514-8f6b-6b621d945e7c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.209924, - "y": -2647.969947 - }, - "endPoint": { - "x": 1203.072954, - "y": -2647.627681 - } - } - }, - { - "id": "7c1d2a01-9942-524a-81ad-e82d6907a356", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.072954, - "y": -2647.627681 - }, - "endPoint": { - "x": 1202.994568, - "y": -2647.471165 - } - } - }, - { - "id": "9116b855-b564-55b8-af56-1ca8e9128cf8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.994568, - "y": -2647.471165 - }, - "endPoint": { - "x": 1202.887249, - "y": -2647.441106 - } - } - }, - { - "id": "5665a7cb-aae3-5890-a3b4-745aa21e930e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.887249, - "y": -2647.441106 - }, - "endPoint": { - "x": 1202.752947, - "y": -2647.417543 - } - } - }, - { - "id": "f639b7b0-c5eb-5e55-bc49-178fde8a37a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.752947, - "y": -2647.417543 - }, - "endPoint": { - "x": 1202.571654, - "y": -2647.481075 - } - } - }, - { - "id": "008e6302-b041-5a6d-bdfd-e2c2993986ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.571654, - "y": -2647.481075 - }, - "endPoint": { - "x": 1202.395081, - "y": -2647.575216 - } - } - }, - { - "id": "881a01c2-e017-519f-82ce-581adc3d5406", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.395081, - "y": -2647.575216 - }, - "endPoint": { - "x": 1201.804829, - "y": -2647.597237 - } - } - }, - { - "id": "b54b2449-4f38-5b96-86b0-412673dfd38a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.804829, - "y": -2647.597237 - }, - "endPoint": { - "x": 1201.122955, - "y": -2647.578409 - } - } - }, - { - "id": "3acfadd9-31d0-5623-8740-e37e4aa40bd7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.122955, - "y": -2647.578409 - }, - "endPoint": { - "x": 1200.866867, - "y": -2647.672495 - } - } - }, - { - "id": "0934d3e0-c3aa-5271-8ec7-5740e9e8d07e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.866867, - "y": -2647.672495 - }, - "endPoint": { - "x": 1200.685985, - "y": -2647.830607 - } - } - }, - { - "id": "5de56e64-79a3-58d3-b3a5-594fc32e3eb2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.685985, - "y": -2647.830607 - }, - "endPoint": { - "x": 1200.441183, - "y": -2647.951064 - } - } - }, - { - "id": "303c612a-7746-5a16-86de-45c6e723f74c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.441183, - "y": -2647.951064 - }, - "endPoint": { - "x": 1200.249015, - "y": -2648.222036 - } - } - }, - { - "id": "bb7626e3-2105-5f51-86f5-04a1483f79ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.249015, - "y": -2648.222036 - }, - "endPoint": { - "x": 1200.203872, - "y": -2648.429091 - } - } - }, - { - "id": "0d384dd1-0569-5873-88b1-8f31daac6076", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.203872, - "y": -2648.429091 - }, - "endPoint": { - "x": 1199.992825, - "y": -2648.688832 - } - } - }, - { - "id": "f37de061-49fd-5ff2-a523-0aa0218b25ba", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.992825, - "y": -2648.688832 - }, - "endPoint": { - "x": 1199.940089, - "y": -2648.775375 - } - } - }, - { - "id": "7d8a0876-8e0f-5610-9c64-f0ca23988276", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.940089, - "y": -2648.775375 - }, - "endPoint": { - "x": 1199.88684, - "y": -2649.12744 - } - } - }, - { - "id": "cb9869bc-b1ec-5952-a82d-fa84a7c0c92a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.88684, - "y": -2649.12744 - }, - "endPoint": { - "x": 1199.917004, - "y": -2649.477469 - } - } - }, - { - "id": "adc271f2-7e2e-5851-83d8-0addf4eebfdd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.917004, - "y": -2649.477469 - }, - "endPoint": { - "x": 1199.973537, - "y": -2649.744752 - } - } - }, - { - "id": "e7170d35-c37f-5623-86de-952977d38717", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.973537, - "y": -2649.744752 - }, - "endPoint": { - "x": 1199.954658, - "y": -2649.917894 - } - } - }, - { - "id": "5408f176-ac6a-51ad-8fe9-4c499be11603", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.954658, - "y": -2649.917894 - }, - "endPoint": { - "x": 1200.094091, - "y": -2650.072208 - } - } - }, - { - "id": "b0c54ffd-1e74-51a5-b5f9-a7f91b145640", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.094091, - "y": -2650.072208 - }, - "endPoint": { - "x": 1200.35777, - "y": -2650.29633 - } - } - }, - { - "id": "a2e781d0-d9c1-5f02-a73c-27937a323935", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.35777, - "y": -2650.29633 - }, - "endPoint": { - "x": 1200.892722, - "y": -2650.458186 - } - } - }, - { - "id": "6bcdbe30-3378-58ef-b22a-fb9080de050b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.892722, - "y": -2650.458186 - }, - "endPoint": { - "x": 1201.393714, - "y": -2650.522213 - } - } - }, - { - "id": "5098e9d8-bfc8-5a47-9143-dfe3cdd1a856", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.393714, - "y": -2650.522213 - }, - "endPoint": { - "x": 1201.838173, - "y": -2650.428072 - } - } - }, - { - "id": "99f1ddbe-4411-5510-a8e3-56e656ec7032", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.838173, - "y": -2650.428072 - }, - "endPoint": { - "x": 1202.212557, - "y": -2650.390746 - } - } - }, - { - "id": "1c84e59a-ecaa-5686-8cc6-52541b1712e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.212557, - "y": -2650.390746 - }, - "endPoint": { - "x": 1202.461155, - "y": -2650.225091 - } - } - }, - { - "id": "6852a06e-699d-59c1-ad99-7643698c52a1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.461155, - "y": -2650.225091 - }, - "endPoint": { - "x": 1202.657017, - "y": -2650.078319 - } - } - }, - { - "id": "deabcd19-68f7-573a-abc2-710721a273e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.657017, - "y": -2650.078319 - }, - "endPoint": { - "x": 1202.901921, - "y": -2650.104635 - } - } - }, - { - "id": "6dbf43d8-a5c2-5a59-a847-6d3f422564d4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.901921, - "y": -2650.104635 - }, - "endPoint": { - "x": 1203.218337, - "y": -2650.082063 - } - } - }, - { - "id": "b9b991bb-6582-525e-ac3f-6dd8406db53c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.218337, - "y": -2650.082063 - }, - "endPoint": { - "x": 1203.338891, - "y": -2649.886349 - } - } - }, - { - "id": "33b12489-8d07-53d3-a06e-c1cc3e722094", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.338891, - "y": -2649.886349 - }, - "endPoint": { - "x": 1203.387831, - "y": -2649.769636 - } - } - }, - { - "id": "f1978e2c-dbc2-5c27-a7c5-c6d03d25d821", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.387831, - "y": -2649.769636 - }, - "endPoint": { - "x": 1203.395936, - "y": -2649.691295 - } - } - } - ] - }, - { - "id": "9bd06a10-b985-57d6-879e-e5f78dd13f81", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "93d11e9a-968d-52ee-9945-745d9a282e30", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.654247, - "y": -2649.566435 - }, - "endPoint": { - "x": 1202.821278, - "y": -2649.378703 - } - } - }, - { - "id": "1a27700d-23a1-5eee-9ac1-c321ffa1ead8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.821278, - "y": -2649.378703 - }, - "endPoint": { - "x": 1202.857803, - "y": -2649.044971 - } - } - }, - { - "id": "8e5881d8-30f1-59c4-9b7c-a78ade6bd211", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.857803, - "y": -2649.044971 - }, - "endPoint": { - "x": 1202.810813, - "y": -2648.695658 - } - } - }, - { - "id": "950ec67e-d78b-5336-a2b2-5e8636fa73da", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.810813, - "y": -2648.695658 - }, - "endPoint": { - "x": 1202.638446, - "y": -2648.328949 - } - } - }, - { - "id": "07fb2c12-930b-5575-9ada-87452711223d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.638446, - "y": -2648.328949 - }, - "endPoint": { - "x": 1202.262728, - "y": -2648.052582 - } - } - }, - { - "id": "e0b84dcf-bf1e-5c46-9ff6-72647b98ea36", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.262728, - "y": -2648.052582 - }, - "endPoint": { - "x": 1202.007051, - "y": -2647.927446 - } - } - }, - { - "id": "6c1ec1ca-f78f-5770-9459-e1adebc06150", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.007051, - "y": -2647.927446 - }, - "endPoint": { - "x": 1201.719979, - "y": -2647.963946 - } - } - }, - { - "id": "1a59f122-36d6-5483-bbdd-44ce20ca4c45", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.719979, - "y": -2647.963946 - }, - "endPoint": { - "x": 1201.469535, - "y": -2647.979581 - } - } - }, - { - "id": "0735607d-8517-5d0f-af37-3977aea90145", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.469535, - "y": -2647.979581 - }, - "endPoint": { - "x": 1201.333898, - "y": -2648.083852 - } - } - }, - { - "id": "c3a2983d-a78e-5e92-ba35-565db886735f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.333898, - "y": -2648.083852 - }, - "endPoint": { - "x": 1201.093817, - "y": -2648.250718 - } - } - }, - { - "id": "e804e3ce-cf62-58f0-be9a-ee297f487d05", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.093817, - "y": -2648.250718 - }, - "endPoint": { - "x": 1200.817312, - "y": -2648.412354 - } - } - }, - { - "id": "17deddd2-e0e8-5b42-99ce-287ad4a29987", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.817312, - "y": -2648.412354 - }, - "endPoint": { - "x": 1200.634583, - "y": -2648.584451 - } - } - }, - { - "id": "2dcb770e-4152-531d-b4d0-7cbb1131f99d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.634583, - "y": -2648.584451 - }, - "endPoint": { - "x": 1200.498947, - "y": -2648.865993 - } - } - }, - { - "id": "f054eb2d-a87a-5c2d-8070-2db1bd8174a8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.498947, - "y": -2648.865993 - }, - "endPoint": { - "x": 1200.525007, - "y": -2649.147535 - } - } - }, - { - "id": "eaca8a73-f563-5c50-9bca-e5858990e140", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.525007, - "y": -2649.147535 - }, - "endPoint": { - "x": 1200.618988, - "y": -2649.507362 - } - } - }, - { - "id": "327f71e9-2cca-5795-b34b-5f8c25efcd5e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.618988, - "y": -2649.507362 - }, - "endPoint": { - "x": 1200.926888, - "y": -2649.747174 - } - } - }, - { - "id": "60f4c2ce-c550-568e-bf22-e723da3d17e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.926888, - "y": -2649.747174 - }, - "endPoint": { - "x": 1201.208625, - "y": -2649.945311 - } - } - }, - { - "id": "29d281dd-8be0-53ca-99f6-0cd13282fd40", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.208625, - "y": -2649.945311 - }, - "endPoint": { - "x": 1201.600041, - "y": -2649.924445 - } - } - }, - { - "id": "ad308caa-9b73-56c9-a650-1beadc88c5cc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.600041, - "y": -2649.924445 - }, - "endPoint": { - "x": 1202.043577, - "y": -2649.929676 - } - } - }, - { - "id": "a5d18a37-fd94-5b00-bfe0-bac6d8b5031f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.043577, - "y": -2649.929676 - }, - "endPoint": { - "x": 1202.330546, - "y": -2649.903635 - } - } - }, - { - "id": "e931973e-0b5f-5396-9820-e941449fce5a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.330546, - "y": -2649.903635 - }, - "endPoint": { - "x": 1202.534103, - "y": -2649.80977 - } - } - }, - { - "id": "9c76332b-2e03-58f4-8c7d-4727d438e055", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.534103, - "y": -2649.80977 - }, - "endPoint": { - "x": 1202.549698, - "y": -2649.674174 - } - } - }, - { - "id": "06c62f1c-d1fe-53ec-ae24-e50f9917b70c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.549698, - "y": -2649.674174 - }, - "endPoint": { - "x": 1202.654247, - "y": -2649.566435 - } - } - } - ] - }, - { - "id": "95a8a5ce-71be-5ad4-baa8-75892a7bad8b", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "bc641ec4-d773-5539-bb8c-6290999a2577", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.654247, - "y": -2649.566435 - }, - "endPoint": { - "x": 1202.821278, - "y": -2649.378703 - } - } - }, - { - "id": "103ed501-2ec8-5a16-8009-b3bd9d325b02", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.821278, - "y": -2649.378703 - }, - "endPoint": { - "x": 1202.857803, - "y": -2649.044971 - } - } - }, - { - "id": "2c59eac7-cefa-57bb-a262-e545f5f1e447", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.857803, - "y": -2649.044971 - }, - "endPoint": { - "x": 1202.810813, - "y": -2648.695658 - } - } - }, - { - "id": "75b9c844-4d4d-5179-a9d1-c1c1e9155eb2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.810813, - "y": -2648.695658 - }, - "endPoint": { - "x": 1202.638446, - "y": -2648.328949 - } - } - }, - { - "id": "3568d516-fe9c-5a3e-ba4f-6a75c62c9b41", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.638446, - "y": -2648.328949 - }, - "endPoint": { - "x": 1202.262728, - "y": -2648.052582 - } - } - }, - { - "id": "be32b1ef-53aa-5c61-961d-3a849b9f77ef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.262728, - "y": -2648.052582 - }, - "endPoint": { - "x": 1202.007051, - "y": -2647.927446 - } - } - }, - { - "id": "a26b300e-d61e-5cc9-816a-f32f31e4382e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.007051, - "y": -2647.927446 - }, - "endPoint": { - "x": 1201.719979, - "y": -2647.963946 - } - } - }, - { - "id": "f7570987-92fa-5168-b3fd-682763a64a99", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.719979, - "y": -2647.963946 - }, - "endPoint": { - "x": 1201.469535, - "y": -2647.979581 - } - } - }, - { - "id": "89008200-5f58-5200-9005-9155a3a41558", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.469535, - "y": -2647.979581 - }, - "endPoint": { - "x": 1201.333898, - "y": -2648.083852 - } - } - }, - { - "id": "81264821-9d01-553a-96c0-94414b8a3a3a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.333898, - "y": -2648.083852 - }, - "endPoint": { - "x": 1201.093817, - "y": -2648.250718 - } - } - }, - { - "id": "3d95476e-b817-55c1-a090-4cf865dc45d9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.093817, - "y": -2648.250718 - }, - "endPoint": { - "x": 1200.817312, - "y": -2648.412354 - } - } - }, - { - "id": "52ff54f6-d1f3-5496-827d-c1f86fbbe897", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.817312, - "y": -2648.412354 - }, - "endPoint": { - "x": 1200.634583, - "y": -2648.584451 - } - } - }, - { - "id": "879c53cf-5d20-58d4-be0c-ab95b7e7138f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.634583, - "y": -2648.584451 - }, - "endPoint": { - "x": 1200.498947, - "y": -2648.865993 - } - } - }, - { - "id": "bc7c5f0f-9450-56f8-817c-78e183b4d8fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.498947, - "y": -2648.865993 - }, - "endPoint": { - "x": 1200.525007, - "y": -2649.147535 - } - } - }, - { - "id": "3401fc1e-a508-55db-bf3b-167102815276", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.525007, - "y": -2649.147535 - }, - "endPoint": { - "x": 1200.618988, - "y": -2649.507362 - } - } - }, - { - "id": "425c7d2b-4eaa-5bc4-8ffb-b47f2dfcba30", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.618988, - "y": -2649.507362 - }, - "endPoint": { - "x": 1200.926888, - "y": -2649.747174 - } - } - }, - { - "id": "15ac124a-c9ed-50eb-8a3e-75949acf4164", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.926888, - "y": -2649.747174 - }, - "endPoint": { - "x": 1201.208625, - "y": -2649.945311 - } - } - }, - { - "id": "79f8251e-7260-5fec-8aaf-005518229ae9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.208625, - "y": -2649.945311 - }, - "endPoint": { - "x": 1201.600041, - "y": -2649.924445 - } - } - }, - { - "id": "5e7b906b-b25f-582d-8331-c105359b50a2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.600041, - "y": -2649.924445 - }, - "endPoint": { - "x": 1202.043577, - "y": -2649.929676 - } - } - }, - { - "id": "e31a9e97-cf7e-592b-935c-e0f152ff328c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.043577, - "y": -2649.929676 - }, - "endPoint": { - "x": 1202.330546, - "y": -2649.903635 - } - } - }, - { - "id": "81862f50-0793-5f54-afc6-3231b74543b2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.330546, - "y": -2649.903635 - }, - "endPoint": { - "x": 1202.534103, - "y": -2649.80977 - } - } - }, - { - "id": "0e24087d-51eb-533b-b8ed-cd17890da8fc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.534103, - "y": -2649.80977 - }, - "endPoint": { - "x": 1202.549698, - "y": -2649.674174 - } - } - }, - { - "id": "b7cbb18b-452b-564c-ba9d-3b1580469dbb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.549698, - "y": -2649.674174 - }, - "endPoint": { - "x": 1202.654247, - "y": -2649.566435 - } - } - } - ] - }, - { - "id": "ed42833d-0e57-5b06-b320-6ce753df6b8d", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "14df277d-f3d3-5598-8a78-8078464bc647", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.751715, - "y": -2649.579537 - }, - "endPoint": { - "x": 1205.81153, - "y": -2648.891758 - } - } - }, - { - "id": "6814d1f6-a680-5c2f-9610-22325994ccfc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.81153, - "y": -2648.891758 - }, - "endPoint": { - "x": 1205.766694, - "y": -2648.29366 - } - } - }, - { - "id": "2e1e84dc-2038-54a4-b218-37c7606ad985", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.766694, - "y": -2648.29366 - }, - "endPoint": { - "x": 1205.676817, - "y": -2648.02456 - } - } - }, - { - "id": "2f7e4f1d-b83a-5cb1-a48b-52c83f83d773", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.676817, - "y": -2648.02456 - }, - "endPoint": { - "x": 1205.497269, - "y": -2647.725511 - } - } - }, - { - "id": "38e2c0dd-2a5c-5c29-830b-67faaff2c83c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.497269, - "y": -2647.725511 - }, - "endPoint": { - "x": 1205.542207, - "y": -2647.48625 - } - } - }, - { - "id": "93d66bcc-0f38-55de-a8d5-dd0f0fb598b0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.542207, - "y": -2647.48625 - }, - "endPoint": { - "x": 1205.287864, - "y": -2647.276937 - } - } - }, - { - "id": "2993d621-bfc8-55e3-b118-708229b974d2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.287864, - "y": -2647.276937 - }, - "endPoint": { - "x": 1204.928664, - "y": -2646.977888 - } - } - }, - { - "id": "50be6949-129c-567d-8c30-ececf8764c04", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.928664, - "y": -2646.977888 - }, - "endPoint": { - "x": 1204.345081, - "y": -2647.097519 - } - } - }, - { - "id": "e6b08a03-a159-5b8a-aedc-9a9bb12843be", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.345081, - "y": -2647.097519 - }, - "endPoint": { - "x": 1204.22545, - "y": -2647.516199 - } - } - }, - { - "id": "fa763904-208b-520b-b0e6-7b0f474822ae", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.22545, - "y": -2647.516199 - }, - "endPoint": { - "x": 1204.21047, - "y": -2648.233872 - } - } - }, - { - "id": "0b71f82e-7832-551a-acd7-1ba788211ba0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.21047, - "y": -2648.233872 - }, - "endPoint": { - "x": 1204.175279, - "y": -2648.994817 - } - } - }, - { - "id": "6620323d-fbd2-5ade-8c31-fb3c8727ad87", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.175279, - "y": -2648.994817 - }, - "endPoint": { - "x": 1204.152605, - "y": -2649.75323 - } - } - }, - { - "id": "06b7c3f9-76b8-5419-8773-e63f20640f1f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.152605, - "y": -2649.75323 - }, - "endPoint": { - "x": 1204.323637, - "y": -2650.147521 - } - } - }, - { - "id": "34700f0e-32a3-5957-b9a3-b239bf23d85b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.323637, - "y": -2650.147521 - }, - "endPoint": { - "x": 1204.442037, - "y": -2650.200097 - } - } - }, - { - "id": "90777b56-3cad-5fc9-9ebc-11cf91c51937", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.442037, - "y": -2650.200097 - }, - "endPoint": { - "x": 1204.678733, - "y": -2650.489291 - } - } - }, - { - "id": "b6970a71-1dfa-524f-8b5d-9e53e1bcc67c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.678733, - "y": -2650.489291 - }, - "endPoint": { - "x": 1205.139198, - "y": -2650.489291 - } - } - }, - { - "id": "ca56d0b4-a6eb-50c9-a11e-2bca44bf44c8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.139198, - "y": -2650.489291 - }, - "endPoint": { - "x": 1205.481263, - "y": -2650.173836 - } - } - }, - { - "id": "484e6aff-46ca-539c-afd2-17a20f6fba55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.481263, - "y": -2650.173836 - }, - "endPoint": { - "x": 1205.665429, - "y": -2649.77949 - } - } - }, - { - "id": "6c965d94-432b-5f08-8075-e7c7407199e3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.665429, - "y": -2649.77949 - }, - "endPoint": { - "x": 1205.751715, - "y": -2649.579537 - } - } - } - ] - }, - { - "id": "957f8d01-043a-5313-ae58-211b612a0148", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "center": { - "x": 1207.582288410642, - "y": -2644.971199457894 - }, - "radius": 10.608872725901202 - } - }, - { - "id": "3376acf1-716a-56f7-b11a-cc2fd324ae41", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "b58d4949-a5e0-55de-b7b1-5c7f0db610d4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.954872, - "y": -2644.968337 - }, - "endPoint": { - "x": 1218.896179, - "y": -2646.130677 - } - } - }, - { - "id": "4cc1cf5d-cfd7-5c05-8f10-5e1f33e047bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.896179, - "y": -2646.130677 - }, - "endPoint": { - "x": 1218.723909, - "y": -2647.25944 - } - } - }, - { - "id": "3fbe7705-efdf-5662-a765-73ecedcba834", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.723909, - "y": -2647.25944 - }, - "endPoint": { - "x": 1218.443777, - "y": -2648.348914 - } - } - }, - { - "id": "9bfdabb0-4b69-55c7-bf95-f6e650b869e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.443777, - "y": -2648.348914 - }, - "endPoint": { - "x": 1218.061496, - "y": -2649.393382 - } - } - }, - { - "id": "c13a5cdb-55c3-5b01-b5d4-2e02a4e58b09", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.061496, - "y": -2649.393382 - }, - "endPoint": { - "x": 1217.582783, - "y": -2650.387131 - } - } - }, - { - "id": "28571565-3c27-5ec7-aeef-34a4d00e06f5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.582783, - "y": -2650.387131 - }, - "endPoint": { - "x": 1217.013349, - "y": -2651.324447 - } - } - }, - { - "id": "b4e843ef-22e2-5cb5-8dd1-8f1af5f3a65c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.013349, - "y": -2651.324447 - }, - "endPoint": { - "x": 1216.358911, - "y": -2652.199615 - } - } - }, - { - "id": "d3214eea-39d1-5987-a53e-d28847d64a5b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.358911, - "y": -2652.199615 - }, - "endPoint": { - "x": 1215.625181, - "y": -2653.006921 - } - } - }, - { - "id": "7b3b7da4-5547-513d-970e-eb0b451704bb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.625181, - "y": -2653.006921 - }, - "endPoint": { - "x": 1214.817876, - "y": -2653.74065 - } - } - }, - { - "id": "b6236a39-aab3-56c4-b0e8-80db8903c502", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.817876, - "y": -2653.74065 - }, - "endPoint": { - "x": 1213.942708, - "y": -2654.395088 - } - } - }, - { - "id": "b8288e0f-4dc2-5a04-b446-665aefd104a7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.942708, - "y": -2654.395088 - }, - "endPoint": { - "x": 1213.005392, - "y": -2654.964522 - } - } - }, - { - "id": "47d8b288-3cbe-5c5d-87be-e223e78cbe3c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.005392, - "y": -2654.964522 - }, - "endPoint": { - "x": 1212.011643, - "y": -2655.443236 - } - } - }, - { - "id": "7eb99733-5ce3-5267-b92b-8bc0f4497504", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.011643, - "y": -2655.443236 - }, - "endPoint": { - "x": 1210.967175, - "y": -2655.825516 - } - } - }, - { - "id": "36de35af-e94b-5a26-8796-b4665a4b06b6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.967175, - "y": -2655.825516 - }, - "endPoint": { - "x": 1209.877701, - "y": -2656.105648 - } - } - }, - { - "id": "11cca80c-8909-582b-a451-5e2ffcd09e3d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.877701, - "y": -2656.105648 - }, - "endPoint": { - "x": 1208.748938, - "y": -2656.277918 - } - } - }, - { - "id": "51dee901-788a-5c3d-a083-3c072b7d952e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.748938, - "y": -2656.277918 - }, - "endPoint": { - "x": 1207.586598, - "y": -2656.336611 - } - } - }, - { - "id": "af90d406-e01f-5ca6-9c32-6cdb3b58790d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.586598, - "y": -2656.336611 - }, - "endPoint": { - "x": 1206.424258, - "y": -2656.277918 - } - } - }, - { - "id": "f435a1b1-1c2c-55c1-8fe4-38bd8b8f6b0d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.424258, - "y": -2656.277918 - }, - "endPoint": { - "x": 1205.295494, - "y": -2656.105648 - } - } - }, - { - "id": "54041bca-0a97-520c-979c-f1fd7555b397", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.295494, - "y": -2656.105648 - }, - "endPoint": { - "x": 1204.206021, - "y": -2655.825516 - } - } - }, - { - "id": "9e3d76d4-ed7e-5388-93d9-bd7774548be6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.206021, - "y": -2655.825516 - }, - "endPoint": { - "x": 1203.161552, - "y": -2655.443236 - } - } - }, - { - "id": "85cf32d9-02e2-5652-8984-bce5a820e120", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.161552, - "y": -2655.443236 - }, - "endPoint": { - "x": 1202.167803, - "y": -2654.964522 - } - } - }, - { - "id": "a57f69cb-272a-565b-a665-5edc3b4bf946", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.167803, - "y": -2654.964522 - }, - "endPoint": { - "x": 1201.230487, - "y": -2654.395088 - } - } - }, - { - "id": "458193a9-c846-5237-9747-3b6bf788771a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.230487, - "y": -2654.395088 - }, - "endPoint": { - "x": 1200.355319, - "y": -2653.74065 - } - } - }, - { - "id": "d5d22d7d-7349-54cc-8710-589268416591", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.355319, - "y": -2653.74065 - }, - "endPoint": { - "x": 1199.548014, - "y": -2653.006921 - } - } - }, - { - "id": "30dacdf7-b1d9-5ba8-8318-ba7125e3a978", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.548014, - "y": -2653.006921 - }, - "endPoint": { - "x": 1198.814284, - "y": -2652.199615 - } - } - }, - { - "id": "816b2e18-c848-5ae2-a286-daf933734e06", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.814284, - "y": -2652.199615 - }, - "endPoint": { - "x": 1198.159846, - "y": -2651.324447 - } - } - }, - { - "id": "4f393f13-e15d-5279-a166-0f591c8c08db", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.159846, - "y": -2651.324447 - }, - "endPoint": { - "x": 1197.590413, - "y": -2650.387131 - } - } - }, - { - "id": "4d540b92-d347-5421-8785-73c8994d6b55", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.590413, - "y": -2650.387131 - }, - "endPoint": { - "x": 1197.111699, - "y": -2649.393382 - } - } - }, - { - "id": "8afa59c5-96c3-508e-8fab-41b1304c5f5f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.111699, - "y": -2649.393382 - }, - "endPoint": { - "x": 1196.729418, - "y": -2648.348914 - } - } - }, - { - "id": "50fdc6d9-80be-5ab6-b948-1d96cf39dd3a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.729418, - "y": -2648.348914 - }, - "endPoint": { - "x": 1196.449286, - "y": -2647.25944 - } - } - }, - { - "id": "ae233ce5-c54e-5fdc-948e-0925995edbd7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.449286, - "y": -2647.25944 - }, - "endPoint": { - "x": 1196.277016, - "y": -2646.130677 - } - } - }, - { - "id": "ee65ca53-e5c8-56d2-bbad-8538083452f6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.277016, - "y": -2646.130677 - }, - "endPoint": { - "x": 1196.218323, - "y": -2644.968337 - } - } - }, - { - "id": "4048b0ff-dcbb-5488-936c-eeaf3471443b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.218323, - "y": -2644.968337 - }, - "endPoint": { - "x": 1196.277016, - "y": -2643.805997 - } - } - }, - { - "id": "d4a67054-dd33-5f6c-a448-ea7661aec1a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.277016, - "y": -2643.805997 - }, - "endPoint": { - "x": 1196.449286, - "y": -2642.677233 - } - } - }, - { - "id": "fddd934f-19e2-5744-a93b-f533d7b47114", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.449286, - "y": -2642.677233 - }, - "endPoint": { - "x": 1196.729418, - "y": -2641.58776 - } - } - }, - { - "id": "0ece836d-0596-511e-811b-486b25314b29", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.729418, - "y": -2641.58776 - }, - "endPoint": { - "x": 1197.111699, - "y": -2640.543291 - } - } - }, - { - "id": "96514864-a67a-51bb-a3f9-1c776eb08bb0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.111699, - "y": -2640.543291 - }, - "endPoint": { - "x": 1197.590413, - "y": -2639.549542 - } - } - }, - { - "id": "49aa6a2d-2a5f-59db-838f-a24906b9ff26", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.590413, - "y": -2639.549542 - }, - "endPoint": { - "x": 1198.159846, - "y": -2638.612226 - } - } - }, - { - "id": "4766a0a1-f857-55b5-a627-464f1b0e2a30", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.159846, - "y": -2638.612226 - }, - "endPoint": { - "x": 1198.814284, - "y": -2637.737059 - } - } - }, - { - "id": "f76dfe09-4832-59c9-abfa-c1e0f15c42ab", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.814284, - "y": -2637.737059 - }, - "endPoint": { - "x": 1199.548014, - "y": -2636.929753 - } - } - }, - { - "id": "038763fa-905e-5073-8ffa-4b14e2f90b75", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1199.548014, - "y": -2636.929753 - }, - "endPoint": { - "x": 1200.355319, - "y": -2636.196024 - } - } - }, - { - "id": "759230b0-fcf9-577c-bbde-6fd4a88aacad", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.355319, - "y": -2636.196024 - }, - "endPoint": { - "x": 1201.230487, - "y": -2635.541585 - } - } - }, - { - "id": "b28bbd60-132a-5529-b0b6-15bca16c5832", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.230487, - "y": -2635.541585 - }, - "endPoint": { - "x": 1202.167803, - "y": -2634.972152 - } - } - }, - { - "id": "1c7c853d-c277-5f3b-a881-e0cf41b24eda", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1202.167803, - "y": -2634.972152 - }, - "endPoint": { - "x": 1203.161552, - "y": -2634.493438 - } - } - }, - { - "id": "03aa6285-ff0a-567d-9349-2349c67b5415", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.161552, - "y": -2634.493438 - }, - "endPoint": { - "x": 1204.206021, - "y": -2634.111158 - } - } - }, - { - "id": "04d5a661-c5b4-5d76-a18e-cbe73a75ba97", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.206021, - "y": -2634.111158 - }, - "endPoint": { - "x": 1205.295494, - "y": -2633.831025 - } - } - }, - { - "id": "dca0fa8d-c8ff-58ce-b8f2-b0288f1b0ac0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.295494, - "y": -2633.831025 - }, - "endPoint": { - "x": 1206.424258, - "y": -2633.658756 - } - } - }, - { - "id": "ec2c08e1-77cb-59fc-ae8a-bf2a19f7f1cd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.424258, - "y": -2633.658756 - }, - "endPoint": { - "x": 1207.586598, - "y": -2633.600062 - } - } - }, - { - "id": "970f5aee-4937-595c-95b4-c2e1a699efe9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.586598, - "y": -2633.600062 - }, - "endPoint": { - "x": 1208.748938, - "y": -2633.658756 - } - } - }, - { - "id": "32017488-9e6c-560f-a3b5-fed3bc194bd8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.748938, - "y": -2633.658756 - }, - "endPoint": { - "x": 1209.877701, - "y": -2633.831025 - } - } - }, - { - "id": "13616d7c-8137-5cd4-9aab-8b240a25579c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.877701, - "y": -2633.831025 - }, - "endPoint": { - "x": 1210.967175, - "y": -2634.111158 - } - } - }, - { - "id": "6628c2a4-3fcd-5c61-9982-1432d6cba03b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.967175, - "y": -2634.111158 - }, - "endPoint": { - "x": 1212.011643, - "y": -2634.493438 - } - } - }, - { - "id": "3b59a0e1-2198-5140-8f1d-ce95be66e241", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1212.011643, - "y": -2634.493438 - }, - "endPoint": { - "x": 1213.005392, - "y": -2634.972152 - } - } - }, - { - "id": "a086786d-867c-5a69-903c-35f07b462148", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.005392, - "y": -2634.972152 - }, - "endPoint": { - "x": 1213.942708, - "y": -2635.541585 - } - } - }, - { - "id": "c64bae92-0d09-52ce-b879-f86ee33827cf", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.942708, - "y": -2635.541585 - }, - "endPoint": { - "x": 1214.817876, - "y": -2636.196024 - } - } - }, - { - "id": "f9d1da80-72b6-5e1d-9caf-dcfbb6bea8f9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1214.817876, - "y": -2636.196024 - }, - "endPoint": { - "x": 1215.625181, - "y": -2636.929753 - } - } - }, - { - "id": "ff0cb095-8876-507a-a828-5d21469bc0e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.625181, - "y": -2636.929753 - }, - "endPoint": { - "x": 1216.358911, - "y": -2637.737059 - } - } - }, - { - "id": "c02dc798-7a9e-51a9-be95-70acc6d746b5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.358911, - "y": -2637.737059 - }, - "endPoint": { - "x": 1217.013349, - "y": -2638.612226 - } - } - }, - { - "id": "b9ebb95e-42c9-58b0-9c48-bef15311181b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.013349, - "y": -2638.612226 - }, - "endPoint": { - "x": 1217.582783, - "y": -2639.549542 - } - } - }, - { - "id": "153fcddb-e998-55d6-8d2b-83ef1f550fd0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.582783, - "y": -2639.549542 - }, - "endPoint": { - "x": 1218.061496, - "y": -2640.543291 - } - } - }, - { - "id": "2652d181-ea35-5b08-b773-ea3f4d55a632", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.061496, - "y": -2640.543291 - }, - "endPoint": { - "x": 1218.443777, - "y": -2641.58776 - } - } - }, - { - "id": "2159f312-51eb-5833-b407-35c8fa71e12e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.443777, - "y": -2641.58776 - }, - "endPoint": { - "x": 1218.723909, - "y": -2642.677233 - } - } - }, - { - "id": "7d1aedc9-111b-5803-b14d-8234eb75ab9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.723909, - "y": -2642.677233 - }, - "endPoint": { - "x": 1218.896179, - "y": -2643.805997 - } - } - }, - { - "id": "fe0bcb80-73ae-51fb-84c5-278e4e728458", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.896179, - "y": -2643.805997 - }, - "endPoint": { - "x": 1218.954872, - "y": -2644.968337 - } - } - } - ] - }, - { - "id": "8ba91d98-cd78-54de-94d3-87c762b0c8fb", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": null, - "children": [ - { - "id": "3aba44e1-1e89-5bcb-8b71-b26876f91a9f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.191161, - "y": -2644.971199 - }, - "endPoint": { - "x": 1218.136389, - "y": -2643.886504 - } - } - }, - { - "id": "58ee857d-4de8-5df9-b847-fdc612dadb89", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.136389, - "y": -2643.886504 - }, - "endPoint": { - "x": 1217.975627, - "y": -2642.833142 - } - } - }, - { - "id": "83dc5766-6dfd-5f93-800c-167b4e357ea1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.975627, - "y": -2642.833142 - }, - "endPoint": { - "x": 1217.714207, - "y": -2641.816445 - } - } - }, - { - "id": "ac1d0723-7c4f-5c64-8630-d890fd0a397a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.714207, - "y": -2641.816445 - }, - "endPoint": { - "x": 1217.357463, - "y": -2640.841747 - } - } - }, - { - "id": "26c28a47-0c83-57b1-b695-b0ed39c42810", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.357463, - "y": -2640.841747 - }, - "endPoint": { - "x": 1216.379332, - "y": -2639.039678 - } - } - }, - { - "id": "c547ae5e-42fd-5c3a-bb91-1bdefe2710e7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.379332, - "y": -2639.039678 - }, - "endPoint": { - "x": 1215.083894, - "y": -2637.469594 - } - } - }, - { - "id": "826ed72d-0343-5f23-81cb-cab955323312", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.083894, - "y": -2637.469594 - }, - "endPoint": { - "x": 1213.51381, - "y": -2636.174156 - } - } - }, - { - "id": "6415557d-d217-52ad-86d8-cabb19fd5342", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.51381, - "y": -2636.174156 - }, - "endPoint": { - "x": 1211.71174, - "y": -2635.196025 - } - } - }, - { - "id": "8d5c30f4-1aa6-5cef-85cc-43ed113c7b01", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.71174, - "y": -2635.196025 - }, - "endPoint": { - "x": 1210.737043, - "y": -2634.839281 - } - } - }, - { - "id": "52063a7b-4dcc-5510-9e94-21d687743a6b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.737043, - "y": -2634.839281 - }, - "endPoint": { - "x": 1209.720346, - "y": -2634.577861 - } - } - }, - { - "id": "53c66808-e63d-5500-9aa0-bfe875397414", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.720346, - "y": -2634.577861 - }, - "endPoint": { - "x": 1208.666984, - "y": -2634.417099 - } - } - }, - { - "id": "41be287a-917f-5518-be97-4226a5328ec9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.666984, - "y": -2634.417099 - }, - "endPoint": { - "x": 1207.582288, - "y": -2634.362327 - } - } - }, - { - "id": "d063e0b5-bb73-51fc-9fd5-aca644ca6708", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.582288, - "y": -2634.362327 - }, - "endPoint": { - "x": 1206.497593, - "y": -2634.417099 - } - } - }, - { - "id": "7ab931e1-cfd5-5aaa-a92f-400c8519668f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.497593, - "y": -2634.417099 - }, - "endPoint": { - "x": 1205.444231, - "y": -2634.577861 - } - } - }, - { - "id": "85251dc6-48f7-5809-8d86-eabe2f964b7d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.444231, - "y": -2634.577861 - }, - "endPoint": { - "x": 1204.427534, - "y": -2634.839281 - } - } - }, - { - "id": "df1cd145-f624-5574-a3bd-bdc880f5a1aa", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.427534, - "y": -2634.839281 - }, - "endPoint": { - "x": 1203.452836, - "y": -2635.196025 - } - } - }, - { - "id": "40783572-2d5d-5564-875b-2af5130d2cde", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.452836, - "y": -2635.196025 - }, - "endPoint": { - "x": 1201.650767, - "y": -2636.174156 - } - } - }, - { - "id": "dc05675b-52d8-511f-a43f-f78ea1649094", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.650767, - "y": -2636.174156 - }, - "endPoint": { - "x": 1200.080683, - "y": -2637.469594 - } - } - }, - { - "id": "d924d227-7fb4-58ef-a0ed-5f337372bfe5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.080683, - "y": -2637.469594 - }, - "endPoint": { - "x": 1198.785245, - "y": -2639.039678 - } - } - }, - { - "id": "ce32bc70-cc7c-58af-90e5-c08a25489470", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.785245, - "y": -2639.039678 - }, - "endPoint": { - "x": 1197.807113, - "y": -2640.841747 - } - } - }, - { - "id": "fb58094b-270f-5098-8895-355e96c53839", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.807113, - "y": -2640.841747 - }, - "endPoint": { - "x": 1197.45037, - "y": -2641.816445 - } - } - }, - { - "id": "81f98b22-2f3b-59e1-ac01-b0ec6a964886", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.45037, - "y": -2641.816445 - }, - "endPoint": { - "x": 1197.18895, - "y": -2642.833142 - } - } - }, - { - "id": "a68c2057-d29e-527e-b331-2977382c48a0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.18895, - "y": -2642.833142 - }, - "endPoint": { - "x": 1197.028188, - "y": -2643.886504 - } - } - }, - { - "id": "94a7f03d-6696-508f-bfcc-4f341ac7c23e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.028188, - "y": -2643.886504 - }, - "endPoint": { - "x": 1196.973416, - "y": -2644.971199 - } - } - }, - { - "id": "43d9bce9-3f6f-5091-89cf-bf5dc6d2ad8c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1196.973416, - "y": -2644.971199 - }, - "endPoint": { - "x": 1197.028188, - "y": -2646.055895 - } - } - }, - { - "id": "0756357a-fc2e-519c-912a-0af771aff8ed", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.028188, - "y": -2646.055895 - }, - "endPoint": { - "x": 1197.18895, - "y": -2647.109257 - } - } - }, - { - "id": "6798b5dc-c512-55be-8ff7-40e82b8e80e2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.18895, - "y": -2647.109257 - }, - "endPoint": { - "x": 1197.45037, - "y": -2648.125954 - } - } - }, - { - "id": "cf801563-6d54-557a-802b-5800613e6a95", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.45037, - "y": -2648.125954 - }, - "endPoint": { - "x": 1197.807113, - "y": -2649.100651 - } - } - }, - { - "id": "93325fff-4f06-5ca1-81cc-48a6a08f7177", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1197.807113, - "y": -2649.100651 - }, - "endPoint": { - "x": 1198.785245, - "y": -2650.902721 - } - } - }, - { - "id": "8d1bb8e4-5c1c-5402-95ff-95e4d51d0928", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1198.785245, - "y": -2650.902721 - }, - "endPoint": { - "x": 1200.080683, - "y": -2652.472805 - } - } - }, - { - "id": "1745aae5-240a-5002-9da5-23c1e5d24be1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1200.080683, - "y": -2652.472805 - }, - "endPoint": { - "x": 1201.650767, - "y": -2653.768243 - } - } - }, - { - "id": "33c85c28-3beb-5daa-9a04-5be50fe635ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1201.650767, - "y": -2653.768243 - }, - "endPoint": { - "x": 1203.452836, - "y": -2654.746374 - } - } - }, - { - "id": "cb817584-582f-56df-817c-2ea51beb517d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1203.452836, - "y": -2654.746374 - }, - "endPoint": { - "x": 1204.427534, - "y": -2655.103118 - } - } - }, - { - "id": "26951f63-7489-584e-a33d-24aa0ed423bd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1204.427534, - "y": -2655.103118 - }, - "endPoint": { - "x": 1205.444231, - "y": -2655.364538 - } - } - }, - { - "id": "3464db45-9ecc-5962-afda-ad66badfef12", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1205.444231, - "y": -2655.364538 - }, - "endPoint": { - "x": 1206.497593, - "y": -2655.5253 - } - } - }, - { - "id": "a3c0258e-8b63-558c-97c1-170fbb6f3509", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1206.497593, - "y": -2655.5253 - }, - "endPoint": { - "x": 1207.582288, - "y": -2655.580072 - } - } - }, - { - "id": "c903f49d-21ee-57ec-8ac7-0f2a869293e1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1207.582288, - "y": -2655.580072 - }, - "endPoint": { - "x": 1208.666984, - "y": -2655.5253 - } - } - }, - { - "id": "6fea3140-5660-5435-8697-3f48f135f2c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1208.666984, - "y": -2655.5253 - }, - "endPoint": { - "x": 1209.720346, - "y": -2655.364538 - } - } - }, - { - "id": "c70e9d73-d25f-5ff5-a58d-7927aad5f3ac", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1209.720346, - "y": -2655.364538 - }, - "endPoint": { - "x": 1210.737043, - "y": -2655.103118 - } - } - }, - { - "id": "21c1dc5a-d851-5d4c-a5e5-39dded61d861", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1210.737043, - "y": -2655.103118 - }, - "endPoint": { - "x": 1211.71174, - "y": -2654.746374 - } - } - }, - { - "id": "97f86c41-e130-50a5-bb7b-7fc51a959924", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1211.71174, - "y": -2654.746374 - }, - "endPoint": { - "x": 1213.51381, - "y": -2653.768243 - } - } - }, - { - "id": "68917f86-1b0d-5efd-8d45-37abe8da8ffd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1213.51381, - "y": -2653.768243 - }, - "endPoint": { - "x": 1215.083894, - "y": -2652.472805 - } - } - }, - { - "id": "5d23ad62-1cda-5031-877e-b70fa4ea1c53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1215.083894, - "y": -2652.472805 - }, - "endPoint": { - "x": 1216.379332, - "y": -2650.902721 - } - } - }, - { - "id": "c920f727-0319-5780-ac91-b028eca029b3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1216.379332, - "y": -2650.902721 - }, - "endPoint": { - "x": 1217.357463, - "y": -2649.100651 - } - } - }, - { - "id": "49d549e0-aba5-5b0e-8a8b-9f79bf25e496", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.357463, - "y": -2649.100651 - }, - "endPoint": { - "x": 1217.714207, - "y": -2648.125954 - } - } - }, - { - "id": "4545beca-c226-520b-93fd-7d48d15ebe97", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.714207, - "y": -2648.125954 - }, - "endPoint": { - "x": 1217.975627, - "y": -2647.109257 - } - } - }, - { - "id": "1ff87ad4-3580-5973-8c4b-c1547e2f6d29", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1217.975627, - "y": -2647.109257 - }, - "endPoint": { - "x": 1218.136389, - "y": -2646.055895 - } - } - }, - { - "id": "6131922e-038c-5aed-ad61-300618d7df9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "startPoint": { - "x": 1218.136389, - "y": -2646.055895 - }, - "endPoint": { - "x": 1218.191161, - "y": -2644.971199 - } - } - } - ] - }, - { - "id": "c04da410-a049-51e6-8860-ac332330c801", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "LP_AA_SGG", - "shapeData": { - "center": { - "x": 1207.5865975743363, - "y": -2644.9683366917816 - }, - "radius": 11.368274263557154 - } - }, - { - "id": "9cd91854-bc8d-58b3-b6a9-fa777a5bde07", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914657658533, - "y": -2099.072176031947 - }, - "endPoint": { - "x": 882.1400097712026, - "y": -2099.072176031947 - } - } - }, - { - "id": "2305331f-05c5-5be7-91a0-c3e431e63125", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.9275684565505, - "y": -2100.059265233813 - }, - "endPoint": { - "x": 883.1270989730106, - "y": -2100.059265233813 - } - } - }, - { - "id": "4769c572-1e2a-5f26-8e33-72655bd7251e", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "73396a87-636d-5cef-913a-b322dca157f4", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914658, - "y": -2099.072176 - }, - "endPoint": { - "x": 1651.927568, - "y": -2100.059265 - } - } - }, - { - "id": "a955aab6-8484-5013-bf96-2e3eb000fd0e", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.927568, - "y": -2100.059265 - }, - "endPoint": { - "x": 883.127099, - "y": -2100.059265 - } - } - }, - { - "id": "fd2995cc-ce58-5aec-9bb8-225fb25a110a", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 883.127099, - "y": -2100.059265 - }, - "endPoint": { - "x": 882.14001, - "y": -2099.072176 - } - } - }, - { - "id": "fbb97c03-4f85-5469-ac0e-2a7f403192c2", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 882.14001, - "y": -2099.072176 - }, - "endPoint": { - "x": 1652.914658, - "y": -2099.072176 - } - } - } - ] - }, - { - "id": "888b2ab6-b74b-51bc-b31d-1128ff55ee3c", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "fae58831-4b8b-58cf-880b-007a608b1236", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 882.14001, - "y": -2099.072176 - }, - "endPoint": { - "x": 883.127099, - "y": -2100.059265 - } - } - }, - { - "id": "ce026e76-b2c0-5f92-8fc2-fc534d9a2195", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 883.127099, - "y": -2100.059265 - }, - "endPoint": { - "x": 883.127099, - "y": -2652.829218 - } - } - }, - { - "id": "dd673dce-100e-5a09-beca-88903c34ae92", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 883.127099, - "y": -2652.829218 - }, - "endPoint": { - "x": 882.14001, - "y": -2653.816307 - } - } - }, - { - "id": "a14cddfa-ffe0-5d4f-870a-238c95f570e9", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 882.14001, - "y": -2653.816307 - }, - "endPoint": { - "x": 882.14001, - "y": -2099.072176 - } - } - } - ] - }, - { - "id": "8cfc1f5f-c9c3-5cd5-9f0d-4a5ebc0765b3", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 882.1400097712026, - "y": -2099.072176031947 - }, - "endPoint": { - "x": 882.1400097712026, - "y": -2653.816307487378 - } - } - }, - { - "id": "09417b32-1102-509e-8d79-8ece584ac347", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 883.1270989730106, - "y": -2100.059265233813 - }, - "endPoint": { - "x": 883.1270989730106, - "y": -2652.8292182854534 - } - } - }, - { - "id": "e2d439d2-c947-5430-bee6-35a1566fb5ca", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "ee36dc13-f26e-54fa-9c8a-cca78225bc64", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914658, - "y": -2653.816307 - }, - "endPoint": { - "x": 1651.927568, - "y": -2652.829218 - } - } - }, - { - "id": "2cce65d6-08ed-5855-9a8b-95e8f9225fbc", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.927568, - "y": -2652.829218 - }, - "endPoint": { - "x": 1651.927568, - "y": -2100.059265 - } - } - }, - { - "id": "cd746658-63f9-5d88-a56c-0bb327994ff4", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.927568, - "y": -2100.059265 - }, - "endPoint": { - "x": 1652.914658, - "y": -2099.072176 - } - } - }, - { - "id": "90ebb5ce-3404-5cd9-8053-7b6b2f618f7b", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914658, - "y": -2099.072176 - }, - "endPoint": { - "x": 1652.914658, - "y": -2653.816307 - } - } - } - ] - }, - { - "id": "3c17c1a9-a19b-5651-b98e-6182ef5698be", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914657658533, - "y": -2099.072176031947 - }, - "endPoint": { - "x": 1652.914657658533, - "y": -2653.816307487378 - } - } - }, - { - "id": "e97a0cf5-25e4-56a3-85c3-646cc7cff41d", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.9275684565505, - "y": -2100.059265233813 - }, - "endPoint": { - "x": 1651.9275684565505, - "y": -2652.8292182854534 - } - } - }, - { - "id": "c2cbed03-d6e6-56b3-9bcf-da6a66246439", - "type": "PolyLine", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": null, - "children": [ - { - "id": "596cddaa-e31f-5388-a6bf-0eb3654ce093", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": 840.627321, - "y": -2671.444283 - }, - "endPoint": { - "x": 1681.627412, - "y": -2671.444283 - } - } - }, - { - "id": "2cb3cb7d-3373-50ac-a7a1-0b18c334fd91", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": 1681.627412, - "y": -2671.444283 - }, - "endPoint": { - "x": 1681.627412, - "y": -2079.444259 - } - } - }, - { - "id": "03115ea1-11e2-5bec-adc9-37301604c3cc", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": 1681.627412, - "y": -2079.444259 - }, - "endPoint": { - "x": 840.627321, - "y": -2079.444259 - } - } - }, - { - "id": "996bc120-23fd-5764-b30d-957a6fa762d4", - "type": "Line", - "lineColor": "#000000", - "lineWidth": 1, - "layerId": "프린터", - "shapeData": { - "startPoint": { - "x": 840.627321, - "y": -2079.444259 - }, - "endPoint": { - "x": 840.627321, - "y": -2671.444283 - } - } - } - ] - }, - { - "id": "6e221e05-bae8-5ea0-aaa8-acd9b2a54cdb", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.9275825549707, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 882.1400294505089, - "y": -2623.216537943474 - } - } - }, - { - "id": "1557a03a-4895-54b0-b74e-ab4d7b7cffd9", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914671749797, - "y": -2653.8163029798893 - }, - "endPoint": { - "x": 882.1400294505089, - "y": -2653.816302979882 - } - } - }, - { - "id": "fd076dbf-f28a-5a3d-8ca5-6e55594dc658", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.9275825549707, - "y": -2652.829213785121 - }, - "endPoint": { - "x": 882.1400294505089, - "y": -2652.829213785121 - } - } - }, - { - "id": "d759af19-693b-5db3-847e-a2742d881173", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "aad24b27-57d8-5770-89af-6bb89c2103b8", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 882.140029, - "y": -2653.816303 - }, - "endPoint": { - "x": 883.127119, - "y": -2652.829214 - } - } - }, - { - "id": "f2282e43-4df7-508d-ba35-20d33f07b21f", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 883.127119, - "y": -2652.829214 - }, - "endPoint": { - "x": 1651.927583, - "y": -2652.829214 - } - } - }, - { - "id": "32ba3401-9ed0-56e2-8afa-56a5e3add1ff", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.927583, - "y": -2652.829214 - }, - "endPoint": { - "x": 1652.914672, - "y": -2653.816303 - } - } - }, - { - "id": "fc3abcdb-b8a8-55aa-b63a-2c6cabeb172a", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914672, - "y": -2653.816303 - }, - "endPoint": { - "x": 882.140029, - "y": -2653.816303 - } - } - } - ] - }, - { - "id": "89baa4c5-d026-5990-8b44-2b1b977553c8", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "5b089c63-808f-5db2-967f-bec9b63f6275", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 928.665122, - "y": -2628.9515 - }, - "endPoint": { - "x": 957.416928, - "y": -2628.9515 - } - } - } - ] - }, - { - "id": "0a82c107-4c1b-5190-89ea-632253a1a240", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.9275825854925, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 882.1400294810306, - "y": -2623.216537943474 - } - } - }, - { - "id": "3c071d0d-c0f2-5421-97dd-debb592e305e", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.9146717803187, - "y": -2653.8163029798893 - }, - "endPoint": { - "x": 882.1400294810306, - "y": -2653.816302979882 - } - } - }, - { - "id": "69b7ff9d-a560-5ff8-9877-3b825a3eb279", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.9275825854925, - "y": -2652.829213785121 - }, - "endPoint": { - "x": 882.1400294810306, - "y": -2652.829213785121 - } - } - }, - { - "id": "f9398761-1001-5379-9bd1-a1c921f67e0c", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "2d0a09b7-b9dd-58cb-83b8-061bf694aaec", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 882.140029, - "y": -2653.816303 - }, - "endPoint": { - "x": 883.127119, - "y": -2652.829214 - } - } - }, - { - "id": "532fde8b-29e9-50cb-ade7-ee2428908589", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 883.127119, - "y": -2652.829214 - }, - "endPoint": { - "x": 1651.927583, - "y": -2652.829214 - } - } - }, - { - "id": "e257033a-0837-5c67-8597-1e70ca45ec93", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.927583, - "y": -2652.829214 - }, - "endPoint": { - "x": 1652.914672, - "y": -2653.816303 - } - } - }, - { - "id": "79a69433-3ff8-5681-86af-9aecf0a12d73", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1652.914672, - "y": -2653.816303 - }, - "endPoint": { - "x": 882.140029, - "y": -2653.816303 - } - } - } - ] - }, - { - "id": "e9521d27-ff7d-51be-a85e-f468d62b1854", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "그루터기 ENG", - "basePoint": { - "x": 929.833826, - "y": -2638.734019 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 7.0615, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d4c1a14d-1457-5f88-aeaf-daedb4f23492", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "경북 성주군 선남면 성주로 4200", - "basePoint": { - "x": 930.115907, - "y": -2644.882726 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.623, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "76d08679-998b-5e5f-8909-1e3873ff7175", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "TEL. 053-583-7883", - "basePoint": { - "x": 930.734731, - "y": -2650.036712 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.623, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "76603ddb-259a-5bd0-88fb-03072035faea", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "FAX. 053-583-7886", - "basePoint": { - "x": 966.872979, - "y": -2649.664539 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.623, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "61d86622-7fc3-56d7-9d2c-4e2e8c5d1146", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "산림설계,감리,산림조사", - "basePoint": { - "x": 929.690333, - "y": -2628.069603 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.4212, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6c46142f-cc5d-57ba-833b-4c511b1f4656", - "type": "PolyLine", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "87701e76-406f-5b25-a64d-7c141537de03", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 929.652211, - "y": -2628.9515 - }, - "endPoint": { - "x": 965.892824, - "y": -2628.9515 - } - } - } - ] - }, - { - "id": "8c1a18ae-45aa-5c35-b160-2d193c5058f4", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "\"함께하는숲, 함께하는미래\"", - "basePoint": { - "x": 889.519658, - "y": -2648.096263 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#00ffff", - "fontSize": 2.2137, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "69a42b52-a75a-5c88-b86c-381b65b404df", - "type": "PolyLine", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "e5e34ad5-e2a3-5a96-a798-704cd4204e84", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 896.85265, - "y": -2643.525565 - }, - "endPoint": { - "x": 893.373966, - "y": -2643.525565 - } - } - }, - { - "id": "f02bd709-8b93-5c59-823b-d0c1a57bc22f", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 893.373966, - "y": -2643.525565 - }, - "endPoint": { - "x": 893.058745, - "y": -2643.503059 - } - } - }, - { - "id": "89e07bed-9451-578b-b601-94019b6911ec", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 893.058745, - "y": -2643.503059 - }, - "endPoint": { - "x": 892.875717, - "y": -2643.328086 - } - } - }, - { - "id": "98facf33-e7f9-51c7-8cc5-0594daf98216", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.875717, - "y": -2643.328086 - }, - "endPoint": { - "x": 892.70952, - "y": -2643.095513 - } - } - }, - { - "id": "d5278074-ce43-5608-b7c2-7b650bd8d0c9", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.70952, - "y": -2643.095513 - }, - "endPoint": { - "x": 892.487924, - "y": -2642.741117 - } - } - }, - { - "id": "7f7e9f11-766e-50eb-a679-3dc5569756da", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.487924, - "y": -2642.741117 - }, - "endPoint": { - "x": 892.360506, - "y": -2642.525156 - } - } - }, - { - "id": "e14c06f8-44af-522f-9e04-7871b199c7cc", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.360506, - "y": -2642.525156 - }, - "endPoint": { - "x": 892.321727, - "y": -2642.264896 - } - } - }, - { - "id": "828bd908-12db-542c-a200-a2c53e45515c", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.321727, - "y": -2642.264896 - }, - "endPoint": { - "x": 892.421445, - "y": -2641.904963 - } - } - }, - { - "id": "d3fb14b5-5a73-5b32-8819-a07715deb6fe", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.421445, - "y": -2641.904963 - }, - "endPoint": { - "x": 896.936018, - "y": -2630.431023 - } - } - }, - { - "id": "9a627b9e-d0ee-5b81-8891-d097b9b7fbca", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 896.936018, - "y": -2630.431023 - }, - "endPoint": { - "x": 897.105668, - "y": -2630.420621 - } - } - }, - { - "id": "3afe74a8-f0ea-5360-9295-409cabfb61da", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 897.105668, - "y": -2630.420621 - }, - "endPoint": { - "x": 900.193851, - "y": -2635.568066 - } - } - }, - { - "id": "896dc6cb-2bb9-567d-9349-dd9b6fc06d9e", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 900.193851, - "y": -2635.568066 - }, - "endPoint": { - "x": 899.825557, - "y": -2636.16676 - } - } - }, - { - "id": "c1645c7a-94ae-5c5c-9741-6c86a5bf4808", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.825557, - "y": -2636.16676 - }, - "endPoint": { - "x": 899.692776, - "y": -2636.399024 - } - } - }, - { - "id": "f3cb8018-7e54-527c-b4ea-0632be2f5df2", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.692776, - "y": -2636.399024 - }, - "endPoint": { - "x": 896.85265, - "y": -2643.525565 - } - } - } - ] - }, - { - "id": "9cc836e6-3655-51fc-8a98-55e01bbc0359", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.6927756112236, - "y": -2636.3990241533375 - }, - "endPoint": { - "x": 896.8526496458089, - "y": -2643.5255647722424 - } - } - }, - { - "id": "1ab744bf-e986-5235-842c-2ab7d05c680c", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "2b04d2e7-2f85-559f-934d-01d4319eb5a4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 903.723919, - "y": -2643.502954 - }, - "endPoint": { - "x": 899.249675, - "y": -2643.502954 - } - } - }, - { - "id": "bd3d6332-20cf-5c2f-9506-495bc6c6962f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.249675, - "y": -2643.502954 - }, - "endPoint": { - "x": 898.96719, - "y": -2643.478087 - } - } - }, - { - "id": "faf940a0-75ce-5b62-93ec-abf99abc3a9d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 898.96719, - "y": -2643.478087 - }, - "endPoint": { - "x": 898.791235, - "y": -2643.292439 - } - } - }, - { - "id": "88ec69b8-22a7-5918-a714-56673f80e175", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 898.791235, - "y": -2643.292439 - }, - "endPoint": { - "x": 894.973505, - "y": -2636.910333 - } - } - }, - { - "id": "ab817ec0-03de-5ff4-8ff7-2df4391ecc43", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 894.973505, - "y": -2636.910333 - }, - "endPoint": { - "x": 894.902095, - "y": -2636.65494 - } - } - }, - { - "id": "65322df2-992b-5623-b1d2-39ce657ea822", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 894.902095, - "y": -2636.65494 - }, - "endPoint": { - "x": 894.929488, - "y": -2636.435893 - } - } - }, - { - "id": "4ebfb3c5-95b2-513b-a16b-228096921ca9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 894.929488, - "y": -2636.435893 - }, - "endPoint": { - "x": 899.255231, - "y": -2636.435893 - } - } - }, - { - "id": "29481dc7-cf19-5235-9ca9-dbede7bdcfe9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.255231, - "y": -2636.435893 - }, - "endPoint": { - "x": 899.524727, - "y": -2636.435893 - } - } - }, - { - "id": "cd4920ae-8ef1-5929-b90f-625fee9e7725", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.524727, - "y": -2636.435893 - }, - "endPoint": { - "x": 899.596735, - "y": -2636.485324 - } - } - }, - { - "id": "2caa489d-fa76-59f1-839c-1722cecb257b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.596735, - "y": -2636.485324 - }, - "endPoint": { - "x": 903.723919, - "y": -2643.502954 - } - } - } - ] - }, - { - "id": "2ca4a5c6-8205-527d-8de4-6d40518f610a", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.5967354310433, - "y": -2636.4853238923897 - }, - "endPoint": { - "x": 903.723919124106, - "y": -2643.502954135458 - } - } - }, - { - "id": "1891c27b-341f-55e3-9ff0-daf12b992d78", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 901.792087719632, - "y": -2630.4206211247565 - }, - "endPoint": { - "x": 897.1056683540282, - "y": -2630.4206211247565 - } - } - }, - { - "id": "6db3daf5-4166-54d7-a4c5-dbefea661d1e", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 908.7091759270243, - "y": -2633.4367765584793 - }, - "endPoint": { - "x": 905.1909588905728, - "y": -2633.4367765584793 - } - } - }, - { - "id": "568e03a0-9e08-5d98-a06a-35447653eab6", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 902.033871883541, - "y": -2630.782703799505 - }, - "endPoint": { - "x": 901.792087719632, - "y": -2630.4206211247565 - } - } - }, - { - "id": "3d96ccb0-ba6b-59f9-8f36-3cb247894020", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 897.1056683540282, - "y": -2630.4206211247565 - }, - "endPoint": { - "x": 900.1938508517251, - "y": -2635.568065932477 - } - } - }, - { - "id": "e5acd840-52db-5933-a2bd-d452a394b23b", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.5247273840359, - "y": -2636.4358934011707 - }, - "endPoint": { - "x": 899.5967354310433, - "y": -2636.4853238923897 - } - } - }, - { - "id": "253715dc-01ee-5062-a8da-c9dfd24c05e1", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.2552308071827, - "y": -2636.4358934011707 - }, - "endPoint": { - "x": 899.5247273840359, - "y": -2636.4358934011707 - } - } - }, - { - "id": "0d6e76da-1532-591f-a661-32b2b204a8d7", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 894.929487652229, - "y": -2636.4358934011707 - }, - "endPoint": { - "x": 899.2552308071827, - "y": -2636.4358934011707 - } - } - }, - { - "id": "0ec93337-ad03-5a3f-8278-e19bd1a3eece", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 894.902094639132, - "y": -2636.6549398010775 - }, - "endPoint": { - "x": 894.929487652229, - "y": -2636.4358934011707 - } - } - }, - { - "id": "de96152c-9148-52c7-a0d0-9d301dc32ae4", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 894.9735048755938, - "y": -2636.9103327697267 - }, - "endPoint": { - "x": 894.902094639132, - "y": -2636.6549398010775 - } - } - }, - { - "id": "e8fab8a1-e589-5d1c-8186-0084b0aeee77", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 898.7912345043169, - "y": -2643.292438556169 - }, - "endPoint": { - "x": 894.9735048755938, - "y": -2636.9103327697267 - } - } - }, - { - "id": "2a5c12d3-8581-520b-aea7-fc34bb8f2610", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 898.9671904061051, - "y": -2643.478087319134 - }, - "endPoint": { - "x": 898.7912345043169, - "y": -2643.292438556169 - } - } - }, - { - "id": "ad99fd50-4e05-57e8-b12f-ee9e17d42397", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.2496753005416, - "y": -2643.502954135458 - }, - "endPoint": { - "x": 898.9671904061051, - "y": -2643.478087319134 - } - } - }, - { - "id": "c9cb964f-f3ea-52b6-a101-759b4841b9d4", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 903.723919124106, - "y": -2643.502954135458 - }, - "endPoint": { - "x": 899.2496753005416, - "y": -2643.502954135458 - } - } - }, - { - "id": "296cea19-bd60-517c-920c-597bd13e3fcb", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 899.8255572473117, - "y": -2636.166759516751 - }, - "endPoint": { - "x": 899.6927756112236, - "y": -2636.3990241533375 - } - } - }, - { - "id": "0f7a88f7-235b-5bf5-ada3-314d20ee2064", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 900.1938508517251, - "y": -2635.568065932477 - }, - "endPoint": { - "x": 899.8255572473117, - "y": -2636.166759516751 - } - } - }, - { - "id": "cde1e553-6f9d-5590-9716-f3d1b0691c3d", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 900.1938508517251, - "y": -2635.568065932477 - }, - "endPoint": { - "x": 900.1938508517251, - "y": -2635.568065932477 - } - } - }, - { - "id": "21a77799-81e4-5b6d-95dd-b8c021eea655", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 896.9360178352999, - "y": -2630.4310225011122 - }, - "endPoint": { - "x": 897.1056683540282, - "y": -2630.4206211247565 - } - } - }, - { - "id": "e5568f9b-9446-5d8e-8824-a782e77722ed", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.4214449459287, - "y": -2641.9049625311272 - }, - "endPoint": { - "x": 896.9360178352999, - "y": -2630.4310225011122 - } - } - }, - { - "id": "a9af7d52-d7b8-5c4e-8f67-c171bc0e566c", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.3217268122899, - "y": -2642.2648963032734 - }, - "endPoint": { - "x": 892.4214449459287, - "y": -2641.9049625311272 - } - } - }, - { - "id": "753222ac-01c6-53b4-8e5f-557ca2e28b15", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.3605061003072, - "y": -2642.525156230424 - }, - "endPoint": { - "x": 892.3217268122899, - "y": -2642.2648963032734 - } - } - }, - { - "id": "0e4d7eca-bbcb-5f1c-bf79-23ac670ff36d", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.4879238676094, - "y": -2642.741116518633 - }, - "endPoint": { - "x": 892.3605061003072, - "y": -2642.525156230424 - } - } - }, - { - "id": "c085213e-06cc-5741-8370-baf0d57a3914", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.7095201902503, - "y": -2643.0955128826317 - }, - "endPoint": { - "x": 892.4879238676094, - "y": -2642.741116518633 - } - } - }, - { - "id": "a9b1c6f9-8fa1-5bd0-935c-7955ee97e625", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 892.8757174944476, - "y": -2643.3280855198664 - }, - "endPoint": { - "x": 892.7095201902503, - "y": -2643.0955128826317 - } - } - }, - { - "id": "ee294281-29eb-54e4-9902-8d31622d6ac7", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 893.0587453307071, - "y": -2643.5030590450624 - }, - "endPoint": { - "x": 892.8757174944476, - "y": -2643.3280855198664 - } - } - }, - { - "id": "9fe1b5b9-f719-5525-a189-9e77a7c31a1b", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 893.3739657033238, - "y": -2643.5255647722424 - }, - "endPoint": { - "x": 893.0587453307071, - "y": -2643.5030590450624 - } - } - }, - { - "id": "b754e1e0-aba5-5da0-b041-c5bc6aaba173", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 896.8526496458089, - "y": -2643.5255647722424 - }, - "endPoint": { - "x": 893.3739657033238, - "y": -2643.5255647722424 - } - } - }, - { - "id": "94fc9a0a-1a43-56fe-b803-2a3c10ca32da", - "type": "PolyLine", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "1a8129ed-6307-5698-9333-c1eba26ac413", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 914.734394, - "y": -2643.300667 - }, - "endPoint": { - "x": 914.692548, - "y": -2643.415248 - } - } - }, - { - "id": "433977ac-33b8-5e53-be0f-58c02a41b8bc", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 914.692548, - "y": -2643.415248 - }, - "endPoint": { - "x": 914.463178, - "y": -2643.546649 - } - } - }, - { - "id": "5dee1f1c-4645-575a-97e9-5a2e25ad4272", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 914.463178, - "y": -2643.546649 - }, - "endPoint": { - "x": 911.006966, - "y": -2643.546649 - } - } - }, - { - "id": "a3171a58-3e4d-5ee7-a753-9718822904a1", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 911.006966, - "y": -2643.546649 - }, - "endPoint": { - "x": 910.742827, - "y": -2643.336984 - } - } - }, - { - "id": "c707a61e-0753-53cd-b615-5a70c82a9624", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 910.742827, - "y": -2643.336984 - }, - "endPoint": { - "x": 905.021771, - "y": -2633.845466 - } - } - }, - { - "id": "24cdfe4a-ff38-5036-9e2e-2167364173ed", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 905.021771, - "y": -2633.845466 - }, - "endPoint": { - "x": 904.993573, - "y": -2633.591797 - } - } - }, - { - "id": "5fddff15-02c0-513f-8453-8851c9b8d49d", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 904.993573, - "y": -2633.591797 - }, - "endPoint": { - "x": 905.190959, - "y": -2633.436777 - } - } - }, - { - "id": "9509a58e-1da1-5f6a-bcfa-ecebdd17e3af", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 905.190959, - "y": -2633.436777 - }, - "endPoint": { - "x": 908.709176, - "y": -2633.436777 - } - } - }, - { - "id": "ae87b0c8-7d46-582c-8269-cca6dbd95dee", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 908.709176, - "y": -2633.436777 - }, - "endPoint": { - "x": 908.868253, - "y": -2633.605259 - } - } - }, - { - "id": "c18bbdb6-4f83-58f7-af50-88046e8911f9", - "type": "Line", - "lineColor": "#134c00", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 908.868253, - "y": -2633.605259 - }, - "endPoint": { - "x": 914.734394, - "y": -2643.300667 - } - } - } - ] - }, - { - "id": "8b18d5ef-3959-5762-bf39-e94667fdb1ef", - "type": "PolyLine", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "464a7161-8509-5eda-bda3-1c6805035a7e", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 914.734394, - "y": -2643.300667 - }, - "endPoint": { - "x": 914.692548, - "y": -2643.415248 - } - } - }, - { - "id": "3d153a23-a6f3-5aa8-bb36-bf12bfa341cc", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 914.692548, - "y": -2643.415248 - }, - "endPoint": { - "x": 914.463178, - "y": -2643.546649 - } - } - }, - { - "id": "7a163e3b-3f4d-52f3-a977-3667eff71f91", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 914.463178, - "y": -2643.546649 - }, - "endPoint": { - "x": 911.006966, - "y": -2643.546649 - } - } - }, - { - "id": "9ffe30b0-971b-5b22-872d-45ebeb066ab1", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 911.006966, - "y": -2643.546649 - }, - "endPoint": { - "x": 910.742827, - "y": -2643.336984 - } - } - }, - { - "id": "44f26d46-70c2-53af-b7d9-37698ae227af", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 910.742827, - "y": -2643.336984 - }, - "endPoint": { - "x": 905.021771, - "y": -2633.845466 - } - } - }, - { - "id": "d8c477e4-ff8e-5e02-b74b-f5b8c835adb9", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 905.021771, - "y": -2633.845466 - }, - "endPoint": { - "x": 904.993573, - "y": -2633.591797 - } - } - }, - { - "id": "35c9ad55-5259-5d53-bbe6-de069e28327d", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 904.993573, - "y": -2633.591797 - }, - "endPoint": { - "x": 905.190959, - "y": -2633.436777 - } - } - }, - { - "id": "465a79db-2c20-5d56-affb-3f1307ff2873", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 905.190959, - "y": -2633.436777 - }, - "endPoint": { - "x": 908.709176, - "y": -2633.436777 - } - } - }, - { - "id": "8ef4daa1-0b0b-5127-ab65-05a6cae00b2b", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 908.709176, - "y": -2633.436777 - }, - "endPoint": { - "x": 908.868253, - "y": -2633.605259 - } - } - }, - { - "id": "9b0fa8f8-ac61-5ff1-85c3-3a3d2d9b95af", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 908.868253, - "y": -2633.605259 - }, - "endPoint": { - "x": 914.734394, - "y": -2643.300667 - } - } - } - ] - }, - { - "id": "47f0b566-44d0-571b-b959-dbf5d7d082cf", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "a13e3bc7-596c-5284-91e6-f3b42e3c7a32", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 909.690725, - "y": -2643.520679 - }, - "endPoint": { - "x": 905.055811, - "y": -2643.520679 - } - } - }, - { - "id": "66b24771-0db8-582d-a8a8-fd0ca0bfd123", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 905.055811, - "y": -2643.520679 - }, - "endPoint": { - "x": 904.91117, - "y": -2643.449355 - } - } - }, - { - "id": "62bfad98-7132-5f67-8508-7b73ac6820a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 904.91117, - "y": -2643.449355 - }, - "endPoint": { - "x": 900.193851, - "y": -2635.568066 - } - } - }, - { - "id": "75c22b0d-ab51-5866-9f00-7f1fd73c30ed", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 900.193851, - "y": -2635.568066 - }, - "endPoint": { - "x": 897.105668, - "y": -2630.420621 - } - } - }, - { - "id": "226d29ff-4bb0-5ba5-abe1-453509967d3c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 897.105668, - "y": -2630.420621 - }, - "endPoint": { - "x": 901.792088, - "y": -2630.420621 - } - } - }, - { - "id": "1a9dbffd-3435-5ab8-bd74-da5efe89df4c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 901.792088, - "y": -2630.420621 - }, - "endPoint": { - "x": 902.033872, - "y": -2630.782704 - } - } - }, - { - "id": "da8cbc34-6d28-5c76-931f-f4a17c0b29af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 902.033872, - "y": -2630.782704 - }, - "endPoint": { - "x": 909.697594, - "y": -2643.429689 - } - } - }, - { - "id": "7286e225-33d0-5ddf-a1c5-f503dc46ee4b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 909.697594, - "y": -2643.429689 - }, - "endPoint": { - "x": 909.690725, - "y": -2643.520679 - } - } - } - ] - }, - { - "id": "4832fce5-a3ac-52c1-8c88-184c33ab875d", - "type": "PolyLine", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": null, - "children": [ - { - "id": "09850d36-ab02-5ee3-905e-58abd88c32bf", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 909.690725, - "y": -2643.520679 - }, - "endPoint": { - "x": 905.055811, - "y": -2643.520679 - } - } - }, - { - "id": "49bc3ecd-185f-5501-886d-334f59f12831", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 905.055811, - "y": -2643.520679 - }, - "endPoint": { - "x": 904.91117, - "y": -2643.449355 - } - } - }, - { - "id": "2fb17146-64a3-5d26-b05a-9a32c2a2ac09", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 904.91117, - "y": -2643.449355 - }, - "endPoint": { - "x": 900.193851, - "y": -2635.568066 - } - } - }, - { - "id": "ddff56a9-c585-5005-89cd-e0cac9e901cc", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 900.193851, - "y": -2635.568066 - }, - "endPoint": { - "x": 897.105668, - "y": -2630.420621 - } - } - }, - { - "id": "8293dbd0-9300-5024-9023-35e5cd228200", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 897.105668, - "y": -2630.420621 - }, - "endPoint": { - "x": 901.792088, - "y": -2630.420621 - } - } - }, - { - "id": "2b97bc06-fde4-5dce-95e9-b9131acb87e0", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 901.792088, - "y": -2630.420621 - }, - "endPoint": { - "x": 902.033872, - "y": -2630.782704 - } - } - }, - { - "id": "be9b121f-6b37-580f-b742-0135c2dfdbc5", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 902.033872, - "y": -2630.782704 - }, - "endPoint": { - "x": 909.697594, - "y": -2643.429689 - } - } - }, - { - "id": "0fd42e1d-33aa-5af6-b4d7-186ec8945120", - "type": "Line", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "9224", - "shapeData": { - "startPoint": { - "x": 909.697594, - "y": -2643.429689 - }, - "endPoint": { - "x": 909.690725, - "y": -2643.520679 - } - } - } - ] - }, - { - "id": "54291d36-49fa-5539-96e9-d259c9dce220", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1651.9275825549707, - "y": -2634.237136751625 - }, - "endPoint": { - "x": 1004.1529054928483, - "y": -2634.237136751625 - } - } - }, - { - "id": "a7c32416-3c84-5f76-9c87-027ed61011eb", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1141.737926659944, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1141.737926659944, - "y": -2652.829213785121 - } - } - }, - { - "id": "ac62575e-d3f8-5f7f-996e-dbd495296402", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1539.775545036453, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1539.775545036453, - "y": -2652.829213785121 - } - } - }, - { - "id": "8def17d2-402f-52ee-9807-7683273f0fcf", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1427.5317364990428, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1427.5317364990428, - "y": -2652.829213785121 - } - } - }, - { - "id": "b4cc7e02-447d-54a2-bf73-44799d449876", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1592.7022308716791, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1592.7022308716791, - "y": -2652.829213785121 - } - } - }, - { - "id": "664a9cd6-b7db-539c-9f9b-ee581973826a", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "책 임 기 술 자", - "basePoint": { - "x": 1176.694709, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d87f5549-0704-5d5b-94f0-20b44cfac0b9", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1216.9392352824634, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1216.9392352824634, - "y": -2652.829213785121 - } - } - }, - { - "id": "1fdbefb5-fc84-5b50-8b1c-a89d0bfe49ca", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1273.1016841113772, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1273.1016841113772, - "y": -2652.829213785121 - } - } - }, - { - "id": "a9ec74a2-135d-52b9-94bb-a0dcb77e36eb", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "승 인", - "basePoint": { - "x": 1244.913348, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "20c98879-84df-5f21-8293-b4333abfa6a9", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "공 사 명", - "basePoint": { - "x": 1347.655704, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "acc98e5a-069d-5901-ae2c-bd8788aee582", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1478.5772341217425, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1478.5772341217425, - "y": -2652.829213785121 - } - } - }, - { - "id": "ac0e8867-6a43-5efa-b823-8971e01b6230", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "도 면 명", - "basePoint": { - "x": 1452.644176, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4b25acdf-0023-5339-9bb8-839dd780ea34", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "노 선 명", - "basePoint": { - "x": 1624.408152, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b62a2830-99f4-5bca-9781-6654f2dee6f2", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "설 계 일 자", - "basePoint": { - "x": 1566.87251, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d39ddd51-dcf3-5f85-9949-ed113733b5a5", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1539.775545036453, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1539.775545036453, - "y": -2652.829213785121 - } - } - }, - { - "id": "7087e611-bb7b-58a8-b70e-d9a3de3982f7", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1004.1529054928483, - "y": -2623.216537943474 - }, - "endPoint": { - "x": 1004.1529054928483, - "y": -2652.829213785121 - } - } - }, - { - "id": "31531cf4-e043-56d0-a91b-55f71e3355b0", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "발 주 처", - "basePoint": { - "x": 1081.002416, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c34175d7-dd8f-5c0a-870f-9abb63fd1844", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "축 척", - "basePoint": { - "x": 1510.4114, - "y": -2628.505615 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 3.6, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "232debcc-ab0e-5d59-92aa-3b0730032d29", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "남부지방산림청", - "basePoint": { - "x": 1072.945416, - "y": -2643.533175 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 5.4, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a1508680-5ed5-54e9-8555-2cdf8a823f78", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2024년 간선임도사업(기번3)(3공구)", - "basePoint": { - "x": 1350.58835, - "y": -2640.523455 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 4.3, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cab29d64-9380-5da3-94e0-378f5aa88c00", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "타이틀", - "shapeData": { - "label": "안 덕 상", - "basePoint": { - "x": 1175.760417, - "y": -2648.773413 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 3.9, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c6354e79-5ced-59d0-9fea-e90bb7e1eef4", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "타이틀", - "shapeData": { - "label": "산림공학기술자 기술고급", - "basePoint": { - "x": 1175.5536, - "y": -2640.872744 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 3.9, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d2cc82e2-cc12-57a5-ab48-ba7a9a391d52", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "- 울진 울진 대흥 산65 외2 -", - "basePoint": { - "x": 1350.58835, - "y": -2646.523455 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 4.3, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ae7b6643-ac58-510c-8bed-b42935b54d96", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "종 단 면 도(2)", - "basePoint": { - "x": 1271.04425, - "y": -2122.541462 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 12.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "05f7b9c6-514d-58fd-877c-ef4d548adfe7", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "A1", - "basePoint": { - "x": 1480.523844, - "y": -2645.065384 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.6666, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "452fce2a-d2dc-53f3-83e3-9797824ae802", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "V = 1 : 200", - "basePoint": { - "x": 1486.425557, - "y": -2647.193802 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "87bd3f44-b7d5-5df3-9565-71e8830aec90", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "H = 1 : 1,000", - "basePoint": { - "x": 1486.060901, - "y": -2642.595759 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "79dcda8a-19e9-56bc-be45-9e314885d78b", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "A3", - "basePoint": { - "x": 1510.322408, - "y": -2645.065384 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.6666, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c2fadadb-7473-531f-8d5b-23ea98544bf3", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "V = 1 : 400", - "basePoint": { - "x": 1516.224121, - "y": -2647.193802 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bcfb034c-7475-51ce-bd49-619c30277870", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "text", - "shapeData": { - "label": "H = 1 : 2,000", - "basePoint": { - "x": 1515.859465, - "y": -2642.595759 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 2.4242, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2d32e6ab-ab8f-52bb-9540-8104e883e81d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "타이틀", - "shapeData": { - "label": "종 단 면 도(2)", - "basePoint": { - "x": 1452.123626, - "y": -2645.980227 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 4.4, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "86dfd624-1337-5135-a534-618c6dc25f2c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2464.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2464.164981814357 - } - } - }, - { - "id": "38e756a5-cdd8-5f51-a7ec-b36da753ca27", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2464.164981814357 - }, - "endPoint": { - "x": 955.1988107882435, - "y": -2599.164981814357 - } - } - }, - { - "id": "17f951ef-56ab-5406-8f3a-9e1f1d838c90", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2599.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2599.164981814357 - } - } - }, - { - "id": "76183265-80a1-510e-b717-1f0c4e0dc521", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988305640401, - "y": -2599.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2464.164981814357 - } - } - }, - { - "id": "6af94412-ea89-57fc-967a-d945e9005e4b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2584.164981814357 - } - } - }, - { - "id": "dc6d2b6c-4788-51d9-9879-f01f9dda79d5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2569.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2569.164981814357 - } - } - }, - { - "id": "b8e016c5-3d77-56f9-87c9-746388d3369d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2554.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2554.164981814357 - } - } - }, - { - "id": "dcdf507d-0e97-5139-b1a8-7646ce045d91", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2539.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2539.164981814357 - } - } - }, - { - "id": "540bf821-ac31-5102-b9b8-72154079816e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2524.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2524.164981814357 - } - } - }, - { - "id": "a9f98dfc-5850-53f1-9cd0-f7b641d5a9e0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2509.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2509.164981814357 - } - } - }, - { - "id": "45b5c032-87d7-59c9-b74b-44937170e1ad", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2494.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2494.164981814357 - } - } - }, - { - "id": "84e651e5-349b-57cd-98f5-e937a927165e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 975.1988305640401, - "y": -2479.164981814357 - } - } - }, - { - "id": "841d245d-5eea-54a2-af1b-8cc761506163", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "곡 선", - "basePoint": { - "x": 965.198821, - "y": -2591.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3fb1bcb7-ee6c-5196-be7d-b3b90d3eeb7a", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "측 점", - "basePoint": { - "x": 965.198821, - "y": -2576.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "11adc33b-695e-58c7-98fb-7262026f5fa5", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "거 리", - "basePoint": { - "x": 965.198821, - "y": -2561.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d741c5a8-7346-53dc-8d32-f1a9a2e759b3", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "누가거리", - "basePoint": { - "x": 965.198821, - "y": -2546.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f79de64e-9af3-5ab4-abc6-36dcfb253423", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "지반고", - "basePoint": { - "x": 965.198821, - "y": -2531.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7f740b19-df89-5a01-af39-3cf2555abe31", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "계획고", - "basePoint": { - "x": 965.198821, - "y": -2516.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "26d6cf42-98d3-540a-b19a-eb9611850ba6", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "성토고", - "basePoint": { - "x": 965.198821, - "y": -2501.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "12e9aed6-38cb-5ded-8d58-9c9c013a7463", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "절토고", - "basePoint": { - "x": 965.198821, - "y": -2486.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3847d06f-9efc-5b37-972e-ab6eb6671624", - "type": "Text", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "구 배", - "basePoint": { - "x": 965.198821, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ff00", - "fontSize": 4.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0ffdbb81-6f93-5583-b765-a00a9986d4c8", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 950.1988107882435, - "y": -2606.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2606.164981814357 - } - } - }, - { - "id": "adfe67cd-83c6-561e-97e4-745e83091c28", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H= 1 : 1000", - "basePoint": { - "x": 963.698811, - "y": -2605.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 2.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7f4c0241-21a8-5dcb-9ff7-760ce97f681c", - "type": "Line", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 950.1988107882435, - "y": -2606.164981814357 - }, - "endPoint": { - "x": 950.1988107882435, - "y": -2581.164981814357 - } - } - }, - { - "id": "e892b3b7-4c9e-5675-b1ff-cf9847673a86", - "type": "Text", - "lineColor": "#00ffff", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "V= 1 : 200", - "basePoint": { - "x": 949.698811, - "y": -2592.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#00ffff", - "fontSize": 2.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "88556f9a-1d6f-5f38-8492-67e2395e8925", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "0569a81c-1e75-592c-9804-6e061fb1310b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2599.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2464.164982 - } - } - }, - { - "id": "a59d823c-7d70-5ec7-a249-208cbd288554", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2464.164982 - }, - "endPoint": { - "x": 1530.198811, - "y": -2464.164982 - } - } - }, - { - "id": "cc505cd7-8e03-5286-a2e7-76a0f60ef141", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1530.198811, - "y": -2464.164982 - }, - "endPoint": { - "x": 1530.198811, - "y": -2599.164982 - } - } - }, - { - "id": "f59d4c09-7afb-5355-a3cc-4adbc7a3e604", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1530.198811, - "y": -2599.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2599.164982 - } - } - } - ] - }, - { - "id": "79864381-848d-59c0-b98a-ee4e3961edb0", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2584.164981814357 - } - } - }, - { - "id": "bfdf198a-fc41-5b72-868b-db2e30e1d799", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2569.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2569.164981814357 - } - } - }, - { - "id": "c83ea8de-abac-5fc0-869c-1246aa4c7821", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2554.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2554.164981814357 - } - } - }, - { - "id": "a3b6227f-a84e-57f6-81c1-816652d239fb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2539.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2539.164981814357 - } - } - }, - { - "id": "162adc0c-06ce-503d-aa25-b6bef6173920", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2524.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2524.164981814357 - } - } - }, - { - "id": "181153a5-c3e9-5664-89b1-38f3edd6832c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2509.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2509.164981814357 - } - } - }, - { - "id": "d10234d5-1ce2-5c5c-a685-b53ddcdd6da9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2494.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2494.164981814357 - } - } - }, - { - "id": "38cea086-37c9-5015-8685-eed52dbd2cbd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.1988107882435, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 1530.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "9b4e1d97-964b-5416-8e2e-85b065202079", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2364.864981814357 - } - } - }, - { - "id": "fe527610-6117-563d-951b-04e87ca2ceef", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2583.664981814357 - } - } - }, - { - "id": "8aff6dfc-dd0e-5cc8-9708-c71aa314c598", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.150", - "basePoint": { - "x": 985.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fa6669f3-f244-5674-b762-5a976d1ef827", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2568.664981814357 - } - } - }, - { - "id": "176b5652-d224-5fd2-a345-073fdaccd402", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 985.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "352b37b8-ef75-5940-87ec-c964e64ebde3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2553.664981814357 - } - } - }, - { - "id": "abe6a547-a4a7-5eb1-aa37-6e8b0408ba78", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3000.00", - "basePoint": { - "x": 985.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6460eb2d-f80b-5ab8-bab5-dd871dc82b94", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2538.664981814357 - } - } - }, - { - "id": "70d23435-b1dd-5e7e-bb44-f742c9e0a9c7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "397.86", - "basePoint": { - "x": 985.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9e9ae8ef-c31a-5e6f-add0-d2347399802d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2523.664981814357 - } - } - }, - { - "id": "b5225dac-7e55-56b5-b2f0-dfe194164d30", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.90", - "basePoint": { - "x": 985.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f0b6917e-da2c-51c9-858d-14a017c15353", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2508.664981814357 - } - } - }, - { - "id": "e8f10570-5514-5d2f-a530-8d324383b992", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2493.664981814357 - } - } - }, - { - "id": "c37695bf-0f09-5c81-9b5a-a4e56def74f5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.96", - "basePoint": { - "x": 985.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b4f6a18c-b01c-52b4-9b81-4d0da6e525a9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2479.164981814357 - } - } - }, - { - "id": "cd5dcc44-0d40-5344-81a7-55a8a6c54fb1", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2359.864981814357 - } - } - }, - { - "id": "8b954c86-d257-5004-9644-57adba7a56da", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2364.864981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2359.864981814357 - } - } - }, - { - "id": "96d3b85c-aca4-5c1f-9190-697b0b18206a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "68427f59-00e3-529f-886e-4c0d66bb47da", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.151", - "basePoint": { - "x": 1005.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2d172da5-0d8d-5c55-bc09-2e5fbf8de8f6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "2162e692-dd19-5f19-8de6-771de8c21b20", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1005.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6cbc458b-8d85-573b-98a8-14c8631ab942", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "f666a0fc-cff8-51f9-abb8-a6fda1a4a557", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3020.00", - "basePoint": { - "x": 1005.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4fa96b83-d64f-5777-a127-670b79a7915d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "36346de3-a232-53c1-8d8d-60b0d185e4dc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "398.86", - "basePoint": { - "x": 1005.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c2add5da-4987-5d81-93da-274b490c6f3f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "d211fd7b-62d3-5699-adc5-fe92b005191d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "397.74", - "basePoint": { - "x": 1005.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ac9883ba-d669-5e14-956c-c4803bac18b4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "a3a00790-0ff1-5bcf-bb6e-e66e1e312f10", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "9a7bda53-96cb-543e-85f6-afb4ec5de147", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.12", - "basePoint": { - "x": 1005.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bf1a2576-51b1-58ee-9e36-565ed283a9db", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1005.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "c21ff980-1f17-53ab-9948-8883f9842500", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2355.864981814357 - } - } - }, - { - "id": "7a7555b9-b98d-5c3d-98ee-6b228e23a74c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198810788243, - "y": -2359.864981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2355.864981814357 - } - } - }, - { - "id": "88fca13f-c586-50e7-b740-37cd77177df7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "fbd7473e-c0ba-5253-abfb-2314e196cce8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.152", - "basePoint": { - "x": 1025.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "11518375-79db-5f19-94c7-852082dbc136", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "3ae9086b-f659-5277-a478-d6bec8a60c54", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1025.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f86f8693-79e7-52e8-af8d-59322da7ae55", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "a635e5c3-27ac-55d9-9370-9432a62b34b4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3040.00", - "basePoint": { - "x": 1025.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7887f2cc-87dd-5d25-97ec-427fb852f640", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "bf47ddb6-03f9-5d9f-95e7-79ea2f78fd8f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.66", - "basePoint": { - "x": 1025.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7a71f96c-7011-500d-ade7-80d0e956d5b0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "8f421d82-c5ac-5c15-865d-1a664a09a18f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "398.58", - "basePoint": { - "x": 1025.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d35068b0-9f18-58ed-8156-b025dde70d82", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "ad8fdba6-1610-5174-ba1d-24e428373a01", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "f5ee0679-48e9-5071-997d-eb03d4b65d66", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.08", - "basePoint": { - "x": 1025.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "425781c9-1bcc-5c4a-af51-1f0d44ced128", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1025.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "134d1a9f-d440-52cb-948b-26a4dc62d49d", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2346.964981814357 - } - } - }, - { - "id": "dfb2801f-02b3-5e50-b86c-77ae2959234b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198810788243, - "y": -2355.864981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2346.964981814357 - } - } - }, - { - "id": "4962375a-1592-5c68-915a-de87a97a67c8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "b2b2b865-6d3d-520f-a89d-932c8fbff457", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.153", - "basePoint": { - "x": 1045.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6610ec19-214b-54c7-81b7-a0a23b094a35", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "78f2adfa-4e31-5f42-847c-8ee8504b5ed6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1045.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2a2399f4-d0d4-58f1-9c27-dd8796a17726", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "5779893e-1b35-5841-bfef-e5d5fc466d2a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3060.00", - "basePoint": { - "x": 1045.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "df1a23ec-a137-5f3a-b079-cc777163bf13", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "ca3a3f27-7c18-514e-a8a6-41ab64674d2e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.44", - "basePoint": { - "x": 1045.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ddf17e99-c69d-5df4-9265-33c66d7d3707", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "26500728-5d47-5ee8-8de1-2cf2cac3472b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.42", - "basePoint": { - "x": 1045.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8e14c5bf-11c3-5eb4-b0a5-ddab0e1d4ea7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "e5a69656-0c98-5eb8-b8c7-9d97f979ab8c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "6428f60f-fe54-56dd-bb0b-533ce7fdd326", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.02", - "basePoint": { - "x": 1045.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6255af85-a6ff-5bf6-a083-7bb3090aa091", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1045.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "31fd5267-c286-5d30-bd7b-fbbd4d79ebe7", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2346.964981814357 - } - } - }, - { - "id": "ff3abeb9-6b7c-5110-bb46-9cbca36a4e25", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198810788243, - "y": -2346.964981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2346.964981814357 - } - } - }, - { - "id": "85658b7b-b839-5da2-b913-9d27d57b02c3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "e20fde3e-66bb-5cd4-9ac2-1e58a753c4b3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.154", - "basePoint": { - "x": 1065.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bbd7c305-c6ce-588c-87c9-bc158533e6d2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "2c398377-a94f-5d0f-8cdc-b318b0a0c7d6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1065.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1e2386cb-d304-50c5-b8c5-f95f7b22d87a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "eee9877f-dffb-57ed-827d-fb3cff8ef259", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3080.00", - "basePoint": { - "x": 1065.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "76a43c35-faec-5729-866b-edcea09f4315", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "811ccace-90ae-50f1-a2b7-684a3697d7ae", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.44", - "basePoint": { - "x": 1065.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "548a0429-0196-5902-b9b4-0d33212dafca", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "0b6e18be-4556-555f-970a-526d7267fc74", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "400.25", - "basePoint": { - "x": 1065.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f6a8ae5c-de99-5947-b1cb-aa8b9bb82a65", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "4b463b27-c0b0-56c4-831f-26c0a79c4b4a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "28871292-4b8d-5048-a781-a74862cebff7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.19", - "basePoint": { - "x": 1065.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "60b57013-3149-5c51-9418-2923bb1fd93b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "691295bb-fe9c-5240-bc42-557b0fabfd5f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2356.164981814357 - } - } - }, - { - "id": "6b5fb02c-f3ee-5e83-a0e8-fe5ce7341ce5", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2346.964981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2356.164981814357 - } - } - }, - { - "id": "f15555ea-8148-529b-a83f-8ddf07a29e70", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "0abc36ec-dc3b-5235-8564-871e1b3d15ca", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+6", - "basePoint": { - "x": 1071.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ad906e5a-c5c5-50ba-bee8-033cee53453d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "afe0c968-e8b3-53b5-93bf-24ef07150901", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "6.00", - "basePoint": { - "x": 1071.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "75bf2a31-c36c-598c-bae4-f1b1e02bfa7e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "64d75ff9-7913-58cc-a1df-51f7f0aea91d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3086.00", - "basePoint": { - "x": 1071.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c997d15e-b8b7-52e0-9695-e862bf3a88ad", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "25548450-cbf5-59ca-923a-aea39a971723", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.60", - "basePoint": { - "x": 1071.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f4335124-2a5f-5958-928d-e2d880c54b36", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "b85086fb-9aff-587c-b7a1-7937a55b077b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "400.49", - "basePoint": { - "x": 1071.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a694059b-74c4-5a67-a807-f23f0f672188", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "36d63107-8131-56bf-88a0-a8ad1071d096", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.89", - "basePoint": { - "x": 1071.198811, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3eb14570-aae9-50cc-bf55-d4c26bd6584d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "37084772-fcce-5133-87c8-ba812ef0bc63", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1071.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "d2b05bd3-72ae-5614-97c1-2b25de44f692", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2339.164981814357 - } - } - }, - { - "id": "0505faf7-d8b4-5e7e-9678-fa725603b513", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198810788243, - "y": -2356.164981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2339.164981814357 - } - } - }, - { - "id": "4a0be182-b941-52aa-a281-87e3041e97cb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "7a223665-7d99-5a36-85ff-a4c7647cc23c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.155", - "basePoint": { - "x": 1085.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6c5483ae-6d8a-5b96-b004-1d8cc66bc54d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "63d2b0fa-9725-5760-a623-fbec8325b27e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "14.00", - "basePoint": { - "x": 1085.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "551a3f63-6518-5c42-a34c-7fcfc10ad46b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "1a8829b5-ef68-53cc-b494-40fb1c7d2b8d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3100.00", - "basePoint": { - "x": 1085.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5e4a4abe-8d80-5fe1-bb13-ab11e965cecd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "95d796db-bbb8-5ab6-8613-632756d0e8e2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "403.00", - "basePoint": { - "x": 1085.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8515771c-5652-5054-8274-76b6c4cdacdf", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "99d22c36-3bc6-5da1-951a-7a320a451fdd", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.07", - "basePoint": { - "x": 1085.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1933933d-79b0-59e2-9026-965dfbb838cf", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "0de3f218-1357-59e7-9b5b-2beae86abe78", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "be7bef56-0b67-5452-8706-0f295e5f3c04", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.93", - "basePoint": { - "x": 1085.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d7379f4f-1d63-5925-8a71-35c417c780ef", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1085.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "ad48ba65-d0c5-57c3-889b-64379217c885", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2357.064981814357 - } - } - }, - { - "id": "f81f090b-bec3-5b93-a5bb-5a0d8b05271f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198810788243, - "y": -2339.164981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2357.064981814357 - } - } - }, - { - "id": "2ff262a7-7e98-504a-adba-113451dd2b53", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "3e93b3f6-a8fa-5d72-8beb-adcadb3a51ae", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+12", - "basePoint": { - "x": 1097.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "854389d7-72bd-5eaf-a4a7-e17be5c61088", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "b17111d0-8a62-5171-8732-5519200c0aff", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "12.00", - "basePoint": { - "x": 1097.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "07b1ae5b-f6b5-529f-8509-d63b58932e76", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "c0b40bcb-5727-5247-9003-b41460c8dd1c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3112.00", - "basePoint": { - "x": 1097.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "aca43e82-59d4-5ee2-9025-74e4bd0f0ec8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "8c845244-7aef-598f-914b-c9767471f098", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.42", - "basePoint": { - "x": 1097.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "dfa23b92-65b3-51c4-9996-734be3e6560a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "ff7f199b-344c-558e-b49b-67f8a429b76d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.57", - "basePoint": { - "x": 1097.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ec56989c-3cff-507d-8f88-bd33763da9a0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "d2c40176-8b06-5277-9278-363146796e77", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.15", - "basePoint": { - "x": 1097.198811, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "26f2113b-93e3-56f8-ac6b-5ab830425585", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "515bc063-c115-5365-9e7e-b347525e88ef", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1097.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "3397ddda-b61b-5180-8b9a-d3060377314e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2334.564981814357 - } - } - }, - { - "id": "c50f7f41-ad8d-5d01-9d96-3f31cb1c160e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198810788243, - "y": -2357.064981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2334.564981814357 - } - } - }, - { - "id": "94c185ea-c692-5f0d-9566-f64e271f7456", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "a23008b0-cc70-5680-a7cf-0acfcb60fe83", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.156", - "basePoint": { - "x": 1105.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "dea0d725-6648-5487-9e74-f92f8c1f953c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "68580c2a-668f-5442-9945-eb7ef86bb2f9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "8.00", - "basePoint": { - "x": 1105.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "57279eed-1447-57e1-a57a-07042c1c2e44", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "d3410491-3f7a-5ec8-9bef-db8ab290b486", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3120.00", - "basePoint": { - "x": 1105.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "203c2ef4-2443-5063-a9c0-3e3c4187be91", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "5ede21e3-ffcb-58bf-91f5-dc3b693e06f0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "403.92", - "basePoint": { - "x": 1105.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f70d140b-d19d-51e9-90aa-0814f5dd4742", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "14321800-69ba-5487-b1f2-2703a3b1b398", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.90", - "basePoint": { - "x": 1105.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ddcf7a5f-a1ef-5966-84f0-97e2f99bb193", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "de7548d4-e702-5a48-b207-036a6b39dc09", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "0d8adc59-0670-518f-8b97-a530641a4b74", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.02", - "basePoint": { - "x": 1105.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0dd9a91d-c8c5-5e90-affe-f070af55f6f9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1105.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "0653f59c-333a-535b-928a-3537c61b868f", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2332.614981814357 - } - } - }, - { - "id": "c4173e4d-d176-50d6-a634-4ad008996687", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198810788243, - "y": -2334.564981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2332.614981814357 - } - } - }, - { - "id": "a3909227-cad9-5e21-aae8-2826ab1d3588", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "9f908a41-4e05-59d7-b97c-810da129c1c6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+10", - "basePoint": { - "x": 1115.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6bb50036-799b-5a04-b3f6-553e30388b7a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "a710db54-84f9-53be-89a8-8cc2f39c4b77", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 1115.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "07d08bd1-af78-52c2-9dac-f3d136efba95", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "1c3b7bf9-3f56-534e-80ee-1216a84b4ce0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3130.00", - "basePoint": { - "x": 1115.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2ea9c235-9bb5-5bba-b222-716560437f74", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "06225e29-c19b-506c-aed3-9a27fa1e57d7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "404.31", - "basePoint": { - "x": 1115.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d9a76b90-ef47-549f-b03c-68a7e5a1170d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "a6f1d3bb-5ac9-5d03-89ba-c0e7979e27ee", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "402.30", - "basePoint": { - "x": 1115.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fbb11230-cc14-5204-8670-5f1ece9e3db6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "a819d4b6-65bd-5412-8409-a4c3172a4a78", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "f6011b4e-3517-5b6e-90ac-905dcafc07a6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.01", - "basePoint": { - "x": 1115.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "83318f57-a6dd-5bcc-8d11-2179a24a0abd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1115.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "4f9f0054-6c2e-520f-85ac-501064548704", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2330.664981814357 - } - } - }, - { - "id": "71683961-91ee-5b6e-84ef-06d63b4c17d5", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198810788243, - "y": -2332.614981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2330.664981814357 - } - } - }, - { - "id": "5a9540c0-b219-5da0-af3b-fb49d0c66296", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "77f2dfcb-2f2a-58ff-b541-afa64ca5620a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.157", - "basePoint": { - "x": 1125.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "05e4097b-76fd-5bf4-a376-68ed1b97db94", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "3728fcbf-1088-5978-8372-c693f4781b4b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 1125.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "17cbffcd-3324-5409-b708-2fc15c5bb134", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "58f648b9-317b-52f1-b23a-db8ba3ad102f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3140.00", - "basePoint": { - "x": 1125.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "697cfcea-2d38-58af-83c7-bdbe67f8c80f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "c2965194-1e12-5c86-b2be-5d669913977f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "404.70", - "basePoint": { - "x": 1125.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "46a8b6b7-d389-5f99-919d-d175bcfa74d8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "6339f5f0-03e8-5f52-b731-d5b3e2a118f3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "402.70", - "basePoint": { - "x": 1125.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e9c36d6d-3456-53ce-afea-5f0b26c74110", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "9975d051-9221-51bd-9e59-5a4dee7deccb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "60114a3d-6cff-5c45-887c-2cff6980eb8c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.00", - "basePoint": { - "x": 1125.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "19cd0982-1b8f-5f98-a5b5-6ae6ec391238", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1125.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "571ecd0d-e8b4-531c-b365-3818a665b5e8", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2326.614981814357 - } - } - }, - { - "id": "e6a1f5a4-8e3e-5314-b369-6f33ef02328b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198810788243, - "y": -2330.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2326.614981814357 - } - } - }, - { - "id": "73928000-1ccc-57cf-a2d7-be2a4daa5bec", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "6dc0e10f-d306-5d00-8a46-f255ff4b6808", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.158", - "basePoint": { - "x": 1145.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ea857116-a023-510f-8c09-3c2c0844cef0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "59bd47e3-f32e-54b5-8f9d-e5380a23d83f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1145.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e4256f7a-7576-5bb6-8918-8fad1c269ee2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "a3930bed-1633-5d75-ae06-4fccb5de3aef", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3160.00", - "basePoint": { - "x": 1145.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c8b6effe-0af5-5455-8dcb-7804bcf728b1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "45226d13-cd9a-5f69-8963-accabac44601", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "405.51", - "basePoint": { - "x": 1145.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "31fc0bfe-fe49-5b6c-95f3-a7fa210497ee", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "b4be8216-7e78-5c77-8bca-f9c1ea940e01", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "403.51", - "basePoint": { - "x": 1145.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5d61b1eb-b680-56eb-8731-dcb47dff539d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "78259d3c-473c-5092-826d-a5a2bb91c32c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "6d6cb185-bc26-5643-8839-322dcc8f53ca", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.00", - "basePoint": { - "x": 1145.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b37fc643-38c2-5b0b-9cb6-7cf3827bfd38", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "a7d80fc7-1cb2-56a8-ab5f-dff54f391863", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2326.614981814357 - } - } - }, - { - "id": "67ae7bcf-43d8-5cea-8444-1ec3ffea288c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2326.614981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2326.614981814357 - } - } - }, - { - "id": "b559da32-b4f3-5fed-a547-630793e5d482", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "5f8d7bf7-d9e0-57c5-bca4-d5b7c8c3b262", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.159", - "basePoint": { - "x": 1165.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "656aed78-2f9a-534c-8200-8e6ae21b5428", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "b81b6a80-d1da-5945-aeaf-75f4ff8a6479", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1165.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4c4f2631-9bd6-5a7c-884e-96a2345282dd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "e211cea6-1f10-5fec-8607-811b8fde7e33", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3180.00", - "basePoint": { - "x": 1165.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "988374ac-28c1-593d-87d8-7abc7496bde7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "3c24281a-e333-5566-b90e-d275ee0472ec", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "405.51", - "basePoint": { - "x": 1165.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b245c89b-2de9-5191-88ae-4ca07b3f479d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "efaa1aa8-ee25-5414-85b3-30408ffa9211", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "403.71", - "basePoint": { - "x": 1165.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5aca58b7-7655-5937-89b9-ad1727acdff2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "fd5f8c62-244b-5b95-b525-e5229f4d7120", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "3544d4ac-38f5-5626-9c47-c05a4cb5f47c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.80", - "basePoint": { - "x": 1165.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "24c90891-779f-56d1-b0c1-73503f724054", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1165.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "ae09c42f-eadf-57ca-af50-2f51b5636ada", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2334.614981814357 - } - } - }, - { - "id": "4839eaf9-6133-5a1c-bbcd-d85c8282bcac", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198810788243, - "y": -2326.614981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2334.614981814357 - } - } - }, - { - "id": "abe2537e-0f6a-52bc-9b1d-bef4cfa04452", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "3b88e78b-89e6-55d3-992c-55a057df28f2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.160", - "basePoint": { - "x": 1185.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0412968c-1ad2-54ad-a56e-51d5a9fbec60", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "1e78403f-8b64-5edd-9ed7-6d7ad42dbe33", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1185.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "95322924-c4ff-5653-a539-8ead68367117", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "a424cf97-1ee0-55fb-a9b5-606b2c242dc6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3200.00", - "basePoint": { - "x": 1185.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d19a7bb9-5589-535b-9c67-dbaa12246f5a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "17a3e8d7-ab2b-5026-bfdb-5636aebe3099", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "403.91", - "basePoint": { - "x": 1185.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6019de2a-5311-588a-bb15-a0213d25e7f3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "0fc95df2-2e3c-5f3c-a3a4-5558f426ed86", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "402.73", - "basePoint": { - "x": 1185.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c34767b5-be03-5f88-b791-cbe85a2d86fa", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "261ca224-8027-5bd4-84ab-a10d46dfbb81", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "5f77e365-ab80-5e05-992c-ad9493006759", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.18", - "basePoint": { - "x": 1185.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c410a74c-c1ed-501f-8145-9054caa77c03", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "77f54bc6-4685-5b67-86bf-4f6c90ded464", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2342.564981814357 - } - } - }, - { - "id": "ca69e36a-6f4a-5f8a-b0df-f3efce9ed6e7", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2334.614981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2342.564981814357 - } - } - }, - { - "id": "f02d90ab-440b-5f11-8d58-8b7788155d24", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "7be94816-adcc-57f7-9df0-3b07d432f196", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.161", - "basePoint": { - "x": 1205.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c163b355-585d-53cc-b828-ade036168100", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "6bf065fd-149a-5748-8e91-2c3528fc587b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1205.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "668839f4-2ed6-5a8f-913b-35773c5a74e5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "63bc2e9f-8e64-5428-b8e3-273a21cd4a5c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3220.00", - "basePoint": { - "x": 1205.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "26941da3-78ae-5a7b-b0d2-0d90debda6a4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "553b7aeb-a3af-55c5-b39b-400d14269e9f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "402.32", - "basePoint": { - "x": 1205.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "90b46679-e958-5683-bd3d-757dd6821a8e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "752aece7-e533-508a-94e2-94760c57fcba", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.16", - "basePoint": { - "x": 1205.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "51cf825b-6ab4-56be-941c-fdf0e479a680", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "d7c3168f-0cc4-5e37-9e74-7f2436650f28", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "a97ccf6d-2723-5ba0-9953-ee268e3114c2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.16", - "basePoint": { - "x": 1205.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b0393c1a-ac88-5fa6-98ea-0b9fb73a4bed", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1205.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "dd9cda83-d7b4-5a33-a250-4b11250a3d00", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2335.464981814357 - } - } - }, - { - "id": "14707e48-7b3f-5ce9-b2fe-f161b07f77c7", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198810788243, - "y": -2342.564981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2335.464981814357 - } - } - }, - { - "id": "6f56edc4-f2ec-5350-92d6-00154096272c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "d93dfde0-cdda-57af-8d7a-67b5ddb35d18", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+12", - "basePoint": { - "x": 1217.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "adca3f23-cfd5-50b5-a2fe-8282153e4c46", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "64d677ba-4d6f-50e4-a835-609ac1efc9ad", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "12.00", - "basePoint": { - "x": 1217.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "144e64fd-31aa-5970-86a8-573918d5e9d3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "d06729ef-202a-56d2-87ea-3741ac20493f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3232.00", - "basePoint": { - "x": 1217.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d531c909-3fa6-513b-a273-7c3978ed9e71", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "feb9492c-2143-5e99-860d-53bb5c2d47c1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "403.74", - "basePoint": { - "x": 1217.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "87c38b54-c377-5256-8955-e55b3b21052e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "31ea59a4-e607-5ed5-8541-56fc1ccab919", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "400.21", - "basePoint": { - "x": 1217.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "14884f2f-7a6b-5d4d-b163-a6d536f75ef9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "019f1386-899a-5d85-bbac-1073b520c341", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "51ec1bb5-6115-50a2-8590-8fe014bbc442", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.53", - "basePoint": { - "x": 1217.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "66a2ebe6-cd4d-5afa-bff9-5303c8ffc571", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1217.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "d3637dc6-b6fd-557e-b66c-699550e64efb", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2350.614981814357 - } - } - }, - { - "id": "3f19a62d-b9c8-53fa-aa4c-feea47db7d1c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198810788243, - "y": -2335.464981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2350.614981814357 - } - } - }, - { - "id": "b318b470-a236-51d8-96a0-19ae4fcc8aac", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "82724f5a-7c47-5766-a50b-683a947654ac", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.162", - "basePoint": { - "x": 1225.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e2babbde-f803-56a5-b3e3-f211c9d086e1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "8d9b2c42-e2a3-54a1-b905-90fb27f3401e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "8.00", - "basePoint": { - "x": 1225.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b4df8eb7-8b4a-5383-9760-c543a7450b9b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "ff5abf04-5d47-5ef9-adac-8f46e0a2ba29", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3240.00", - "basePoint": { - "x": 1225.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2ea9f51f-5fd1-5fbe-9e7b-5a1fc136a210", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "7904bc24-b078-540c-9ced-cbf60ff6ff8e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "400.71", - "basePoint": { - "x": 1225.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b8663b34-bb4c-5091-bf7e-e1b07583c60d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "3ba72ffc-80ad-5b32-9803-ab7b473651cf", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.58", - "basePoint": { - "x": 1225.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3dd75ac9-8aa2-58e8-ae56-d132409d10df", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "de37865e-7af1-5cbd-9eee-638b36e813a6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "580b5cac-66bb-5d7e-a732-48f972d392d0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.13", - "basePoint": { - "x": 1225.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "68b3ecf0-d96c-5003-af6d-93b92fe12897", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1225.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "85be97be-f630-5197-9029-2e441b45326c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2353.714981814357 - } - } - }, - { - "id": "44aebfe4-33fa-5e32-b4a4-d770c16e0cca", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198810788243, - "y": -2350.614981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2353.714981814357 - } - } - }, - { - "id": "7d495be0-5570-50dd-b700-8c8d81105194", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "f1f54846-3e9d-538c-b0c0-a3f41fb66f73", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+10", - "basePoint": { - "x": 1235.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a35a7372-baf4-580c-aa7d-023fbff7ddb6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "57690a34-3256-52b1-b9c3-bbd4b205e446", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 1235.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "54ce1830-cdd9-5cc7-adbf-04e2ad317393", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "6788d218-68b3-5599-a668-bbd4204b112b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3250.00", - "basePoint": { - "x": 1235.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9d04eac3-565e-5ac7-b5e8-e57a1bcc3138", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "d02ca20a-bc32-5159-bd01-a61a64484efe", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "400.09", - "basePoint": { - "x": 1235.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8a4806cf-b565-556c-b8f9-02468c97f9d0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "6eccd744-65b8-533d-a2fa-e2081fbcc386", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "398.79", - "basePoint": { - "x": 1235.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "def3d845-3c21-5687-b8ba-257e7dd06990", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "e4a08a65-43d6-5b8f-96ad-c5a48dafbfc3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "8975c2fd-34c8-5404-94cc-18b1cb9b79b6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.30", - "basePoint": { - "x": 1235.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "56b52b54-0556-5c11-8d69-57cdf2799ddf", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1235.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "1badc48c-35e0-59de-b16c-63dd014e7015", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2369.764981814357 - } - } - }, - { - "id": "b3c12e9c-d8c2-581f-91d7-1b01bab8a472", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198810788243, - "y": -2353.714981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2369.764981814357 - } - } - }, - { - "id": "07f851ad-4f62-578e-a8f8-0134dc6bebd3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "ec77b734-ff6d-5d32-8c0a-a69d417ff650", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.163", - "basePoint": { - "x": 1245.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5889d0f7-1f74-5127-abe8-48de60375245", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "1012c429-5de5-5200-b7f7-0a9a8022edd5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 1245.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "53ac021c-e997-5193-9894-e3466b3875b0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "eded0a5f-3756-5e7d-a77e-b159d28d4e0d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3260.00", - "basePoint": { - "x": 1245.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3393c9f5-a9bd-5655-a1b2-5cf56a599805", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "e7fffe09-b4ae-5463-8c31-8d2f2c67145e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.88", - "basePoint": { - "x": 1245.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c01facb5-ba21-5bc5-a115-a3e4af1ba360", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "fb006113-0ec8-56ae-913a-b6824f35a9a4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "398.00", - "basePoint": { - "x": 1245.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8eea0363-3d71-5aae-9ec5-01abf742e9b4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "c27f29de-e5dc-5294-a0df-001e8619b5b3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.12", - "basePoint": { - "x": 1245.198811, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ddd35d68-d08c-539d-8230-10a475c577ef", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "43fde900-ea57-59ea-b969-f6ff3ceb65ba", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1245.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "35877720-8471-5538-be96-c3090f1c800b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2364.714981814357 - } - } - }, - { - "id": "e609a4dc-d5b3-5448-812f-59e5a878d7cd", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198810788243, - "y": -2369.764981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2364.714981814357 - } - } - }, - { - "id": "7201e239-c1c2-59fb-acad-69a9cfed3bcf", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "e2741321-a36e-5ab9-8bd6-c913490c458e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.164", - "basePoint": { - "x": 1265.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "34ae4bdd-81f7-5870-b0f6-a36312a54fdd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "e54c5920-fb07-5c6c-a3f3-04c7ee383675", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1265.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6947788c-7835-5e3e-af46-9b95cc10ee38", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "96374dfd-8cc8-5440-932e-67a519627036", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3280.00", - "basePoint": { - "x": 1265.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7e3d63f0-b05c-5681-8793-3a4f1760b1e0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "8dd57688-84c6-55f8-a477-ea87970c0067", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "397.89", - "basePoint": { - "x": 1265.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "013970e4-7b4f-5387-be5e-d5a9512958b0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "8834559e-64a3-5d0a-9fc1-abc0c5843f11", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.62", - "basePoint": { - "x": 1265.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2b6aaed9-ba13-59bb-a235-539fc10d985a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "8e9151a0-3e10-5db3-9186-a9f823078942", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "79487c05-03ce-5b5f-a336-a4ac725c5828", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.27", - "basePoint": { - "x": 1265.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b66175e3-a0c5-5a99-9fbf-bf48dff6b73e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1265.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "7095f6e6-f19a-54b8-a392-3c789477c52c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2360.664981814357 - } - } - }, - { - "id": "29841f2b-4532-53ef-88a7-7030438319ff", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198810788243, - "y": -2364.714981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2360.664981814357 - } - } - }, - { - "id": "9841c66e-31a9-5c8e-a6a6-b888f99cde87", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "ee6cfb58-cea1-5bdb-bea7-a90868601e00", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.165", - "basePoint": { - "x": 1285.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9302c2ca-954a-5410-a58f-fb77a0d6567d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "f6f969f0-1ea4-5a53-8b6e-b43c3a621050", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1285.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d18399f6-f2e5-556a-8231-4be91b7ed01d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "1dd47980-2e03-5c0b-bbdb-c8a4fe4a43be", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3300.00", - "basePoint": { - "x": 1285.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ed9b15f1-e73a-58ae-9d3e-a8d309e1f484", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "21e48742-19a5-54f3-90e6-615e6bd9bb8c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "398.70", - "basePoint": { - "x": 1285.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8c88cc34-1ded-5829-a77c-7b78ba8ccdf5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "ecca8c89-9077-506f-9cd6-f820206cf7e0", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "395.24", - "basePoint": { - "x": 1285.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e1e5a7d4-85f9-517f-adb4-ec49d008aee4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "6fa63874-d091-599d-aa0f-542e27e43146", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "ac08e5e3-6078-56cb-a61d-5bd2d5b33c2e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.46", - "basePoint": { - "x": 1285.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a4a4c1bf-ed14-590a-a344-e35861b40a82", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1285.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "b37db99d-a7db-5aba-908d-cd696f799085", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2369.664981814357 - } - } - }, - { - "id": "651f1cc5-e96e-58dc-b64e-798a7407ff63", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198810788243, - "y": -2360.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2369.664981814357 - } - } - }, - { - "id": "75901f34-b824-5a5c-a33c-bff7d06abec8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "9fd7ff9f-793b-5cb1-b090-923d4c82b720", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+10", - "basePoint": { - "x": 1295.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6d46f86c-cd7d-5be3-954b-ec2975498aff", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "3679e2ad-5924-5fb7-8abf-3ab1f494e36f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 1295.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6aa8765a-33cd-51aa-af65-c62e4927561f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "8cfca4cc-e217-5610-bc6e-ba27e95818c4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3310.00", - "basePoint": { - "x": 1295.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8555e9d7-8bbb-5406-acd4-33ff2d87cc24", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "5fae1416-ba3b-561b-9e5a-8a2d73982dc7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.90", - "basePoint": { - "x": 1295.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6b5e9d6d-89a7-534b-8f0f-1ce31279f1df", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "c6175555-d1e8-50cc-b77f-a81a04b9a83a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.54", - "basePoint": { - "x": 1295.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b3af4820-c261-5e1a-926a-09e6b1314d83", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "19106c19-6be2-51c6-b5cc-95478549bf5b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "48567c87-c5d5-5490-8941-abd7fe51c485", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.36", - "basePoint": { - "x": 1295.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b4fa3e7e-eba2-5974-9186-8eb6a3c200eb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1295.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "36dc8215-6e41-5035-906c-b634606fdd38", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2388.714981814357 - } - } - }, - { - "id": "7a50a989-b89b-5875-b18a-42b1375d33b3", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198810788243, - "y": -2369.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2388.714981814357 - } - } - }, - { - "id": "283c11b8-a827-5d4e-8ff0-49ecca671fc3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "3c45a221-f19a-52c6-85cb-a663d1b27ff2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.166", - "basePoint": { - "x": 1305.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1c51085b-78c2-592b-ae3c-931d0a716857", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "d849ad57-45a5-59b9-a470-da5e79d27728", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 1305.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "71ec5a43-9902-572a-aac2-d9fb0c29c6fe", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "2dfe07bd-a136-5dfa-9d90-fd06fb95b9e2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3320.00", - "basePoint": { - "x": 1305.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8f4a5045-25ad-5cc8-bdd1-e8336c3acc0e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "b819377e-fa55-5147-9db3-b1b7a5a14b27", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.09", - "basePoint": { - "x": 1305.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "04e0f0c1-9c11-5dda-a246-f357422a41ca", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "e5764cde-a32e-5c7d-a52a-1637d8394e73", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.85", - "basePoint": { - "x": 1305.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "602b1d8f-d3bb-5e8f-9767-f5e5dc2832c9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "e65fed84-1011-59ab-bdec-4f267ffe4e54", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.76", - "basePoint": { - "x": 1305.198811, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5dc18621-c4f4-5e22-936f-7cba7352d708", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "edd3c14b-ea3f-5168-8101-329b5f81e168", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1305.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "54fdac3f-b84f-547c-a009-81a73bfc13fb", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2389.814981814357 - } - } - }, - { - "id": "ca139d36-8fc4-5038-a61f-24b520e51d02", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198810788243, - "y": -2388.714981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2389.814981814357 - } - } - }, - { - "id": "f8100e35-1b66-55ff-9c5f-b68d4568f4aa", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "edc4a6cc-3ae9-575d-91ae-3691fe61a844", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.167", - "basePoint": { - "x": 1325.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d220158e-ed80-57c8-b7e0-30c7b941421b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "dc6f911e-2a28-5508-b4ef-9faf87644870", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1325.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "92a37726-e432-5f34-9d89-fd4711c56862", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "c4c79cec-41d4-5bc0-ac0c-81dd71855fec", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3340.00", - "basePoint": { - "x": 1325.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0a17724a-673c-510a-97f0-fa7b7593c7ab", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "50cf095a-9702-5ed0-bffb-02125f69b441", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.87", - "basePoint": { - "x": 1325.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "89893a42-1ca0-511c-9daa-73557f0fbc60", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "c254e80b-334a-57bc-8735-2818a2bbe835", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.47", - "basePoint": { - "x": 1325.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c357da6a-a521-5fd2-93e4-bdd35c41736e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "466d8db2-df08-57e3-a4ff-c0d576c4f84b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "e3a3e6ce-c081-5a34-b114-0c6b7070821c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.40", - "basePoint": { - "x": 1325.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f31a645d-3047-5433-acf9-7725a32e224c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1325.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "79e2a47a-104a-5bb1-981f-2947df4119d8", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2386.314981814357 - } - } - }, - { - "id": "0e965225-89ca-58f2-b83c-d67801605f5e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198810788243, - "y": -2389.814981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2386.314981814357 - } - } - }, - { - "id": "69a12a35-c2ec-5aa0-8246-0834643377fd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "850b53e1-e3b9-5261-849b-889b9ce271b3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.168", - "basePoint": { - "x": 1345.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "566fedf5-a4d5-5191-b393-e3d272451882", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "a8ebc539-f2fc-5268-8225-b964c4545ee8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1345.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3bf1ab50-570a-5ece-8085-1791dc7c79e3", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "b29cd708-23f4-5899-87a5-8be09eaa6a9d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3360.00", - "basePoint": { - "x": 1345.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "99914e2b-acdd-5bc3-8eba-c8213c1c279a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "9add4dfd-76f0-5166-9459-3298d0ad3e76", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.57", - "basePoint": { - "x": 1345.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "92cb4376-d066-53f7-b235-d59c66c04110", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "eef517f5-3c3d-5056-82d5-c6cb54c70c31", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.85", - "basePoint": { - "x": 1345.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2f52ae5f-e175-5fa0-a808-c4e8d02cea6a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "736c3366-0dd3-5b22-8b82-56784f1f2373", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "09d3d202-42b4-5e12-9865-43ab7a724404", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.72", - "basePoint": { - "x": 1345.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "714608be-17b7-5de2-b875-812932aec86e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1345.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "d1c6c819-1cde-569c-bcb7-a47c18a29f7e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2368.264981814357 - } - } - }, - { - "id": "dc166d7a-e2a0-5782-a839-21c0a0f79a32", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198810788243, - "y": -2386.314981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2368.264981814357 - } - } - }, - { - "id": "8c56c109-8ef9-59e7-bf54-80c096f7e0bb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "c6609293-ad4e-5a2a-a513-40d4d0bcba6e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.169", - "basePoint": { - "x": 1365.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d985ae29-c7ca-513b-a654-240bd3f27b13", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "68b709e1-fff7-5836-8ac1-2fc85591aeca", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1365.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b9764db5-caa3-516e-aa33-008cb196e93a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "8da7fc2f-8513-55b1-8522-54416d9d6adc", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3380.00", - "basePoint": { - "x": 1365.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f22d447d-7f00-5c31-ba59-05263d8ea7a8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "529ab187-13df-57c9-92ea-0004852128be", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "397.18", - "basePoint": { - "x": 1365.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "03a1e2ed-4c13-560a-8789-e18d8d045ed7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "5f1180b8-098b-52a3-a6ea-c77855371548", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.24", - "basePoint": { - "x": 1365.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2807670d-2109-5578-86f8-a1f4714af789", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "865e93b0-3543-55dd-a591-bd5c0d6068b1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "5401d9fd-7887-5c96-a297-2df2d73451ab", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "5.94", - "basePoint": { - "x": 1365.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1b36762a-dec8-51ed-ac23-ae749b560f57", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1365.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "350cb097-6c29-5eb4-8e10-de4a2d6e955e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2403.614981814357 - } - } - }, - { - "id": "b66f6f46-197f-56e3-841d-169fc135a7ff", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198810788243, - "y": -2368.264981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2403.614981814357 - } - } - }, - { - "id": "108ae9de-8a65-5a3e-a444-2446bd2b7c21", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "6f9cadb4-2bd6-5b9c-8fd5-43fd50f6e5f1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.170", - "basePoint": { - "x": 1385.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2a99366d-b14b-5189-80a1-0615eb4e695a", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "915f8596-421b-5825-955a-9de7d9c61568", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1385.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5b83dc01-5164-5014-80cc-20a46c6992e0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "3619a6ce-00f0-5e5c-9c73-84775ea388d9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3400.00", - "basePoint": { - "x": 1385.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1c86416d-1ad9-54a5-971f-cb467f75bb9c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "ce140150-496e-58fb-a742-5cfe3c20f897", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.11", - "basePoint": { - "x": 1385.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3e9d31b9-0ab5-5ac3-ac9b-961939baa74c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "5ef4ded7-5cee-5ae6-90c3-b89bd6b31e19", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.70", - "basePoint": { - "x": 1385.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "340ca1ad-e23c-5133-83af-c38a5ff9b1fd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "ba11c625-d5c2-53ee-8c47-2ebb43f35c6f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.59", - "basePoint": { - "x": 1385.198811, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d86f0104-50a4-5bc6-b127-0250caeb3177", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "02e090f2-b908-593e-b5a8-7fd7efbe3eca", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "36d4b19f-0d67-5e90-bb69-2f0111169f1e", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2419.364981814357 - } - } - }, - { - "id": "f5d88b47-6c18-5f20-9541-5f55fb9b14f4", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2403.614981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2419.364981814357 - } - } - }, - { - "id": "8f449973-3319-521b-9028-069b74b1fd0e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "18a74fcf-51df-5121-9eba-0571bd222d49", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+12", - "basePoint": { - "x": 1397.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "66445bcc-21d8-5d47-9644-e88cbb048390", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "32bb2a72-2183-5703-b447-2879b9b01e0e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "12.00", - "basePoint": { - "x": 1397.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "dc290d46-0bf7-5d31-a1fb-bd8df1647bc4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "f81c4de4-87c9-50af-9166-8df17df3d140", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3412.00", - "basePoint": { - "x": 1397.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "62449ee7-153d-5273-90bb-eb2f052391a1", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "029c6cfe-5599-5464-bc4e-ab6835b040db", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "386.96", - "basePoint": { - "x": 1397.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "eb4ebe70-07ca-5fb2-92ef-eb632ffea0ef", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "2d766847-53a7-5898-a4d5-b42f06dba56a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.76", - "basePoint": { - "x": 1397.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fe37bced-3966-51de-bed9-676187eeb5f2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "93293ed0-b53d-51d8-8109-0b1f5e42746f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.80", - "basePoint": { - "x": 1397.198811, - "y": -2500.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e2285fe7-a2eb-5312-a4c6-1fc88b0adb1f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "2cd48c5f-8620-5277-844f-4f6feb24cc10", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1397.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "ca77e57f-35b7-5725-9395-1f81bc23aa09", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2397.264981814357 - } - } - }, - { - "id": "d3b4c64c-dcb9-5998-b42a-e608a2901ce1", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198810788243, - "y": -2419.364981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2397.264981814357 - } - } - }, - { - "id": "36c5eaaf-cdf6-53f9-ba6b-56c2597bb1f6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "6dc5791a-3537-5f97-acd3-7a487955308f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.171", - "basePoint": { - "x": 1405.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a095554f-bbf6-5f44-8e7e-8312810c8a46", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "b6a363db-2a2a-5ddb-8743-956e8829b167", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "8.00", - "basePoint": { - "x": 1405.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f4a8e6f4-e5a3-52ab-90eb-78a791a01216", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "2e02c842-e601-52dc-95b5-992b9195bb3a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3420.00", - "basePoint": { - "x": 1405.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c651fb50-9e28-523f-8592-c9039bc2b1bd", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "8a0cbc91-4767-5584-86d3-b8bcba501de3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.38", - "basePoint": { - "x": 1405.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4b0fa194-9332-5f75-85c5-2d529001738d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "6beea052-cccb-5c5a-a0b9-30985ad722e9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.00", - "basePoint": { - "x": 1405.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e8528621-8eed-51cb-8e50-cfba6e707380", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "05854929-75b8-538b-9333-1ddd9e3a6f18", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "dd3c01b4-8add-5dcd-87c4-be4080cbe42a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.38", - "basePoint": { - "x": 1405.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0a46232f-c6e7-5d01-84a9-c3c7b07abaf0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "00438a24-753c-510b-ae2c-14bc20ccfbc6", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2381.614981814357 - } - } - }, - { - "id": "df2d6c88-c6b6-53f3-b338-21ad3abb0d00", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2397.264981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2381.614981814357 - } - } - }, - { - "id": "b3364584-5597-56a4-8b90-3143a3df8391", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "91f2fef9-7b9d-56ed-a15e-8ace522b0713", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.172", - "basePoint": { - "x": 1425.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "68aae8a7-a96d-5a7c-8b34-55ce6bd78425", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "3f3d7aef-1005-52a9-b137-41021f1fe1d4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1425.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8455a368-e2de-5144-8078-d85af43ae1c2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "0fa2712c-eb62-51f2-af6b-d0dcaf28b2e8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3440.00", - "basePoint": { - "x": 1425.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ff73cbf1-2501-5a84-8f22-facac27283c9", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "4a399a7f-2139-52ee-8983-3fe190fb0865", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.51", - "basePoint": { - "x": 1425.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a3dac9d5-9eb0-5ea2-a64f-d9c916fc9cb6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "77a83314-c9fa-5c9c-9ffd-44064bc0cbd2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.25", - "basePoint": { - "x": 1425.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "aa24abe4-e58d-5777-ac69-265bd50950af", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "66a1dfa4-d70b-55ec-95e9-92a5f50205a5", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "6b0fba9b-545a-5914-ac0a-dbab4090dd4f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "2.26", - "basePoint": { - "x": 1425.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9fb67c2b-4dda-57c0-a9e5-149b6018f328", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1425.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "d04e35aa-d930-5d5c-b05b-25359ca7c47d", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2369.314981814357 - } - } - }, - { - "id": "e62f5355-67aa-529f-a8b5-5de27a561fb3", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198810788243, - "y": -2381.614981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2369.314981814357 - } - } - }, - { - "id": "0d3cac61-1e32-5e54-bc45-0aa565d5bb08", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "ae8115a0-9e3d-58f6-8f11-0c086777482a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.173", - "basePoint": { - "x": 1445.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7aab4380-8c3c-5a30-a76e-f8c0160fb743", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "4be1ea77-3c61-5514-9fb9-10baef400a7f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1445.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1e43eca3-bee3-5e75-9c4b-d36f8b5f579b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "f87a4e0d-89d8-5f9f-8e67-0c1fb38db275", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3460.00", - "basePoint": { - "x": 1445.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "eac0bc3b-e1de-52c2-b431-2604ae48adc0", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "1bd0d66c-0381-5942-afc3-9c9ad9a374b3", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.97", - "basePoint": { - "x": 1445.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1468c43c-5c51-58a0-abb2-95930e230eea", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "c5a3c3fc-691f-558e-984e-e0f97f8fdf73", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.67", - "basePoint": { - "x": 1445.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7bcc2bb7-25e4-5e0b-9580-6c147e8bed6d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "b99d94a2-6f86-5bc5-9e0b-24059186c6e6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "7a73f696-3dca-5518-915f-52943fc248d1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3.30", - "basePoint": { - "x": 1445.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cd6bbd25-118f-56a5-af23-4fcf482f96d4", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "7d6d3905-4c00-5ce8-8356-53b4ea86d062", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2372.964981814357 - } - } - }, - { - "id": "2312df28-7b40-5343-ada3-16c5e2947086", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2369.314981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2372.964981814357 - } - } - }, - { - "id": "b749373c-4a59-5e91-959c-83dbbedd73bb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "f45193f8-fbd5-59c6-b261-d05d5568d952", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.174", - "basePoint": { - "x": 1465.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5760db3e-31ec-5f86-99fe-89952b33588c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "6f1b37cf-0f00-5c18-aeb5-36228d7669cf", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1465.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "40cb3067-762b-5c65-a60d-40ea4870f98b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "692f758f-030d-5e26-bac9-76b4725263fe", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3480.00", - "basePoint": { - "x": 1465.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "db875690-6016-5ad1-b268-325f3ea65a27", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "51167560-3065-51aa-abc2-fb2f8b3a989c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.24", - "basePoint": { - "x": 1465.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c6399d13-4219-5f56-b31a-44795f534a1b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "d2a35bc8-1170-543d-99f1-729ef0d67634", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.43", - "basePoint": { - "x": 1465.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "bd29c4fd-1cf1-5ae3-acba-b26347ea2188", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "3e08c2ee-4066-5f28-a369-c49b5add0950", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "d7e41d66-b991-54dd-80b8-2ac76472195d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.81", - "basePoint": { - "x": 1465.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "02de0bd9-b66e-5825-91b3-7c429462879e", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1465.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "56a84aa7-d6fa-5045-88bc-6a30183ab1ba", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2375.214981814357 - } - } - }, - { - "id": "77ed8d38-4f1d-5919-a656-b34272edfb8d", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198810788243, - "y": -2372.964981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2375.214981814357 - } - } - }, - { - "id": "30540861-bf98-5f2e-874b-a10a9df8d21f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "c4242881-d058-5e17-99f6-d5361eb96f1e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.175", - "basePoint": { - "x": 1485.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "52c2f7a6-4903-5e68-9a69-80a4bebeb35f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "2c6939d2-fca9-5ab6-bcaf-f3f4d2facb14", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1485.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "96d09528-b681-5cab-b039-f64b47a3b29c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "af27ac6e-c34c-592f-965c-071bba314190", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3500.00", - "basePoint": { - "x": 1485.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0dba9df1-1fdb-5b9d-9b35-66cd1da04165", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "d926ca59-a9e0-5131-b7e8-5f3b2e4fd105", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "395.79", - "basePoint": { - "x": 1485.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9a486a49-4487-52b3-9e7e-0770de7f84a8", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "08b9f7d5-3ba6-56c1-92db-82e61de88bef", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "393.84", - "basePoint": { - "x": 1485.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "74ce57a3-ff32-596a-bfc4-d88f9fc1e038", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "9d2e9080-e534-566e-8014-f087c8056810", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "4acb2a25-d637-5280-a1b6-4216592539f6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.95", - "basePoint": { - "x": 1485.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8762bda0-3ebe-5572-8852-1b6bb2c6fa4d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "4c5bf86e-9e9a-5ab0-a8e8-d46321215f16", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2383.764981814357 - } - } - }, - { - "id": "c2c6fe60-05c8-5efc-9c27-c0381efa4a33", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2375.214981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2383.764981814357 - } - } - }, - { - "id": "cf845b9a-dd7d-5670-b952-22841c153cb2", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "7253e31e-412c-5192-a07a-fa516db07adb", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.176", - "basePoint": { - "x": 1505.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a6352dc6-5ee6-5af2-9858-73069f0a04c6", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "d83908c2-5ca8-503f-acc2-66c8df35d83b", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "20.00", - "basePoint": { - "x": 1505.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c1d0a145-aa54-500a-b0e8-ea6b7f7b1a01", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "33923e88-89d4-5848-8d2f-7ac15c71b690", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3520.00", - "basePoint": { - "x": 1505.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7cfd5641-27c5-5b1e-986a-4fe7d755576b", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "1793d1ca-0779-53ef-9938-097f202705a7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "394.08", - "basePoint": { - "x": 1505.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "172bb962-62b5-5108-b5a5-89e149b2a3aa", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "e90eb966-a853-576d-9298-53812b4da6cf", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.59", - "basePoint": { - "x": 1505.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "96c88b1a-c6ad-595b-a9c1-59cff45fe14f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "b816f51a-1078-57e8-97e7-83be4067821f", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "4f1ad221-39a5-5549-80b4-dc60cd89b30f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "1.49", - "basePoint": { - "x": 1505.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "56b05558-0800-5608-b0dd-2f64a5493714", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1505.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "7c5f92f5-5d4a-5eeb-9a84-e1aae0dac905", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2392.314981814357 - } - } - }, - { - "id": "f21f0bb8-9199-5457-8746-a3b19392d3a8", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198810788243, - "y": -2383.764981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2392.314981814357 - } - } - }, - { - "id": "8c6b7e45-005c-57dd-928d-f2ca6957bda7", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2584.164981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2583.664981814357 - } - } - }, - { - "id": "b60a9c14-195f-5e4e-850c-e99d51b34e5e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "+10", - "basePoint": { - "x": 1515.198811, - "y": -2576.664882 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "181f3d6c-8fbc-5484-b099-d5bebf9926ef", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2569.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2568.664981814357 - } - } - }, - { - "id": "d787f5d3-fc0a-552d-a6f2-f91ed7bd92ff", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "10.00", - "basePoint": { - "x": 1515.198811, - "y": -2560.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "333f337e-35b9-52af-a5f8-8b191797f849", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2554.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2553.664981814357 - } - } - }, - { - "id": "271fac00-3b79-53ac-83f5-6ffb2feae2a6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "3530.00", - "basePoint": { - "x": 1515.198811, - "y": -2545.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "68703eff-5fc2-5233-a820-56912edb905c", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2539.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2538.664981814357 - } - } - }, - { - "id": "c0996600-4545-575e-87eb-13228f56dba9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.37", - "basePoint": { - "x": 1515.198811, - "y": -2530.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "80036819-1bd7-509c-bf22-09d33446bf31", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2524.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2523.664981814357 - } - } - }, - { - "id": "53a00f15-c3db-569e-8182-18995e2b2c5d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.96", - "basePoint": { - "x": 1515.198811, - "y": -2515.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f4fdd7e6-d8ab-5c9d-860d-2b4c35f68a2d", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2509.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2508.664981814357 - } - } - }, - { - "id": "fb15c5b6-d577-55ca-b75e-3c63fb6751cb", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2494.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2493.664981814357 - } - } - }, - { - "id": "cd542287-6f34-5ca8-855c-7491221ae911", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.41", - "basePoint": { - "x": 1515.198811, - "y": -2485.664982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "51f25125-87fb-5be4-a63e-15f5f753f695", - "type": "Line", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2479.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2479.164981814357 - } - } - }, - { - "id": "93e16baf-ff01-5e7e-a374-9a03e9cab845", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2454.164981814357 - } - } - }, - { - "id": "1e9d460c-19cd-5fc5-a2ac-dbd4bd6ef2ca", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "-0.60", - "basePoint": { - "x": 1165.198811, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "252b6704-bc2e-5b1f-97d6-0da4f5a4ce81", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.08", - "basePoint": { - "x": 1385.198811, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b6d2cc4b-7fa5-58af-9735-145c9d1788fb", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.51", - "basePoint": { - "x": 1397.198811, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4f255eaa-0ac2-5596-bc12-65459ff38f8d", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "0.18", - "basePoint": { - "x": 1405.198811, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d6e7ee7a-3e40-59ef-a40f-54fd95ab4b7e", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "-0.67", - "basePoint": { - "x": 1465.198811, - "y": -2439.164972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ab385b04-7d51-513a-814c-5c09c5fc0403", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "6facf82d-83ce-529c-8816-2e949c6a6103", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2428.364981814357 - } - } - }, - { - "id": "9128f35c-d6ee-57a0-862b-2c13108dd901", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1149.498810788244, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 1145.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "5b840d91-d886-50ba-aa00-41938f0089bb", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1145.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1149.498810788244, - "y": -2441.964981814357 - } - } - }, - { - "id": "eebe3f8c-c7da-5df6-90da-532d4a572959", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2428.364981814357 - } - } - }, - { - "id": "6750ef26-739c-56ae-b53b-bee4bfc7ea1b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1180.898810788243, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 1185.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "54df1b0e-793b-551e-af86-df3e4c287d52", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1185.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1180.898810788243, - "y": -2441.964981814357 - } - } - }, - { - "id": "a1cbb424-734f-562c-9dc7-fad8b7b8a166", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "L=40.00", - "basePoint": { - "x": 1165.198811, - "y": -2443.364982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9bbb4b11-462a-57ef-acf1-8ec8edef1f9b", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "K=3.36", - "basePoint": { - "x": 1165.198811, - "y": -2446.864982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "08c38d0e-2314-58c9-8566-b7b0f49a98a0", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "BVC= No158 (EL=403.51)", - "basePoint": { - "x": 1147.448811, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a0ba2e2d-e49d-5b1d-813b-f468b2078a10", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "EVC= No160 (EL=402.73)", - "basePoint": { - "x": 1182.948811, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cbd3bcdf-b2c3-559e-94ad-4c57f86ec561", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1377.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1417.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "0b4890d6-16cd-5b5e-88d1-b1d49147159c", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1377.198810788243, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 1377.198810788243, - "y": -2428.364981814357 - } - } - }, - { - "id": "27e6d9d1-fd54-55af-ade0-accbb074bc16", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1381.498810788244, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 1377.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "22cad47a-09a3-5402-ae87-2e93edce3fc9", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1377.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1381.498810788244, - "y": -2441.964981814357 - } - } - }, - { - "id": "8c1dceb0-4650-5cf1-9e3b-99b6c46c01de", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1417.198810788243, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 1417.198810788243, - "y": -2428.364981814357 - } - } - }, - { - "id": "4080a5cc-4460-579e-b280-8a71fedcdd8b", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1412.898810788243, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 1417.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "e153e87d-6cf7-5c60-9cb3-e96656f2a299", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1417.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1412.898810788243, - "y": -2441.964981814357 - } - } - }, - { - "id": "948eb167-dd98-54d9-9364-550ac84749d8", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "L=40.00", - "basePoint": { - "x": 1397.198811, - "y": -2443.364982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "854cc047-0d33-52f2-b8fe-3ea87f24ccc0", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "K=3.92", - "basePoint": { - "x": 1397.198811, - "y": -2446.864982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fe50c982-fb75-56fe-b521-62268a55be22", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "BVC= No169+12 (EL=390.87)", - "basePoint": { - "x": 1379.448811, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c03bdd62-1c22-5d4b-a5f7-2d272a03700d", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "EVC= No171+12 (EL=391.75)", - "basePoint": { - "x": 1414.948811, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e3a02b3f-cb13-5f0d-bb85-a97f5d049831", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "73459e3e-aad9-557b-81fb-98c297b16b6a", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2428.364981814357 - } - } - }, - { - "id": "ce909437-9db6-5b3d-b451-4280196bf07a", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1449.498810788244, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 1445.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "2889852b-dc75-5fef-b4e1-dd94ea3a9cb3", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1445.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1449.498810788244, - "y": -2441.964981814357 - } - } - }, - { - "id": "45930068-4498-52b7-b08b-3254285ce872", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2448.364981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2428.364981814357 - } - } - }, - { - "id": "5e515bcc-1145-5daa-a504-024480106c38", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1480.898810788244, - "y": -2439.764981814357 - }, - "endPoint": { - "x": 1485.198810788243, - "y": -2440.864981814357 - } - } - }, - { - "id": "1e50c141-2e0a-59e8-b903-95e284cfb915", - "type": "Line", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "startPoint": { - "x": 1485.198810788243, - "y": -2440.864981814357 - }, - "endPoint": { - "x": 1480.898810788244, - "y": -2441.964981814357 - } - } - }, - { - "id": "fa007c98-9e7e-5b36-9c01-23adccb3ddd4", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "L=40.00", - "basePoint": { - "x": 1465.198811, - "y": -2443.364982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5a370b3f-5f51-5d11-92c0-1a2296020a71", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "K=2.98", - "basePoint": { - "x": 1465.198811, - "y": -2446.864982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f60fc1b0-379c-5245-a27a-5aab9e99530c", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "BVC= No173 (EL=393.67)", - "basePoint": { - "x": 1447.448811, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ecf26d47-c731-5cb9-8c70-578fe30240a0", - "type": "Text", - "lineColor": "#808080", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "EVC= No175 (EL=393.84)", - "basePoint": { - "x": 1482.948811, - "y": -2430.364982 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "left", - "textColor": "#808080", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "85bd731e-c155-520d-aa51-1f57687ebcde", - "type": "Arc", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 985.1988107882435, - "y": -2471.664981814357 - }, - "radius": 7.5, - "startAngle": 4.71238898038469, - "endAngle": 1.5707963267948966, - "counterClockwise": true - } - }, - { - "id": "15db7e7b-2f23-5412-84a1-5efce28a5992", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "396.90", - "basePoint": { - "x": 985.698811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "cf52a96e-5302-5d2d-a9c2-51077d276777", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.1988107882435, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 985.1988107882435, - "y": -2464.164981814357 - } - } - }, - { - "id": "32872bae-95c5-5dc8-b7bc-81379da677ce", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1045.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "49fd3f1a-610c-5262-937e-f3731ca5016d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "399.42", - "basePoint": { - "x": 1045.198811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ebfe743b-1a38-547e-b9ee-ae5f80979b7f", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1105.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "851f549c-ef40-51cf-9332-acbd5e65f199", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "401.90", - "basePoint": { - "x": 1105.198811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0eb1d52c-0be7-5d7f-9603-fc9207a31a5d", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1165.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "dd991577-5a6b-5ebb-9f0b-616b1acc658e", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "404.31", - "basePoint": { - "x": 1165.198811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ac09ab82-6f0d-5b2b-b765-a1bd00097667", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1245.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "973408ce-6c11-52a5-9d89-cc28042e9055", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "398.00", - "basePoint": { - "x": 1245.198811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1248ea75-d80f-59af-80d7-b13c33d69028", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1325.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "d5939f3c-39d7-5245-97b1-0bf4d388066d", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "392.47", - "basePoint": { - "x": 1325.198811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7d029b6a-6a69-5655-bd13-149e5324c9fd", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1397.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "b9d822fc-757f-59cb-afe7-391a8ad78037", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.25", - "basePoint": { - "x": 1397.198811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b81d2181-e8cb-563f-bcfa-d510756d26ff", - "type": "Circle", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1465.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5 - } - }, - { - "id": "f7fa7b66-66bf-52d1-9acb-c90847c9bd93", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "395.10", - "basePoint": { - "x": 1465.198811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "71af8b1a-3dc1-531c-ab68-6acc867bc247", - "type": "Arc", - "lineColor": "#00ff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "center": { - "x": 1515.198810788243, - "y": -2471.664981814357 - }, - "radius": 7.5, - "startAngle": 1.5707963267948966, - "endAngle": 4.71238898038469, - "counterClockwise": true - } - }, - { - "id": "ec76c106-dfad-5458-968d-06807d09a5bb", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "391.96", - "basePoint": { - "x": 1514.898811, - "y": -2471.664972 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "81a016fe-41f6-5ec0-a7bc-c12cfc29df3c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1515.198810788243, - "y": -2479.164981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2464.164981814357 - } - } - }, - { - "id": "1d79cdb6-b4a7-5bd9-8d2d-3da9d30dfd28", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 988.0083607882434, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 1042.389260788244, - "y": -2464.711101814357 - } - } - }, - { - "id": "788a2a16-02f6-5bfd-b678-5b30c33c5d54", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=60.00m", - "basePoint": { - "x": 1015.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1f21486a-6556-5bc0-a52f-a8c517175740", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=2.52m", - "basePoint": { - "x": 1015.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c61e3893-f673-50f8-9661-cef2861d2a09", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=4.20%", - "basePoint": { - "x": 1015.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2665fdb0-6f0e-55c4-b6c0-a84bee9aaac3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1048.008360788243, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 1102.389260788244, - "y": -2464.711101814357 - } - } - }, - { - "id": "0249563f-4592-5a9d-9cb0-7fd06d224a96", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=60.00m", - "basePoint": { - "x": 1075.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "58014014-4027-5646-b91c-ef99576c1800", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=2.48m", - "basePoint": { - "x": 1075.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b3dfbc9c-8868-514a-9be7-cf3a65cd7c76", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=4.13%", - "basePoint": { - "x": 1075.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "551ababe-0849-5c5b-831d-d4700ce41cc7", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1108.008360788243, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 1162.389260788244, - "y": -2464.711101814357 - } - } - }, - { - "id": "4da925c9-4406-5cc5-b9c3-308220d72261", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=60.00m", - "basePoint": { - "x": 1135.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e0b3b668-1c2a-5677-8686-9c95a57c6da9", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=2.41m", - "basePoint": { - "x": 1135.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "261bd0fe-c2bf-5add-9cde-686e33d8c90c", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=4.02%", - "basePoint": { - "x": 1135.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "519e7762-e18f-5761-b5bd-3a9fb6770237", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1168.008360788243, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 1242.389260788244, - "y": -2478.618861814357 - } - } - }, - { - "id": "a63b0c82-7613-5829-a200-cfeb5c0c2c8f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=80.00m", - "basePoint": { - "x": 1205.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e3a189ff-fac1-5638-8bc9-6473d959a0e7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-6.31m", - "basePoint": { - "x": 1205.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c1705846-9772-5a55-b461-66d11b556aef", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-7.89%", - "basePoint": { - "x": 1205.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "19a3a98a-8b51-5e04-91af-99b9753f4f92", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1248.008360788243, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 1322.389260788244, - "y": -2478.618861814357 - } - } - }, - { - "id": "652b5e87-cc32-5005-b2b9-7fc91d05da38", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=80.00m", - "basePoint": { - "x": 1285.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fc675fbd-8594-5a76-8e35-92c3b070280a", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-5.53m", - "basePoint": { - "x": 1285.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ef9ac299-1ec4-57d8-920c-8bcc63a498bf", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-6.91%", - "basePoint": { - "x": 1285.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8a624092-7777-5ba5-91d3-38692c72f49d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1328.008360788243, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 1394.389260788244, - "y": -2478.618861814357 - } - } - }, - { - "id": "8ec2113c-c690-5953-8cbe-293cff431082", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=72.00m", - "basePoint": { - "x": 1361.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "66192ae8-2180-55e6-81a9-59a6c173b326", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-2.22m", - "basePoint": { - "x": 1361.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "052c0281-3d5a-5373-899d-aaaa4e4971f4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-3.08%", - "basePoint": { - "x": 1361.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1c438bad-95db-59b7-9cf9-17651bf04d54", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1400.008360788243, - "y": -2478.618861814357 - }, - "endPoint": { - "x": 1462.389260788244, - "y": -2464.711101814357 - } - } - }, - { - "id": "f64f19f8-a670-5d7e-acc9-cefb49f52fa6", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=68.00m", - "basePoint": { - "x": 1431.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fbea3ef5-fe17-51fe-9b17-52a2efc24c97", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=4.85m", - "basePoint": { - "x": 1431.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "fcad9f2e-7cdf-55ee-9b49-cb2c79fba4f1", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=7.13%", - "basePoint": { - "x": 1431.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9f511731-bd83-5624-a659-cbdd1633f1b3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1468.008360788243, - "y": -2464.711101814357 - }, - "endPoint": { - "x": 1512.389260788244, - "y": -2478.618861814357 - } - } - }, - { - "id": "713c7e47-ba1d-5cba-908a-23de0b2dbba5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L=50.00m", - "basePoint": { - "x": 1490.198812, - "y": -2467.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d679858f-5799-57dd-99e3-2a316ea9575f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "H=-3.14m", - "basePoint": { - "x": 1490.198812, - "y": -2471.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4eacd2bc-6030-53cd-8809-bfe46b8afa02", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "S=-6.28%", - "basePoint": { - "x": 1490.198812, - "y": -2475.664982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 2.5, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b7e12c9a-f007-5e52-a17f-9be705e7e120", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "74a789f2-1db2-54d1-ace8-68e26998a1e9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2454.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2324.164982 - } - } - }, - { - "id": "8d09b61b-4463-5f09-8c1e-47ed91d03f00", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2324.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2324.164982 - } - } - }, - { - "id": "802e9219-ca97-5cc0-a194-b1143846b285", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2324.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2454.164982 - } - } - }, - { - "id": "9bdf443c-fed9-58e1-afd1-c26091c41a97", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2454.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2454.164982 - } - } - } - ] - }, - { - "id": "40000055-a132-5448-8681-9bd5a7fd5daf", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2454.164981814357 - }, - "endPoint": { - "x": 971.1988107882435, - "y": -2454.164981814357 - } - } - }, - { - "id": "bd7a211d-a054-54b8-93c0-cb5181dffc92", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "380.00", - "basePoint": { - "x": 955.198821, - "y": -2453.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "adf0f6c4-ce68-5d30-89da-740df62cbbaf", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2404.164981814357 - }, - "endPoint": { - "x": 971.1988107882435, - "y": -2404.164981814357 - } - } - }, - { - "id": "e160bee3-2026-54fc-a3e7-63fd12bdef84", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "390.00", - "basePoint": { - "x": 955.198821, - "y": -2403.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a09b0764-9261-554c-a92e-4b337abfa372", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2354.164981814357 - }, - "endPoint": { - "x": 971.1988107882435, - "y": -2354.164981814357 - } - } - }, - { - "id": "b269a85b-3a78-529d-8edb-e923c15a32d5", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "400.00", - "basePoint": { - "x": 955.198821, - "y": -2353.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "34075a1d-a578-5058-822f-41e78d279719", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 955.1988107882435, - "y": -2324.164981814357 - }, - "endPoint": { - "x": 971.1988107882435, - "y": -2324.164981814357 - } - } - }, - { - "id": "ed6d8693-61a8-5ee8-82ed-bf4d504df13f", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "406.00", - "basePoint": { - "x": 955.198821, - "y": -2323.264982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#ffff00", - "fontSize": 3.75, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f0819e8a-ae93-5983-ad68-8df392d616bc", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2444.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2444.164981814357 - } - } - }, - { - "id": "0c7430e5-dccb-5444-aa1e-499e69b84846", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2434.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2434.164981814357 - } - } - }, - { - "id": "8586b621-d38c-51be-aa3f-f7685164d2ac", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "39b99220-32bf-5d2c-8157-cb0f08e9fd02", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2444.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2434.164982 - } - } - }, - { - "id": "a90d3067-cfb7-5feb-b0d8-0626c4968b7a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2434.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2434.164982 - } - } - }, - { - "id": "19a52220-b65a-5a2e-9c21-fb8e839117ee", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2434.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2444.164982 - } - } - }, - { - "id": "c9e625e0-95e2-55c2-830e-2470c5689257", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2444.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2444.164982 - } - } - } - ] - }, - { - "id": "6cb0fa5b-3d0f-5ae5-8e42-371b9d189ce8", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "a87055a1-6ff7-5b03-847e-bfcf66a4284f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2444.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2434.164982 - } - } - }, - { - "id": "d4f16974-f8cb-5d59-b9d1-d94e9d6c17c4", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2434.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2434.164982 - } - } - }, - { - "id": "f3dc7d6c-e1bf-5488-bc98-be08e0fa7e2d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2434.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2444.164982 - } - } - }, - { - "id": "5c78952b-d3cf-528e-ad73-0660fd7d29b2", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2444.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2444.164982 - } - } - } - ] - }, - { - "id": "28749743-caf7-56b4-9297-33e4f25e3027", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2424.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2424.164981814357 - } - } - }, - { - "id": "b827fc4f-0ff7-5831-8399-07f9aee85025", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2414.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2414.164981814357 - } - } - }, - { - "id": "89db1188-9946-5c5f-b5f5-11d8a990eb11", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "9e43920f-e941-5bfd-87f6-dfab619afa92", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2424.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2414.164982 - } - } - }, - { - "id": "491650d9-e608-5ba8-bfa0-e6f465c14bc2", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2414.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2414.164982 - } - } - }, - { - "id": "dd53bf91-9051-58c6-b024-e6df8d1d7c26", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2414.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2424.164982 - } - } - }, - { - "id": "31d5e164-bd07-5684-8f19-5f94df519f00", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2424.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2424.164982 - } - } - } - ] - }, - { - "id": "937e9345-a359-5adb-b954-0cec317714b1", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "cba4586b-e975-5f88-ac84-f4afda48b1d6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2424.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2414.164982 - } - } - }, - { - "id": "05900e15-18c0-5bf1-8420-161ba40f3217", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2414.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2414.164982 - } - } - }, - { - "id": "e08c989f-086a-5d49-a862-f2deca03b03b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2414.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2424.164982 - } - } - }, - { - "id": "5614008b-8e58-5a6e-8028-1718ccba3993", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2424.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2424.164982 - } - } - } - ] - }, - { - "id": "8c017eed-6032-51c2-a3b1-0581382b6c33", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2404.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2404.164981814357 - } - } - }, - { - "id": "93277c73-afdb-506d-ba57-867ee46dda4c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2394.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2394.164981814357 - } - } - }, - { - "id": "41fadfe8-d8a0-53d4-a829-c638b67683d0", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "2275ef29-88ce-5975-8875-ef3b1d41c106", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2404.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2394.164982 - } - } - }, - { - "id": "7c82f0a2-f769-58da-9599-e02a584ec32d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2394.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2394.164982 - } - } - }, - { - "id": "aa3ca3e6-46d3-5386-9bc3-491c0fbcf525", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2394.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2404.164982 - } - } - }, - { - "id": "a682eeb7-4958-5025-8606-daedc5b4f5e2", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2404.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2404.164982 - } - } - } - ] - }, - { - "id": "9e6409f1-25fa-516b-a35a-ca20b84588b6", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "87c7a733-17f2-5e01-aa78-318d2297d2df", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2404.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2394.164982 - } - } - }, - { - "id": "8dda8bef-8997-5126-9fc6-9f0379f18785", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2394.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2394.164982 - } - } - }, - { - "id": "8df704c0-2570-597c-8d55-906fde52448c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2394.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2404.164982 - } - } - }, - { - "id": "a8ff5da7-417c-5aa3-9f97-66858fc123a0", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2404.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2404.164982 - } - } - } - ] - }, - { - "id": "a7a39935-1051-539b-b37a-20201e34b786", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2384.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2384.164981814357 - } - } - }, - { - "id": "c81a3ef6-fbd8-5fd7-817f-0f44c65ac3e7", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2374.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2374.164981814357 - } - } - }, - { - "id": "ac26e147-7a89-5a3f-af4e-cf5fe267e4a3", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "ede9fa15-fa93-5a01-a744-046f835e970a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2384.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2374.164982 - } - } - }, - { - "id": "75fb2b69-4efb-5a7b-80cb-1e2faa441932", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2374.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2374.164982 - } - } - }, - { - "id": "335764cb-3451-5085-993d-098d146c600c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2374.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2384.164982 - } - } - }, - { - "id": "36741423-9429-52f7-8bcd-c0f611e8522a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2384.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2384.164982 - } - } - } - ] - }, - { - "id": "62f567c6-e9c2-59f6-a513-3f57745085a2", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "8ae9aabf-5cc0-5ac9-8dd8-12e314d5c313", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2384.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2374.164982 - } - } - }, - { - "id": "ff4e6969-9887-5ba7-91de-ee268ff1e6a8", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2374.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2374.164982 - } - } - }, - { - "id": "bf2c8655-8eea-5c0d-8c73-b8a60983b542", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2374.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2384.164982 - } - } - }, - { - "id": "6d49d3b7-f47c-51b5-bc33-8c20b320a026", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2384.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2384.164982 - } - } - } - ] - }, - { - "id": "f97e2a7c-946e-5239-9679-db268bde1371", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2364.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2364.164981814357 - } - } - }, - { - "id": "069b3261-83f6-52f7-b6fc-9da2745b5a46", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2354.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2354.164981814357 - } - } - }, - { - "id": "d5a5faf1-4861-59ac-a8b6-babcd1263f26", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "3c49b9e4-ddde-5bd7-87ef-0289aa06f321", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2364.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2354.164982 - } - } - }, - { - "id": "94f5cc95-d234-5fde-a584-9144374c1718", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2354.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2354.164982 - } - } - }, - { - "id": "01b4d0ac-22ac-5fb8-a101-cb0473598dea", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2354.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2364.164982 - } - } - }, - { - "id": "aee12afc-3c6c-593b-a9d7-ee601339c008", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2364.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2364.164982 - } - } - } - ] - }, - { - "id": "bff083ad-beb0-5788-97aa-d8a7f683c3aa", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "7517f0b8-e509-5a6b-874d-56e9463dadb1", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2364.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2354.164982 - } - } - }, - { - "id": "2ecd7e86-3f71-54f3-bf69-2e9da9eec1e9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2354.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2354.164982 - } - } - }, - { - "id": "d7858383-b0bc-5a01-b555-603b96c98b57", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2354.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2364.164982 - } - } - }, - { - "id": "7165df65-4be5-5a36-bf87-00cd2735468e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2364.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2364.164982 - } - } - } - ] - }, - { - "id": "41c0c0b7-032f-5832-9976-45c7bfe69c9e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2344.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2344.164981814357 - } - } - }, - { - "id": "e9ed20ce-51e4-5e54-b420-76cb2da3788b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2334.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2334.164981814357 - } - } - }, - { - "id": "e9c6f0b6-7679-532d-bc07-baf63e2dfb24", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "666e2a62-0433-567d-b3d2-ae8d60a1c11b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2344.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2334.164982 - } - } - }, - { - "id": "14ea040f-7394-510b-b87b-548978894032", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2334.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2334.164982 - } - } - }, - { - "id": "33f0c65d-b933-5fb9-b7a2-d3498a08339d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2334.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2344.164982 - } - } - }, - { - "id": "60454a70-ef0e-5642-ba12-895cf6033655", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2344.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2344.164982 - } - } - } - ] - }, - { - "id": "fc64c49c-4e41-584e-9c99-8bfbed5b4e43", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "8cbdf971-fbd7-5c82-8ddd-f96d9f613e1c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2344.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2334.164982 - } - } - }, - { - "id": "f699cbb1-7140-5deb-867c-356e3ffdd1bc", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.698811, - "y": -2334.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2334.164982 - } - } - }, - { - "id": "cec740b6-1302-528c-84d1-5d369393f41b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2334.164982 - }, - "endPoint": { - "x": 975.198811, - "y": -2344.164982 - } - } - }, - { - "id": "2cee022c-a46b-5518-b77b-c48f0befd1ff", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 975.198811, - "y": -2344.164982 - }, - "endPoint": { - "x": 973.698811, - "y": -2344.164982 - } - } - } - ] - }, - { - "id": "aa39e583-285e-5474-88b5-7364d10f2334", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 973.6988107882435, - "y": -2324.164981814357 - }, - "endPoint": { - "x": 975.1988107882435, - "y": -2324.164981814357 - } - } - }, - { - "id": "a9c82cce-cf36-5a24-bcc8-5e97693b2176", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "a3c54116-8fa7-561b-9c1b-6fd800735134", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.198811, - "y": -2596.664982 - }, - "endPoint": { - "x": 993.598811, - "y": -2596.664982 - } - } - }, - { - "id": "3cd4626b-2e58-5b22-8f80-db90451154a3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 993.598811, - "y": -2596.664982 - }, - "endPoint": { - "x": 993.598811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "55452f02-1b5e-561e-8295-ad21104f56f0", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 8.40", - "basePoint": { - "x": 993.598811, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8a4c9698-4795-555d-888b-dc2e04c8bc62", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 12.9", - "basePoint": { - "x": 993.598811, - "y": -2597.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "350722d8-186e-5ce9-b1e1-20d53ffe123b", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 993.5988107882436, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1003.438810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "1cafcb30-9601-5222-b9b7-55fbc534c477", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "89ee66eb-d95d-5e18-b98f-1b9d536095db", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1003.438811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1003.438811, - "y": -2586.664982 - } - } - }, - { - "id": "e4ea3894-6871-5656-a3ca-7747afc7cfd2", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1003.438811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1007.628811, - "y": -2586.664982 - } - } - }, - { - "id": "1fdfff4f-7a92-5feb-842b-245136178ae4", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1007.628811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1007.628811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "89246d41-a587-54f9-aa4f-131526eeeece", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 4.19", - "basePoint": { - "x": 1005.533811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "04da401c-c6fa-5dbf-856b-c22d6058f60d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 30.0", - "basePoint": { - "x": 1005.533811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "12b227ba-3526-52be-a68a-313c35d7ea72", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1007.628810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1067.578810788244, - "y": -2591.664981814357 - } - } - }, - { - "id": "ad0cfda1-0609-5d88-a2b7-4a5dcefbde4a", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "b06e57ab-54f0-58f1-91af-6cbae80d4428", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1067.578811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1067.578811, - "y": -2586.664982 - } - } - }, - { - "id": "a9befb89-bce7-5084-a879-756ba91d2af9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1067.578811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1074.698811, - "y": -2586.664982 - } - } - }, - { - "id": "57cba06b-1bec-5675-a419-6d8fc5cfa388", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1074.698811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1074.698811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "76c8d1dc-cd8c-5a28-8b56-38604110d7b6", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 7.12", - "basePoint": { - "x": 1071.138811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "956106c5-96cc-5183-bceb-624266a9aff3", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 25.0", - "basePoint": { - "x": 1071.138811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "642a6384-4db1-5911-9957-a782506384b1", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1074.698810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1083.478810788244, - "y": -2591.664981814357 - } - } - }, - { - "id": "121e66bc-4b90-58d4-b289-543d10db4479", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "baffcb0e-94ef-5288-ae5d-dbe0168573d9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1083.478811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1083.478811, - "y": -2586.664982 - } - } - }, - { - "id": "b13509c1-a051-55f5-9b7d-00044ec2e08d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1083.478811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1110.808811, - "y": -2586.664982 - } - } - }, - { - "id": "6c82b647-0710-5bb2-8947-dd09ca47fa6d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1110.808811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1110.808811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "9d3b0be7-18f8-5db3-8cd1-9b14202573a2", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 27.33", - "basePoint": { - "x": 1097.143811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "24e1c13c-4c48-5982-a44d-2173d592b7b0", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 12.7", - "basePoint": { - "x": 1097.143811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "80637c90-7cf5-5060-a98c-c5ff6362572f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1110.808810788244, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1111.088810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "75315520-7bb0-5d8d-9764-9e8f0ab24fb5", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "e2ae69c5-9da5-53aa-a91a-c4ee52a26a0f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1111.088811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1111.088811, - "y": -2596.664982 - } - } - }, - { - "id": "4d759d9a-94eb-5960-99ab-8862a877e6ec", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1111.088811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1118.938811, - "y": -2596.664982 - } - } - }, - { - "id": "c6ebb8ef-b8a6-5820-88a9-c163c92306d6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1118.938811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1118.938811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "04099021-901c-593a-8d7e-e4a45eeaeb08", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 7.85", - "basePoint": { - "x": 1115.013811, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "081d74d8-464d-5387-b2d3-f8f6cd8e7bba", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 18.0", - "basePoint": { - "x": 1115.013811, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9754b153-66ea-58ed-8d46-8b10f4e0ac22", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1118.938810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1145.278810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "b807994a-2363-5321-8005-f4d99653ed7e", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "4b6e3204-c0bf-52cc-a461-ad5ee1303699", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.278811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1145.278811, - "y": -2596.664982 - } - } - }, - { - "id": "b4cb8fc1-55f5-5d67-b01c-931a3556a1a2", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.278811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1172.338811, - "y": -2596.664982 - } - } - }, - { - "id": "96775a80-fc16-523d-bf60-ff83c08e7189", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1172.338811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1172.338811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "f7720307-498d-54e4-b025-fd42c94a3b68", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 27.06", - "basePoint": { - "x": 1158.808811, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f88d8ad1-5a6e-5544-a775-fb1804883198", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 15.8", - "basePoint": { - "x": 1158.808811, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "376f6937-943f-5b5d-8a40-cb5d5474271d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1172.338810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1175.708810788244, - "y": -2591.664981814357 - } - } - }, - { - "id": "bce146a8-70c9-5c78-8aac-191a3e65923b", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "231260d3-bd02-5ef5-818e-9c3d256d1cfc", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1175.708811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1175.708811, - "y": -2586.664982 - } - } - }, - { - "id": "a1fde3a0-00d1-51c8-8e33-123cf2135789", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1175.708811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1195.088811, - "y": -2586.664982 - } - } - }, - { - "id": "4ac2ccf1-7f0d-58d3-b23e-9884f99cf43a", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1195.088811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1195.088811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "e351eaa5-bb33-5825-b045-ac773df6af96", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 19.38", - "basePoint": { - "x": 1185.398811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3bb4cf1e-1a48-5249-a239-78bbc69612f4", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 30.0", - "basePoint": { - "x": 1185.398811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1ae050ce-a930-5752-9778-7b4fd35905e3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1195.088810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1232.068810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "5912d6f2-d6ac-5ce7-9161-70234c5c6360", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "1d2f72af-d830-52b4-9da9-6bd46d84b522", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1232.068811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1232.068811, - "y": -2586.664982 - } - } - }, - { - "id": "e449d13d-3d10-5cef-a1ca-4f484d412815", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1232.068811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1252.768811, - "y": -2586.664982 - } - } - }, - { - "id": "b6ee0069-7b21-5d53-9255-5ef53a3cbceb", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1252.768811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1252.768811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "0d486825-47f5-5ce4-8d8a-f1d5e626c4f3", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 20.70", - "basePoint": { - "x": 1242.418811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9a33d35d-e9d8-5717-a257-f2e6e2d35688", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 25.2", - "basePoint": { - "x": 1242.418811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "2eb6b55b-f58b-5d92-8559-cca1bff45438", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1252.768810788244, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1253.608810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "5f730b42-4ead-51d1-8171-edb0203ef8b7", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "ad0ec1da-27dd-5914-93e9-19b856362e48", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1253.608811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1253.608811, - "y": -2596.664982 - } - } - }, - { - "id": "2d41aad8-7475-5ba4-ad58-06c3ed430f36", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1253.608811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1275.608811, - "y": -2596.664982 - } - } - }, - { - "id": "8b221bbb-927e-5ebb-889c-5252769a7586", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1275.608811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1275.608811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "153b73f7-961c-58db-91ca-9a76e5429db1", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 22.00", - "basePoint": { - "x": 1264.608811, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0c9ec93b-21b6-5f01-b994-aee12d4bb337", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 30.0", - "basePoint": { - "x": 1264.608811, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e8282ab3-9826-53d8-b70f-43fc71ed14c3", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1275.608810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1290.588810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "e7789fbf-a44d-53be-a189-3bbe1dcdafb6", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "6ce16859-3dc1-5859-8bea-07ae41955a67", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1290.588811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1290.588811, - "y": -2596.664982 - } - } - }, - { - "id": "14a321fc-a644-5216-92cd-9fbfd889af1f", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1290.588811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1327.288811, - "y": -2596.664982 - } - } - }, - { - "id": "2bc1efa0-65b0-5084-8e2c-f7dd9d777822", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1327.288811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1327.288811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "7a0c4b93-2038-5507-aece-74f2755e6eac", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 36.70", - "basePoint": { - "x": 1308.938811, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4c929c23-e2c2-577e-87f9-005a5504728d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 15.8", - "basePoint": { - "x": 1308.938811, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ca0daefe-7146-5f97-b5a5-6340b38cf8fc", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1327.288810788244, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1332.028810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "6f7a9392-9ddd-5f4a-bac2-ef9c5217832f", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "c7631f74-d50f-5dba-a1d0-c3e7a70e612c", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1332.028811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1332.028811, - "y": -2586.664982 - } - } - }, - { - "id": "da1f7692-463f-5567-8eba-7be11e2f2fb1", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1332.028811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1356.018811, - "y": -2586.664982 - } - } - }, - { - "id": "7a635237-06f8-5e39-a549-77da86a3aaef", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1356.018811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1356.018811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "2b89c501-a548-52c4-98a3-1af058167236", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 23.99", - "basePoint": { - "x": 1344.023811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "3cd93ba8-1263-522d-93ad-634329c82fd3", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 25.0", - "basePoint": { - "x": 1344.023811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8be29449-6f92-5ffe-8287-d40627310b29", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1356.018810788244, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1380.108810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "0efc5257-4ba0-5a82-8dd6-2769c0ce92e9", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "903b4d36-3d3a-5dbd-b7ae-058cf0ee3c68", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1380.108811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1380.108811, - "y": -2586.664982 - } - } - }, - { - "id": "c7949cf2-268d-5ad5-b15b-8c4b1251ffa1", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1380.108811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1410.508811, - "y": -2586.664982 - } - } - }, - { - "id": "083f5758-d149-5a26-a98a-7e4c9470c43d", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1410.508811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1410.508811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "610f1aef-17e5-502f-be7a-5f9b35b8fa0c", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 30.40", - "basePoint": { - "x": 1395.308811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "183ee561-e497-5b15-aeef-78492389d6ea", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 13.3", - "basePoint": { - "x": 1395.308811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4dc0b218-bb95-5cc9-a180-0bfceb31f690", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1410.508810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1417.038810788244, - "y": -2591.664981814357 - } - } - }, - { - "id": "b7260189-fd7d-5d94-ac54-933792583979", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "a2d2e1ff-6ffe-5e8d-b157-b336ef23b746", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1417.038811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1417.038811, - "y": -2596.664982 - } - } - }, - { - "id": "c98c5769-5869-5c0c-8da6-5304ab8d29c4", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1417.038811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1432.738811, - "y": -2596.664982 - } - } - }, - { - "id": "e24e63a7-4c24-56c7-ad7a-186db990e2f6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1432.738811, - "y": -2596.664982 - }, - "endPoint": { - "x": 1432.738811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "625f8571-4ff3-56e3-b24f-351528ad8fbc", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 15.70", - "basePoint": { - "x": 1424.888811, - "y": -2595.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ced24dd1-9c07-5789-90c9-1946e352f05d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 25.0", - "basePoint": { - "x": 1424.888811, - "y": -2592.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c2c73a3f-cb89-5007-be54-63d8258266e6", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1432.738810788243, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1443.118810788244, - "y": -2591.664981814357 - } - } - }, - { - "id": "1326a461-7f6c-53a1-92e8-279b154a196a", - "type": "PolyLine", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "74b08423-a049-5e77-9a76-feed8cfa155e", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1443.118811, - "y": -2591.664982 - }, - "endPoint": { - "x": 1443.118811, - "y": -2586.664982 - } - } - }, - { - "id": "5600cd5f-bf80-58f1-a580-4a91345fedb9", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1443.118811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1473.208811, - "y": -2586.664982 - } - } - }, - { - "id": "c08b33fc-1563-52a4-b847-9f841f042d33", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1473.208811, - "y": -2586.664982 - }, - "endPoint": { - "x": 1473.208811, - "y": -2591.664982 - } - } - } - ] - }, - { - "id": "94c80718-1cb2-513f-a024-f0fc73c247ad", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "L= 30.09", - "basePoint": { - "x": 1458.163811, - "y": -2587.914982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c1819c48-92fe-535e-b1e8-0b52b1bc0e34", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "R= 41.1", - "basePoint": { - "x": 1458.163811, - "y": -2590.414982 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 1.8375, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c96eb23d-f3b4-599e-a217-3958195cf2d0", - "type": "Line", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1473.208810788244, - "y": -2591.664981814357 - }, - "endPoint": { - "x": 1515.198810788243, - "y": -2591.664981814357 - } - } - }, - { - "id": "0028ec47-38ef-5d3e-9687-46a72655d1ad", - "type": "PolyLine", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "2bba98cd-f5ea-5b09-86aa-9b88891b00b1", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 689.198719, - "y": -2364.664982 - }, - "endPoint": { - "x": 679.198719, - "y": -2367.102482 - } - } - }, - { - "id": "7de019bf-c89e-5671-aa1b-dfb5b4cd20a1", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 679.198719, - "y": -2367.102482 - }, - "endPoint": { - "x": 669.198719, - "y": -2369.539982 - } - } - }, - { - "id": "ad62cacf-1ebf-5654-8514-c5ac59ee6f2e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 669.198719, - "y": -2369.539982 - }, - "endPoint": { - "x": 649.198719, - "y": -2374.414982 - } - } - }, - { - "id": "6edcf92f-70d9-5ba1-8289-19a1c3bad859", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 649.198719, - "y": -2374.414982 - }, - "endPoint": { - "x": 629.198719, - "y": -2379.289982 - } - } - }, - { - "id": "8dea191c-73fa-5c80-baf9-6368b504a256", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 629.198719, - "y": -2379.289982 - }, - "endPoint": { - "x": 609.198719, - "y": -2384.164982 - } - } - }, - { - "id": "0f1e8107-5363-512f-b3d8-c19f874de4f7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 609.198719, - "y": -2384.164982 - }, - "endPoint": { - "x": 589.198719, - "y": -2389.331652 - } - } - }, - { - "id": "a0a5715b-dfe5-5232-affd-0863c5a96198", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 589.198719, - "y": -2389.331652 - }, - "endPoint": { - "x": 579.198719, - "y": -2391.914982 - } - } - }, - { - "id": "4efdea13-6df4-5e8f-8c85-968619453a34", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 579.198719, - "y": -2391.914982 - }, - "endPoint": { - "x": 569.198719, - "y": -2394.498312 - } - } - }, - { - "id": "e8392916-5a73-5baf-a820-c01a048c30be", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 569.198719, - "y": -2394.498312 - }, - "endPoint": { - "x": 559.198719, - "y": -2397.081652 - } - } - }, - { - "id": "a49749ea-225b-567b-83a7-c763423204fd", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 559.198719, - "y": -2397.081652 - }, - "endPoint": { - "x": 549.198719, - "y": -2399.664982 - } - } - }, - { - "id": "c9139743-675e-55fb-83cb-4f44e1a20b0a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 549.198719, - "y": -2399.664982 - }, - "endPoint": { - "x": 529.198719, - "y": -2404.363782 - } - } - }, - { - "id": "68712743-3a64-5aad-ba0f-c3cd2b320af5", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 529.198719, - "y": -2404.363782 - }, - "endPoint": { - "x": 509.198719, - "y": -2409.062572 - } - } - }, - { - "id": "1d3b1cc0-276d-5901-8645-792e5e9ad673", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 509.198719, - "y": -2409.062572 - }, - "endPoint": { - "x": 489.198719, - "y": -2413.761372 - } - } - }, - { - "id": "585f30fe-0422-5203-b80c-9a981b314448", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 489.198719, - "y": -2413.761372 - }, - "endPoint": { - "x": 486.198719, - "y": -2414.067942 - } - } - }, - { - "id": "f2693c06-d318-5021-a6a0-78a6ec5a9c4b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 486.198719, - "y": -2414.067942 - }, - "endPoint": { - "x": 485.198719, - "y": -2414.313602 - } - } - }, - { - "id": "b209dbd6-9096-531e-9116-49b6e543de5a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 485.198719, - "y": -2414.313602 - }, - "endPoint": { - "x": 484.198719, - "y": -2414.540902 - } - } - }, - { - "id": "d124ccb9-0e0c-5f4f-ae19-bc05ab53a7eb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 484.198719, - "y": -2414.540902 - }, - "endPoint": { - "x": 483.198719, - "y": -2414.749812 - } - } - }, - { - "id": "42ba8e2b-598a-598a-b504-4a76a949ea8c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 483.198719, - "y": -2414.749812 - }, - "endPoint": { - "x": 482.198719, - "y": -2414.940362 - } - } - }, - { - "id": "f5f8bba5-0b45-5195-8cda-07df5f283308", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 482.198719, - "y": -2414.940362 - }, - "endPoint": { - "x": 481.198719, - "y": -2415.112532 - } - } - }, - { - "id": "1750592e-df79-5816-8e5c-ba34efe98985", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 481.198719, - "y": -2415.112532 - }, - "endPoint": { - "x": 480.198719, - "y": -2415.266332 - } - } - }, - { - "id": "88edcc86-2a25-5214-82bb-44e3e8062f18", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 480.198719, - "y": -2415.266332 - }, - "endPoint": { - "x": 479.198719, - "y": -2415.401752 - } - } - }, - { - "id": "9bb9eced-66d6-5b84-85ab-90bf01bc9c56", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 479.198719, - "y": -2415.401752 - }, - "endPoint": { - "x": 478.198719, - "y": -2415.518802 - } - } - }, - { - "id": "9855513a-6017-5244-93c9-e67a2bdef13a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 478.198719, - "y": -2415.518802 - }, - "endPoint": { - "x": 477.198719, - "y": -2415.617482 - } - } - }, - { - "id": "11b6c4c4-dea2-5ef1-ab30-9444d443146e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 477.198719, - "y": -2415.617482 - }, - "endPoint": { - "x": 476.198719, - "y": -2415.697782 - } - } - }, - { - "id": "011ba7dd-4d5e-504b-aa75-5ae535ecd17c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 476.198719, - "y": -2415.697782 - }, - "endPoint": { - "x": 475.198719, - "y": -2415.759722 - } - } - }, - { - "id": "205d3b80-c444-5c62-8698-dbf193f28b69", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 475.198719, - "y": -2415.759722 - }, - "endPoint": { - "x": 474.198719, - "y": -2415.803272 - } - } - }, - { - "id": "811b2392-1465-5947-8cdd-ee06b55f9593", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 474.198719, - "y": -2415.803272 - }, - "endPoint": { - "x": 473.198719, - "y": -2415.828462 - } - } - }, - { - "id": "f5bbb32a-35b3-5ef7-adeb-3dabead4d7fa", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 473.198719, - "y": -2415.828462 - }, - "endPoint": { - "x": 472.198719, - "y": -2415.835272 - } - } - }, - { - "id": "23e2274b-ce00-52c7-835f-aaa27bd9dddf", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 472.198719, - "y": -2415.835272 - }, - "endPoint": { - "x": 471.198719, - "y": -2415.823702 - } - } - }, - { - "id": "713bc264-9783-568b-b383-04dde1781735", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 471.198719, - "y": -2415.823702 - }, - "endPoint": { - "x": 470.198719, - "y": -2415.793762 - } - } - }, - { - "id": "330910f5-b575-52f1-98ea-06a5ab6b85cc", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 470.198719, - "y": -2415.793762 - }, - "endPoint": { - "x": 469.198719, - "y": -2415.745452 - } - } - }, - { - "id": "36f01f06-4812-5188-8d53-1a6d4fc75851", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 469.198719, - "y": -2415.745452 - }, - "endPoint": { - "x": 468.198719, - "y": -2415.678772 - } - } - }, - { - "id": "c443f690-9e7c-5334-8673-58e15f19ee4b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 468.198719, - "y": -2415.678772 - }, - "endPoint": { - "x": 467.198719, - "y": -2415.593712 - } - } - }, - { - "id": "acd73288-a9d4-5c63-bf59-9a6ef5188e05", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 467.198719, - "y": -2415.593712 - }, - "endPoint": { - "x": 466.198719, - "y": -2415.490282 - } - } - }, - { - "id": "e060fa87-333f-58cb-ab14-6158a113d3d7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 466.198719, - "y": -2415.490282 - }, - "endPoint": { - "x": 465.198719, - "y": -2415.348562 - } - } - }, - { - "id": "b5f7f44c-f4b5-5b47-8966-18337dc4c994", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 465.198719, - "y": -2415.348562 - }, - "endPoint": { - "x": 464.198719, - "y": -2415.188472 - } - } - }, - { - "id": "691f4624-685e-529c-a6a1-98f7d6431005", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 464.198719, - "y": -2415.188472 - }, - "endPoint": { - "x": 463.198719, - "y": -2415.010012 - } - } - }, - { - "id": "0c77480b-9cd4-570d-8445-b0974c4aed45", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 463.198719, - "y": -2415.010012 - }, - "endPoint": { - "x": 462.198719, - "y": -2414.813172 - } - } - }, - { - "id": "6ce180fa-451f-5d29-a177-b7d38c9c84eb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 462.198719, - "y": -2414.813172 - }, - "endPoint": { - "x": 461.198719, - "y": -2414.597962 - } - } - }, - { - "id": "1f80d4b4-af94-5934-8021-127ed1d1d09b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 461.198719, - "y": -2414.597962 - }, - "endPoint": { - "x": 460.198719, - "y": -2414.364382 - } - } - }, - { - "id": "80f10bca-c276-5b00-b6da-e1dfdb89d7a9", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 460.198719, - "y": -2414.364382 - }, - "endPoint": { - "x": 459.198719, - "y": -2414.112422 - } - } - }, - { - "id": "ba3880b0-a9d5-5a75-820b-12449f15d0a8", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 459.198719, - "y": -2414.112422 - }, - "endPoint": { - "x": 458.198719, - "y": -2413.842092 - } - } - }, - { - "id": "e47a98b6-5880-5517-bb18-43ec4bb250e3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 458.198719, - "y": -2413.842092 - }, - "endPoint": { - "x": 457.198719, - "y": -2413.553382 - } - } - }, - { - "id": "0ec82554-e2bd-5741-a69f-fc946d2b85a6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 457.198719, - "y": -2413.553382 - }, - "endPoint": { - "x": 456.198719, - "y": -2413.246312 - } - } - }, - { - "id": "03c4e82c-eea9-554d-9e20-23ba12db05e4", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 456.198719, - "y": -2413.246312 - }, - "endPoint": { - "x": 455.198719, - "y": -2412.920852 - } - } - }, - { - "id": "4c2324fa-4bef-53f8-ab4c-fefb8259f8fe", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 455.198719, - "y": -2412.920852 - }, - "endPoint": { - "x": 454.198719, - "y": -2412.577032 - } - } - }, - { - "id": "7d7418d4-a09b-5b56-8eb9-395baebbf13a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 454.198719, - "y": -2412.577032 - }, - "endPoint": { - "x": 453.198719, - "y": -2412.214832 - } - } - }, - { - "id": "b99156cb-714a-5a89-8786-7fc0c4f6de32", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 453.198719, - "y": -2412.214832 - }, - "endPoint": { - "x": 452.198719, - "y": -2411.834262 - } - } - }, - { - "id": "b047e3b4-9a58-5f38-ba60-7401c64bc62b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 452.198719, - "y": -2411.834262 - }, - "endPoint": { - "x": 451.198719, - "y": -2411.435312 - } - } - }, - { - "id": "4986663a-5c1e-5d1e-b489-938ea7114303", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 451.198719, - "y": -2411.435312 - }, - "endPoint": { - "x": 450.198719, - "y": -2411.017992 - } - } - }, - { - "id": "7e3ac317-7c47-596b-8775-780f38438808", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 450.198719, - "y": -2411.017992 - }, - "endPoint": { - "x": 449.198719, - "y": -2410.582302 - } - } - }, - { - "id": "2a1bb255-184b-5844-bf3c-90bdf46b9c1c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 449.198719, - "y": -2410.582302 - }, - "endPoint": { - "x": 448.198719, - "y": -2410.128232 - } - } - }, - { - "id": "3149b76b-4cce-5a23-bda6-be129027f253", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 448.198719, - "y": -2410.128232 - }, - "endPoint": { - "x": 447.198719, - "y": -2409.655792 - } - } - }, - { - "id": "a8345b3b-44a1-5c55-b49c-94974dc049e0", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 447.198719, - "y": -2409.655792 - }, - "endPoint": { - "x": 446.198719, - "y": -2409.164982 - } - } - }, - { - "id": "3efee70c-f30b-5980-81b7-bafd6bc94e56", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 446.198719, - "y": -2409.164982 - }, - "endPoint": { - "x": 429.198719, - "y": -2400.664982 - } - } - }, - { - "id": "e517641a-6b28-5509-9f5a-2ae0d9d8f1bc", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 429.198719, - "y": -2400.664982 - }, - "endPoint": { - "x": 422.198719, - "y": -2397.164982 - } - } - }, - { - "id": "51d080c1-2e08-5dea-8254-3c50170f526e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 422.198719, - "y": -2397.164982 - }, - "endPoint": { - "x": 409.198719, - "y": -2390.664982 - } - } - }, - { - "id": "ef4c8bae-4181-5c12-90af-c0e1b58f108d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 409.198719, - "y": -2390.664982 - }, - "endPoint": { - "x": 403.198719, - "y": -2387.664982 - } - } - }, - { - "id": "c9ae9f47-eeff-5642-9797-c0f465bc9751", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 403.198719, - "y": -2387.664982 - }, - "endPoint": { - "x": 389.198719, - "y": -2380.516042 - } - } - }, - { - "id": "fea37b4a-a3e7-536b-bf1b-3195ce0d8f33", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 389.198719, - "y": -2380.516042 - }, - "endPoint": { - "x": 369.198719, - "y": -2370.303282 - } - } - }, - { - "id": "535a9e57-6542-5111-bfd6-d6647ada7799", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 369.198719, - "y": -2370.303282 - }, - "endPoint": { - "x": 349.198719, - "y": -2360.090512 - } - } - }, - { - "id": "b8dcab30-77c3-5352-89b8-b5ada0a9d75b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 349.198719, - "y": -2360.090512 - }, - "endPoint": { - "x": 329.198719, - "y": -2349.877752 - } - } - }, - { - "id": "d2903a86-685b-5708-b8b7-046f5aa9e846", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 329.198719, - "y": -2349.877752 - }, - "endPoint": { - "x": 309.198719, - "y": -2339.664982 - } - } - }, - { - "id": "2681d985-58e3-5cfa-ad5a-4f06f91692f7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 309.198719, - "y": -2339.664982 - }, - "endPoint": { - "x": 289.198719, - "y": -2330.831652 - } - } - }, - { - "id": "c5844794-2930-505a-b92a-f6d56399930c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 289.198719, - "y": -2330.831652 - }, - "endPoint": { - "x": 269.198719, - "y": -2321.998312 - } - } - }, - { - "id": "a423c5f5-38bf-5e53-8fe9-12a431505fbb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 269.198719, - "y": -2321.998312 - }, - "endPoint": { - "x": 268.198719, - "y": -2321.566062 - } - } - }, - { - "id": "149d6df3-e9f5-50d6-84e8-ca82d4557ac0", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 268.198719, - "y": -2321.566062 - }, - "endPoint": { - "x": 267.198719, - "y": -2321.152622 - } - } - }, - { - "id": "79858c7f-eb3c-5b1e-9a8b-8342d63aba84", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 267.198719, - "y": -2321.152622 - }, - "endPoint": { - "x": 266.198719, - "y": -2320.758002 - } - } - }, - { - "id": "2ee2a1c0-fc8e-540a-b011-07bb064e78bb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 266.198719, - "y": -2320.758002 - }, - "endPoint": { - "x": 265.198719, - "y": -2320.382202 - } - } - }, - { - "id": "d4a11c46-fa7a-510f-a278-0b39c04e2f8e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 265.198719, - "y": -2320.382202 - }, - "endPoint": { - "x": 264.198719, - "y": -2320.025222 - } - } - }, - { - "id": "b4574069-f858-500a-9db5-1ec1567133fa", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 264.198719, - "y": -2320.025222 - }, - "endPoint": { - "x": 263.198719, - "y": -2319.687062 - } - } - }, - { - "id": "4a15d96a-28ad-539f-91c0-3f851e8ec53b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 263.198719, - "y": -2319.687062 - }, - "endPoint": { - "x": 262.198719, - "y": -2319.367722 - } - } - }, - { - "id": "82711426-aa52-5eea-98d5-d2712f7f9af2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 262.198719, - "y": -2319.367722 - }, - "endPoint": { - "x": 261.198719, - "y": -2319.067202 - } - } - }, - { - "id": "df3bc03f-2e21-521e-829a-a15fc23301a7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 261.198719, - "y": -2319.067202 - }, - "endPoint": { - "x": 260.198719, - "y": -2318.785502 - } - } - }, - { - "id": "7fdfcc81-b9c4-5b98-bd15-1a340223d31f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 260.198719, - "y": -2318.785502 - }, - "endPoint": { - "x": 259.198719, - "y": -2318.522622 - } - } - }, - { - "id": "452db1a3-60c1-5eb0-bfba-f353ee279ff5", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 259.198719, - "y": -2318.522622 - }, - "endPoint": { - "x": 258.198719, - "y": -2318.278562 - } - } - }, - { - "id": "26772879-a70a-5d0d-a397-a40e5c719dfa", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 258.198719, - "y": -2318.278562 - }, - "endPoint": { - "x": 257.198719, - "y": -2318.053312 - } - } - }, - { - "id": "4c9736c6-26eb-560b-8937-959709221fc9", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 257.198719, - "y": -2318.053312 - }, - "endPoint": { - "x": 256.198719, - "y": -2317.846892 - } - } - }, - { - "id": "cfcf88f6-a766-5132-ac9f-af691611009f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 256.198719, - "y": -2317.846892 - }, - "endPoint": { - "x": 255.198719, - "y": -2317.659292 - } - } - }, - { - "id": "f616713a-a84a-50d7-8297-abdf119b33cb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 255.198719, - "y": -2317.659292 - }, - "endPoint": { - "x": 254.198719, - "y": -2317.490502 - } - } - }, - { - "id": "da545038-147e-5949-9692-979ffa1e0dca", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 254.198719, - "y": -2317.490502 - }, - "endPoint": { - "x": 253.198719, - "y": -2317.340542 - } - } - }, - { - "id": "ec1189f0-e05c-5d2b-b909-c3fa922f5af3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 253.198719, - "y": -2317.340542 - }, - "endPoint": { - "x": 252.198719, - "y": -2317.209392 - } - } - }, - { - "id": "b3dfa3a3-ffde-5ab5-bce8-7d05fb8e6ba7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 252.198719, - "y": -2317.209392 - }, - "endPoint": { - "x": 251.198719, - "y": -2317.097062 - } - } - }, - { - "id": "9d4d1a7f-5084-5614-9b23-b02d419b9df6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 251.198719, - "y": -2317.097062 - }, - "endPoint": { - "x": 250.198719, - "y": -2317.003562 - } - } - }, - { - "id": "95bfebb9-60d0-5388-9fa7-e7765d5b53d1", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 250.198719, - "y": -2317.003562 - }, - "endPoint": { - "x": 249.198719, - "y": -2316.928872 - } - } - }, - { - "id": "eae73864-9c6c-5c0e-b2f6-c68d1e14e807", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 249.198719, - "y": -2316.928872 - }, - "endPoint": { - "x": 248.198719, - "y": -2316.873002 - } - } - }, - { - "id": "5631e452-0d49-563d-b4c8-978968b41018", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 248.198719, - "y": -2316.873002 - }, - "endPoint": { - "x": 247.198719, - "y": -2316.835952 - } - } - }, - { - "id": "51a72748-c5c7-56ab-83cf-70770d568183", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 247.198719, - "y": -2316.835952 - }, - "endPoint": { - "x": 246.198719, - "y": -2316.817722 - } - } - }, - { - "id": "f3798290-2276-5278-9065-653c5b66ab6b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 246.198719, - "y": -2316.817722 - }, - "endPoint": { - "x": 245.198719, - "y": -2316.818312 - } - } - }, - { - "id": "66830df8-8088-5b39-b637-706dcf76d286", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 245.198719, - "y": -2316.818312 - }, - "endPoint": { - "x": 244.198719, - "y": -2316.837722 - } - } - }, - { - "id": "76cbe25a-aa12-54af-a734-1127229e7171", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 244.198719, - "y": -2316.837722 - }, - "endPoint": { - "x": 243.198719, - "y": -2316.875952 - } - } - }, - { - "id": "9bd11151-0f0e-5bfc-a106-620dd680525a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 243.198719, - "y": -2316.875952 - }, - "endPoint": { - "x": 242.198719, - "y": -2316.933002 - } - } - }, - { - "id": "ccfae31e-0485-5fd9-8460-c99d3528c4a3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 242.198719, - "y": -2316.933002 - }, - "endPoint": { - "x": 241.198719, - "y": -2317.008872 - } - } - }, - { - "id": "22cc2531-c791-5b50-9edf-472b08fcf8d8", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 241.198719, - "y": -2317.008872 - }, - "endPoint": { - "x": 240.198719, - "y": -2317.103562 - } - } - }, - { - "id": "475ddd7a-b0ad-5b7d-9b46-3cb63b02ddca", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 240.198719, - "y": -2317.103562 - }, - "endPoint": { - "x": 239.198719, - "y": -2317.217062 - } - } - }, - { - "id": "55881049-b958-57ad-85d0-f17ed22cf0ae", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 239.198719, - "y": -2317.217062 - }, - "endPoint": { - "x": 238.198719, - "y": -2317.349392 - } - } - }, - { - "id": "b4de7ef2-c103-56c4-becb-1baa891d0406", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 238.198719, - "y": -2317.349392 - }, - "endPoint": { - "x": 237.198719, - "y": -2317.500542 - } - } - }, - { - "id": "820484ed-6993-5a64-9f34-06e44eafd6c4", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 237.198719, - "y": -2317.500542 - }, - "endPoint": { - "x": 236.198719, - "y": -2317.670502 - } - } - }, - { - "id": "0f7d3189-d91d-56b5-9b2e-7985db5e56c2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 236.198719, - "y": -2317.670502 - }, - "endPoint": { - "x": 235.198719, - "y": -2317.859292 - } - } - }, - { - "id": "4af845ce-5044-50c3-b1a2-0b4e027f74c4", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 235.198719, - "y": -2317.859292 - }, - "endPoint": { - "x": 234.198719, - "y": -2318.066892 - } - } - }, - { - "id": "fc14faa3-9e8d-5dd0-9ea9-0c2d894801b2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 234.198719, - "y": -2318.066892 - }, - "endPoint": { - "x": 233.198719, - "y": -2318.293312 - } - } - }, - { - "id": "1ad65a3f-b255-5ae1-92c8-b216a4bc1804", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 233.198719, - "y": -2318.293312 - }, - "endPoint": { - "x": 232.198719, - "y": -2318.538562 - } - } - }, - { - "id": "b21ab4b7-ca4a-5fe4-aeb7-8ed55c2b7156", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 232.198719, - "y": -2318.538562 - }, - "endPoint": { - "x": 231.198719, - "y": -2318.802622 - } - } - }, - { - "id": "b39cba35-bb20-5ff0-9c4d-fccb8908ed97", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 231.198719, - "y": -2318.802622 - }, - "endPoint": { - "x": 230.198719, - "y": -2319.085502 - } - } - }, - { - "id": "0332f20d-82ff-530b-953a-21574cc05d27", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 230.198719, - "y": -2319.085502 - }, - "endPoint": { - "x": 229.198719, - "y": -2319.387202 - } - } - }, - { - "id": "16c7e7cb-e51a-565b-855a-8e273225b0bc", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 229.198719, - "y": -2319.387202 - }, - "endPoint": { - "x": 224.198719, - "y": -2320.903622 - } - } - }, - { - "id": "1e77ad12-5ccc-5a47-8824-789d5d031c45", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 224.198719, - "y": -2320.903622 - }, - "endPoint": { - "x": 223.198719, - "y": -2321.209732 - } - } - }, - { - "id": "426dbf44-90a2-540d-9a2e-8edb116f753b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 223.198719, - "y": -2321.209732 - }, - "endPoint": { - "x": 222.198719, - "y": -2321.501932 - } - } - }, - { - "id": "7d245235-f769-59e7-85e6-cc5ffc3aa92e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 222.198719, - "y": -2321.501932 - }, - "endPoint": { - "x": 221.198719, - "y": -2321.780212 - } - } - }, - { - "id": "89e95798-661c-51df-8b93-306ef49fd323", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 221.198719, - "y": -2321.780212 - }, - "endPoint": { - "x": 220.198719, - "y": -2322.044582 - } - } - }, - { - "id": "12d5c518-93c8-5621-9d53-56f6b83da1d0", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 220.198719, - "y": -2322.044582 - }, - "endPoint": { - "x": 219.198719, - "y": -2322.295042 - } - } - }, - { - "id": "bf40b95c-16a6-5a70-87e4-60441f76d8e8", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 219.198719, - "y": -2322.295042 - }, - "endPoint": { - "x": 218.198719, - "y": -2322.531582 - } - } - }, - { - "id": "9dc560f0-6bd9-5f1c-9d95-9378a04357ab", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 218.198719, - "y": -2322.531582 - }, - "endPoint": { - "x": 217.198719, - "y": -2322.754202 - } - } - }, - { - "id": "d38e7596-8a24-55ca-aa52-d5852a6653e6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 217.198719, - "y": -2322.754202 - }, - "endPoint": { - "x": 216.198719, - "y": -2322.962912 - } - } - }, - { - "id": "f53f8ec0-3768-56f0-b939-e83eddf08128", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 216.198719, - "y": -2322.962912 - }, - "endPoint": { - "x": 215.198719, - "y": -2323.157712 - } - } - }, - { - "id": "9686f0d2-86fa-5c44-bc9a-69b4a58d6e27", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 215.198719, - "y": -2323.157712 - }, - "endPoint": { - "x": 214.198719, - "y": -2323.338602 - } - } - }, - { - "id": "c78f8a9c-d8de-5915-8a33-7510bcd37f4c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 214.198719, - "y": -2323.338602 - }, - "endPoint": { - "x": 213.198719, - "y": -2323.505562 - } - } - }, - { - "id": "80b61f87-7efd-5a1e-9ca3-0fa9f6f605dd", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 213.198719, - "y": -2323.505562 - }, - "endPoint": { - "x": 212.198719, - "y": -2323.658622 - } - } - }, - { - "id": "2baa2d3c-9d28-52fe-a31b-4d3d0a65bd47", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 212.198719, - "y": -2323.658622 - }, - "endPoint": { - "x": 211.198719, - "y": -2323.797762 - } - } - }, - { - "id": "c755ad31-4390-5d34-9ac1-b79473ab6dc6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 211.198719, - "y": -2323.797762 - }, - "endPoint": { - "x": 210.198719, - "y": -2323.922992 - } - } - }, - { - "id": "677646da-b705-5693-bdf6-9d729b84f954", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 210.198719, - "y": -2323.922992 - }, - "endPoint": { - "x": 209.198719, - "y": -2324.034302 - } - } - }, - { - "id": "56acac1b-a3d5-59a0-b3c9-9e1d31e53b36", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 209.198719, - "y": -2324.034302 - }, - "endPoint": { - "x": 208.198719, - "y": -2324.131702 - } - } - }, - { - "id": "3366d67d-95cf-5d30-888a-f690048551cb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 208.198719, - "y": -2324.131702 - }, - "endPoint": { - "x": 207.198719, - "y": -2324.215182 - } - } - }, - { - "id": "1e4b29ed-1041-528f-996d-c8c56ee707a7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 207.198719, - "y": -2324.215182 - }, - "endPoint": { - "x": 206.198719, - "y": -2324.284752 - } - } - }, - { - "id": "374d8ac1-fb5d-551e-87c3-65f0e942f80a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 206.198719, - "y": -2324.284752 - }, - "endPoint": { - "x": 205.198719, - "y": -2324.340412 - } - } - }, - { - "id": "6afe01a4-8639-5e8b-b842-20a7aeabcdec", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 205.198719, - "y": -2324.340412 - }, - "endPoint": { - "x": 204.198719, - "y": -2324.382152 - } - } - }, - { - "id": "0c0d2de3-ed95-52de-a57b-cf5751255821", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 204.198719, - "y": -2324.382152 - }, - "endPoint": { - "x": 203.198719, - "y": -2324.408022 - } - } - }, - { - "id": "f55c1b6f-4866-51a8-9a45-65f68dad5682", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 203.198719, - "y": -2324.408022 - }, - "endPoint": { - "x": 202.198719, - "y": -2324.419982 - } - } - }, - { - "id": "e6cd19f7-a9a3-5bdc-bb15-cac985517dd7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 202.198719, - "y": -2324.419982 - }, - "endPoint": { - "x": 201.198719, - "y": -2324.418022 - } - } - }, - { - "id": "4a616cae-5a4b-51ac-a050-db95df9b9e2d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 201.198719, - "y": -2324.418022 - }, - "endPoint": { - "x": 200.198719, - "y": -2324.402152 - } - } - }, - { - "id": "a688273e-d265-5b86-9024-ee64dab7e9f9", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 200.198719, - "y": -2324.402152 - }, - "endPoint": { - "x": 199.198719, - "y": -2324.372372 - } - } - }, - { - "id": "15ac7ba4-d0b1-5531-8b13-393f814c914f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 199.198719, - "y": -2324.372372 - }, - "endPoint": { - "x": 198.198719, - "y": -2324.328672 - } - } - }, - { - "id": "d73bd8f1-9ded-55dd-8ccb-9855ab0e8840", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 198.198719, - "y": -2324.328672 - }, - "endPoint": { - "x": 197.198719, - "y": -2324.271052 - } - } - }, - { - "id": "2c2f456e-af02-5391-b8c6-f5045a198d41", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 197.198719, - "y": -2324.271052 - }, - "endPoint": { - "x": 196.198719, - "y": -2324.199532 - } - } - }, - { - "id": "37abb49e-cd84-52f3-9291-55e04abe0a54", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 196.198719, - "y": -2324.199532 - }, - "endPoint": { - "x": 195.198719, - "y": -2324.114082 - } - } - }, - { - "id": "e6fc506d-ccfe-5089-b46b-596fc1dd93fe", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 195.198719, - "y": -2324.114082 - }, - "endPoint": { - "x": 194.198719, - "y": -2324.014732 - } - } - }, - { - "id": "d92c82f1-66bb-5799-be47-2b17d630fe38", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 194.198719, - "y": -2324.014732 - }, - "endPoint": { - "x": 193.198719, - "y": -2323.901462 - } - } - }, - { - "id": "3bb3faa9-0d89-5aa6-8663-5a20cbec3b07", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 193.198719, - "y": -2323.901462 - }, - "endPoint": { - "x": 192.198719, - "y": -2323.774272 - } - } - }, - { - "id": "f7409e86-9983-5fdb-bbf7-02cc8f4ec3ed", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 192.198719, - "y": -2323.774272 - }, - "endPoint": { - "x": 191.198719, - "y": -2323.633172 - } - } - }, - { - "id": "7b55f8d0-298c-506b-8400-db864044af56", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 191.198719, - "y": -2323.633172 - }, - "endPoint": { - "x": 190.198719, - "y": -2323.478162 - } - } - }, - { - "id": "dd08133d-e075-50b8-a747-59dc7903f641", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 190.198719, - "y": -2323.478162 - }, - "endPoint": { - "x": 189.198719, - "y": -2323.309242 - } - } - }, - { - "id": "7c47d2af-e627-57c2-9565-8915bfc0dfe6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 189.198719, - "y": -2323.309242 - }, - "endPoint": { - "x": 188.198719, - "y": -2323.126392 - } - } - }, - { - "id": "b75557b6-a5ff-53da-86e5-1e36a788e6bc", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 188.198719, - "y": -2323.126392 - }, - "endPoint": { - "x": 187.198719, - "y": -2322.929642 - } - } - }, - { - "id": "b47fbf35-4e29-5d93-b425-ad2e1d8107f3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 187.198719, - "y": -2322.929642 - }, - "endPoint": { - "x": 186.198719, - "y": -2322.718972 - } - } - }, - { - "id": "2a498a53-0d53-50bf-b33d-eb68db05ce10", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 186.198719, - "y": -2322.718972 - }, - "endPoint": { - "x": 185.198719, - "y": -2322.494392 - } - } - }, - { - "id": "1070a4c8-1c2c-568a-b49e-e01791300482", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 185.198719, - "y": -2322.494392 - }, - "endPoint": { - "x": 184.198719, - "y": -2322.255892 - } - } - }, - { - "id": "24542640-3839-5917-8335-c917a88a643a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 184.198719, - "y": -2322.255892 - }, - "endPoint": { - "x": 169.198719, - "y": -2318.574072 - } - } - }, - { - "id": "82f560b9-d39f-5311-8a54-5ec647a968d6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 169.198719, - "y": -2318.574072 - }, - "endPoint": { - "x": 149.198719, - "y": -2313.664982 - } - } - }, - { - "id": "32898896-c826-5cd6-8c07-208f758dce61", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 149.198719, - "y": -2313.664982 - }, - "endPoint": { - "x": 129.198719, - "y": -2308.898312 - } - } - }, - { - "id": "9b7d93ab-8926-5d73-b5f0-2ab90f658820", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 129.198719, - "y": -2308.898312 - }, - "endPoint": { - "x": 109.198719, - "y": -2304.131652 - } - } - }, - { - "id": "16d82a4f-b2a9-5e2b-9ae9-7559862d2dc0", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 109.198719, - "y": -2304.131652 - }, - "endPoint": { - "x": 107.198719, - "y": -2303.654982 - } - } - }, - { - "id": "117efbf8-b3e7-58f3-8baf-70f43bb84219", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 107.198719, - "y": -2303.654982 - }, - "endPoint": { - "x": 89.198719, - "y": -2299.364982 - } - } - } - ] - }, - { - "id": "ed235cc3-9c3b-522c-9ccc-37945bd8087c", - "type": "PolyLine", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": null, - "children": [ - { - "id": "da9ac099-5462-5bf9-ba80-e4f6c81a27e5", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 985.198811, - "y": -2369.664982 - }, - "endPoint": { - "x": 1005.198811, - "y": -2365.464982 - } - } - }, - { - "id": "465c6751-e3ce-53ac-9d29-57cf89c60af8", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1005.198811, - "y": -2365.464982 - }, - "endPoint": { - "x": 1025.198811, - "y": -2361.264982 - } - } - }, - { - "id": "c6dc8ffb-f775-56a1-9198-f680c4856a37", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1025.198811, - "y": -2361.264982 - }, - "endPoint": { - "x": 1045.198811, - "y": -2357.064982 - } - } - }, - { - "id": "7df5f2b7-ca77-5ab6-8df7-076b3c4de1e8", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1045.198811, - "y": -2357.064982 - }, - "endPoint": { - "x": 1065.198811, - "y": -2352.931652 - } - } - }, - { - "id": "6985cc68-88bf-5d3a-8bc7-f8a4e95be7f9", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1065.198811, - "y": -2352.931652 - }, - "endPoint": { - "x": 1071.198811, - "y": -2351.691652 - } - } - }, - { - "id": "3f9883d8-07d7-547e-8dbc-7e534c600576", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1071.198811, - "y": -2351.691652 - }, - "endPoint": { - "x": 1085.198811, - "y": -2348.798312 - } - } - }, - { - "id": "59207c5e-6bcf-5655-b219-e6106e5797eb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1085.198811, - "y": -2348.798312 - }, - "endPoint": { - "x": 1097.198811, - "y": -2346.318312 - } - } - }, - { - "id": "9f952cc7-ecb5-5d66-a297-bea5c8633ca3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1097.198811, - "y": -2346.318312 - }, - "endPoint": { - "x": 1105.198811, - "y": -2344.664982 - } - } - }, - { - "id": "ae27ea0c-461f-599b-9697-eb8c86f5b6bc", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1105.198811, - "y": -2344.664982 - }, - "endPoint": { - "x": 1115.198811, - "y": -2342.656652 - } - } - }, - { - "id": "358624b9-2fb4-5ed4-8a42-74349be49706", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1115.198811, - "y": -2342.656652 - }, - "endPoint": { - "x": 1125.198811, - "y": -2340.648312 - } - } - }, - { - "id": "c0dd817f-c740-5a47-8ddf-58fc587bc44d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1125.198811, - "y": -2340.648312 - }, - "endPoint": { - "x": 1145.198811, - "y": -2336.631652 - } - } - }, - { - "id": "5f58b40e-70fe-5a78-b052-db7f9919064f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1145.198811, - "y": -2336.631652 - }, - "endPoint": { - "x": 1146.198811, - "y": -2336.438252 - } - } - }, - { - "id": "8cfdff45-9c94-5cee-bb07-4f3583514c7a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1146.198811, - "y": -2336.438252 - }, - "endPoint": { - "x": 1147.198811, - "y": -2336.259742 - } - } - }, - { - "id": "3a67e6fc-78a7-5c3d-ae06-4125881ca062", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1147.198811, - "y": -2336.259742 - }, - "endPoint": { - "x": 1148.198811, - "y": -2336.096112 - } - } - }, - { - "id": "44fd7c32-8e74-590c-8762-f9169dd0a87d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1148.198811, - "y": -2336.096112 - }, - "endPoint": { - "x": 1149.198811, - "y": -2335.947362 - } - } - }, - { - "id": "f5e4a4f1-10b9-5c1d-82c5-7e0cc22395c8", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1149.198811, - "y": -2335.947362 - }, - "endPoint": { - "x": 1150.198811, - "y": -2335.813482 - } - } - }, - { - "id": "5b605e32-98b8-55bc-b7aa-d4b3a64e34a3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1150.198811, - "y": -2335.813482 - }, - "endPoint": { - "x": 1151.198811, - "y": -2335.694492 - } - } - }, - { - "id": "48c49c8d-0d5d-52fa-996d-f727c81e563c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1151.198811, - "y": -2335.694492 - }, - "endPoint": { - "x": 1152.198811, - "y": -2335.590382 - } - } - }, - { - "id": "c95b9f4b-df51-51f6-a71f-afe107428071", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1152.198811, - "y": -2335.590382 - }, - "endPoint": { - "x": 1153.198811, - "y": -2335.501152 - } - } - }, - { - "id": "44134a95-eac6-5c92-a5c1-6eaac37d553d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1153.198811, - "y": -2335.501152 - }, - "endPoint": { - "x": 1154.198811, - "y": -2335.426802 - } - } - }, - { - "id": "7d29f4c0-3ba8-540a-8ffa-254e081ad172", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1154.198811, - "y": -2335.426802 - }, - "endPoint": { - "x": 1155.198811, - "y": -2335.367322 - } - } - }, - { - "id": "b06bf0bc-865b-50ea-a819-9b31f3c7f437", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1155.198811, - "y": -2335.367322 - }, - "endPoint": { - "x": 1156.198811, - "y": -2335.322732 - } - } - }, - { - "id": "32269313-56b1-5aca-81bf-fae96636337d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1156.198811, - "y": -2335.322732 - }, - "endPoint": { - "x": 1157.198811, - "y": -2335.293022 - } - } - }, - { - "id": "7bdbe923-a2d0-5e28-95e2-38d3fb4b560c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1157.198811, - "y": -2335.293022 - }, - "endPoint": { - "x": 1158.198811, - "y": -2335.278192 - } - } - }, - { - "id": "4f760135-4631-52b3-ad40-4d24216f5ef7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1158.198811, - "y": -2335.278192 - }, - "endPoint": { - "x": 1159.198811, - "y": -2335.278242 - } - } - }, - { - "id": "6a50d562-244e-5c44-b4d3-37698870ba67", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1159.198811, - "y": -2335.278242 - }, - "endPoint": { - "x": 1160.198811, - "y": -2335.293172 - } - } - }, - { - "id": "8d552b71-8581-519d-b6ce-9abb60ac8087", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1160.198811, - "y": -2335.293172 - }, - "endPoint": { - "x": 1161.198811, - "y": -2335.322982 - } - } - }, - { - "id": "31ac88a9-3cf2-5e8f-a48e-123d8ef932ba", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1161.198811, - "y": -2335.322982 - }, - "endPoint": { - "x": 1162.198811, - "y": -2335.367672 - } - } - }, - { - "id": "4fb936c9-9e7a-5094-bf3e-f1cfb7ae5684", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1162.198811, - "y": -2335.367672 - }, - "endPoint": { - "x": 1163.198811, - "y": -2335.427242 - } - } - }, - { - "id": "1da04c31-bd74-57e6-b6ab-8695503f09b2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1163.198811, - "y": -2335.427242 - }, - "endPoint": { - "x": 1164.198811, - "y": -2335.501692 - } - } - }, - { - "id": "bc3516d5-7ba2-5793-9346-223e28fd8b7b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1164.198811, - "y": -2335.501692 - }, - "endPoint": { - "x": 1165.198811, - "y": -2335.591022 - } - } - }, - { - "id": "1b889df4-bd01-5ed0-8915-1686ff6cc33d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1165.198811, - "y": -2335.591022 - }, - "endPoint": { - "x": 1166.198811, - "y": -2335.695232 - } - } - }, - { - "id": "5a0b3810-b0fe-5bd8-b7d8-a7c933d91f72", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1166.198811, - "y": -2335.695232 - }, - "endPoint": { - "x": 1167.198811, - "y": -2335.814322 - } - } - }, - { - "id": "f71d4b5e-b74c-578c-ab9f-fb6f325a2106", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1167.198811, - "y": -2335.814322 - }, - "endPoint": { - "x": 1168.198811, - "y": -2335.948302 - } - } - }, - { - "id": "5d852e71-265f-51b8-8d80-5150102a25d6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1168.198811, - "y": -2335.948302 - }, - "endPoint": { - "x": 1169.198811, - "y": -2336.097152 - } - } - }, - { - "id": "a0193382-3cfb-5ffb-b598-0abf98adc8b5", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1169.198811, - "y": -2336.097152 - }, - "endPoint": { - "x": 1170.198811, - "y": -2336.260882 - } - } - }, - { - "id": "831915bc-c1f3-5c36-9848-d850f05892f6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1170.198811, - "y": -2336.260882 - }, - "endPoint": { - "x": 1171.198811, - "y": -2336.439492 - } - } - }, - { - "id": "abd956ed-faaa-5a95-9104-c8d50036e7fe", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1171.198811, - "y": -2336.439492 - }, - "endPoint": { - "x": 1172.198811, - "y": -2336.632982 - } - } - }, - { - "id": "133d6e3a-13c5-5412-94be-6bdd49da9862", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1172.198811, - "y": -2336.632982 - }, - "endPoint": { - "x": 1173.198811, - "y": -2336.841352 - } - } - }, - { - "id": "7a690ff4-72ee-5b62-b6d1-a7e5cbc11e66", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1173.198811, - "y": -2336.841352 - }, - "endPoint": { - "x": 1174.198811, - "y": -2337.064612 - } - } - }, - { - "id": "3067abba-c60b-5729-a5c3-6788f299ed25", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1174.198811, - "y": -2337.064612 - }, - "endPoint": { - "x": 1175.198811, - "y": -2337.302742 - } - } - }, - { - "id": "c9ca6760-df89-5a04-95a8-d7024301c217", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1175.198811, - "y": -2337.302742 - }, - "endPoint": { - "x": 1176.198811, - "y": -2337.555752 - } - } - }, - { - "id": "68a405dd-3041-54f9-b0e0-93cb8cf78cdc", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1176.198811, - "y": -2337.555752 - }, - "endPoint": { - "x": 1177.198811, - "y": -2337.823652 - } - } - }, - { - "id": "1b922c5f-7152-5cae-b982-befa22d5891e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1177.198811, - "y": -2337.823652 - }, - "endPoint": { - "x": 1178.198811, - "y": -2338.106422 - } - } - }, - { - "id": "486f2c72-9588-5811-8d0a-5916500cef6f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1178.198811, - "y": -2338.106422 - }, - "endPoint": { - "x": 1179.198811, - "y": -2338.404072 - } - } - }, - { - "id": "328a2186-d4ee-5479-94e4-20537e655fc7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1179.198811, - "y": -2338.404072 - }, - "endPoint": { - "x": 1180.198811, - "y": -2338.716612 - } - } - }, - { - "id": "55924fd1-f551-5b9b-bd97-91bfbbf66792", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1180.198811, - "y": -2338.716612 - }, - "endPoint": { - "x": 1181.198811, - "y": -2339.044022 - } - } - }, - { - "id": "8f394d73-0123-5c31-ab4b-4590c6323c31", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1181.198811, - "y": -2339.044022 - }, - "endPoint": { - "x": 1182.198811, - "y": -2339.386322 - } - } - }, - { - "id": "808b1dd2-3a97-5c51-994e-fbaa4df3abfd", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1182.198811, - "y": -2339.386322 - }, - "endPoint": { - "x": 1183.198811, - "y": -2339.743492 - } - } - }, - { - "id": "51b2c794-97be-5586-ae52-c389234a1b25", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1183.198811, - "y": -2339.743492 - }, - "endPoint": { - "x": 1184.198811, - "y": -2340.115552 - } - } - }, - { - "id": "883f4e03-50dd-5f2d-a5cf-e3fb658b559d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1184.198811, - "y": -2340.115552 - }, - "endPoint": { - "x": 1185.198811, - "y": -2340.502482 - } - } - }, - { - "id": "341ffbbb-0b5c-5184-bdc0-3241c07e710e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1185.198811, - "y": -2340.502482 - }, - "endPoint": { - "x": 1205.198811, - "y": -2348.389982 - } - } - }, - { - "id": "73a9ba0c-a7ad-53fe-a6a8-8e5fee12e83c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1205.198811, - "y": -2348.389982 - }, - "endPoint": { - "x": 1217.198811, - "y": -2353.122482 - } - } - }, - { - "id": "59a1e32a-9232-5dbc-ad03-3a5fd0a70950", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1217.198811, - "y": -2353.122482 - }, - "endPoint": { - "x": 1225.198811, - "y": -2356.277482 - } - } - }, - { - "id": "b4307afc-f20c-59f7-bdab-06ccb8bdcea5", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1225.198811, - "y": -2356.277482 - }, - "endPoint": { - "x": 1235.198811, - "y": -2360.221232 - } - } - }, - { - "id": "048497c0-2c7f-5cc1-b635-b54c4cdf0b55", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1235.198811, - "y": -2360.221232 - }, - "endPoint": { - "x": 1245.198811, - "y": -2364.164982 - } - } - }, - { - "id": "76c7806c-1b53-56c1-aa36-efb73fd29ebe", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1245.198811, - "y": -2364.164982 - }, - "endPoint": { - "x": 1265.198811, - "y": -2371.077482 - } - } - }, - { - "id": "022ede00-da11-5951-a2d2-c38198b46f28", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1265.198811, - "y": -2371.077482 - }, - "endPoint": { - "x": 1285.198811, - "y": -2377.989982 - } - } - }, - { - "id": "b823de19-6627-56b8-adff-a56510007433", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1285.198811, - "y": -2377.989982 - }, - "endPoint": { - "x": 1295.198811, - "y": -2381.446232 - } - } - }, - { - "id": "f71bc8b3-f840-5ccd-a74f-8c0606f5beba", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1295.198811, - "y": -2381.446232 - }, - "endPoint": { - "x": 1305.198811, - "y": -2384.902482 - } - } - }, - { - "id": "e91407fc-a7ae-52bc-83a0-4d37b99efdb8", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1305.198811, - "y": -2384.902482 - }, - "endPoint": { - "x": 1325.198811, - "y": -2391.814982 - } - } - }, - { - "id": "f8fe6610-301c-59b9-af18-e0cec7c8b3b3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1325.198811, - "y": -2391.814982 - }, - "endPoint": { - "x": 1345.198811, - "y": -2394.898312 - } - } - }, - { - "id": "c44809f9-ba56-5210-8e15-3097a1b2f8a7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1345.198811, - "y": -2394.898312 - }, - "endPoint": { - "x": 1365.198811, - "y": -2397.981652 - } - } - }, - { - "id": "2ecd4398-6896-5a0c-a0f7-627481b044c1", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1365.198811, - "y": -2397.981652 - }, - "endPoint": { - "x": 1377.198811, - "y": -2399.831652 - } - } - }, - { - "id": "6ed0ae83-8a8d-5415-82b9-20b992ff6075", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1377.198811, - "y": -2399.831652 - }, - "endPoint": { - "x": 1378.198811, - "y": -2399.979432 - } - } - }, - { - "id": "29488fd6-44cd-5a12-9ba7-7dec9631b097", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1378.198811, - "y": -2399.979432 - }, - "endPoint": { - "x": 1379.198811, - "y": -2400.114442 - } - } - }, - { - "id": "2d7076b3-2aaa-5ac2-a728-45f07d712a28", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1379.198811, - "y": -2400.114442 - }, - "endPoint": { - "x": 1380.198811, - "y": -2400.236682 - } - } - }, - { - "id": "afdf0cbc-4a6a-5d14-b92b-8c6e05566768", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1380.198811, - "y": -2400.236682 - }, - "endPoint": { - "x": 1381.198811, - "y": -2400.346162 - } - } - }, - { - "id": "e4d5126f-7250-5e23-9dde-c0803abe73a7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1381.198811, - "y": -2400.346162 - }, - "endPoint": { - "x": 1382.198811, - "y": -2400.442862 - } - } - }, - { - "id": "03ddda2c-c5c8-5b93-89a9-1510e9c0c725", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1382.198811, - "y": -2400.442862 - }, - "endPoint": { - "x": 1383.198811, - "y": -2400.526792 - } - } - }, - { - "id": "fe06198b-72d5-5944-bb13-ea967b2fc697", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1383.198811, - "y": -2400.526792 - }, - "endPoint": { - "x": 1384.198811, - "y": -2400.597962 - } - } - }, - { - "id": "456cf4b6-aaa9-5d03-b068-c5e8eb073095", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1384.198811, - "y": -2400.597962 - }, - "endPoint": { - "x": 1385.198811, - "y": -2400.656352 - } - } - }, - { - "id": "445d3d0d-d88c-5ae6-a6b3-8e5884c482aa", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1385.198811, - "y": -2400.656352 - }, - "endPoint": { - "x": 1386.198811, - "y": -2400.701982 - } - } - }, - { - "id": "7a1a4a65-8767-5788-a489-4ab374266dc3", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1386.198811, - "y": -2400.701982 - }, - "endPoint": { - "x": 1387.198811, - "y": -2400.734832 - } - } - }, - { - "id": "42286d67-7398-5cb0-9ac8-d024b7b8c65b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1387.198811, - "y": -2400.734832 - }, - "endPoint": { - "x": 1388.198811, - "y": -2400.754922 - } - } - }, - { - "id": "b37987ea-957d-5048-90bf-922126b16946", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1388.198811, - "y": -2400.754922 - }, - "endPoint": { - "x": 1389.198811, - "y": -2400.762232 - } - } - }, - { - "id": "97f1d819-cbe3-545c-94a1-275c7e786606", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1389.198811, - "y": -2400.762232 - }, - "endPoint": { - "x": 1390.198811, - "y": -2400.756782 - } - } - }, - { - "id": "f7324fd1-5317-5068-948c-f8f871350250", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1390.198811, - "y": -2400.756782 - }, - "endPoint": { - "x": 1391.198811, - "y": -2400.738562 - } - } - }, - { - "id": "371fa98f-f4d6-5c87-a468-36d87525c623", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1391.198811, - "y": -2400.738562 - }, - "endPoint": { - "x": 1392.198811, - "y": -2400.707572 - } - } - }, - { - "id": "7492c09b-4561-5bfa-832c-9cb5a9d78f7c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1392.198811, - "y": -2400.707572 - }, - "endPoint": { - "x": 1393.198811, - "y": -2400.663802 - } - } - }, - { - "id": "6175af18-02c1-508d-b345-2e3a8e7554af", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1393.198811, - "y": -2400.663802 - }, - "endPoint": { - "x": 1394.198811, - "y": -2400.607272 - } - } - }, - { - "id": "541206c9-5c5a-550c-b36b-5ce9e3ff1564", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1394.198811, - "y": -2400.607272 - }, - "endPoint": { - "x": 1395.198811, - "y": -2400.537972 - } - } - }, - { - "id": "4ece562c-2f6d-5044-b438-61d26c88419c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1395.198811, - "y": -2400.537972 - }, - "endPoint": { - "x": 1396.198811, - "y": -2400.455902 - } - } - }, - { - "id": "0b2ba46b-9aa9-5107-bbc2-a83b5eb3d753", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1396.198811, - "y": -2400.455902 - }, - "endPoint": { - "x": 1397.198811, - "y": -2400.361062 - } - } - }, - { - "id": "f39fafae-b824-5279-b1a1-d5f0e923279f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1397.198811, - "y": -2400.361062 - }, - "endPoint": { - "x": 1398.198811, - "y": -2400.235062 - } - } - }, - { - "id": "af23238d-424a-52b0-ba2b-8460a65c5ce2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1398.198811, - "y": -2400.235062 - }, - "endPoint": { - "x": 1399.198811, - "y": -2400.096292 - } - } - }, - { - "id": "e4ad41df-1f56-5ecd-a7e2-6749909ea83d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1399.198811, - "y": -2400.096292 - }, - "endPoint": { - "x": 1400.198811, - "y": -2399.944752 - } - } - }, - { - "id": "2535b491-1427-5693-ae55-b704182c93aa", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1400.198811, - "y": -2399.944752 - }, - "endPoint": { - "x": 1401.198811, - "y": -2399.780452 - } - } - }, - { - "id": "ed8ee4c3-fd11-52a4-8b73-3ead3a5a17f6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1401.198811, - "y": -2399.780452 - }, - "endPoint": { - "x": 1402.198811, - "y": -2399.603372 - } - } - }, - { - "id": "0892696e-11fa-5b2f-874e-ca8a3701d7e5", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1402.198811, - "y": -2399.603372 - }, - "endPoint": { - "x": 1403.198811, - "y": -2399.413522 - } - } - }, - { - "id": "655e9c92-4715-56ff-972b-885fbe6bff74", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1403.198811, - "y": -2399.413522 - }, - "endPoint": { - "x": 1404.198811, - "y": -2399.210912 - } - } - }, - { - "id": "d34b7943-7893-5bf4-b37f-6a6e9dd04730", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1404.198811, - "y": -2399.210912 - }, - "endPoint": { - "x": 1405.198811, - "y": -2398.995522 - } - } - }, - { - "id": "95208b88-41b3-55b3-85d7-90bf1bbb959a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1405.198811, - "y": -2398.995522 - }, - "endPoint": { - "x": 1406.198811, - "y": -2398.767372 - } - } - }, - { - "id": "e62e0b71-7fb7-59f0-96cd-73f287d1552b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1406.198811, - "y": -2398.767372 - }, - "endPoint": { - "x": 1407.198811, - "y": -2398.526442 - } - } - }, - { - "id": "742de72c-67fa-5998-a4e1-82e18da1a0b7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1407.198811, - "y": -2398.526442 - }, - "endPoint": { - "x": 1408.198811, - "y": -2398.272752 - } - } - }, - { - "id": "c2824a91-3131-5f52-95e5-eed5c1b7bda4", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1408.198811, - "y": -2398.272752 - }, - "endPoint": { - "x": 1409.198811, - "y": -2398.006282 - } - } - }, - { - "id": "67db99e7-4138-5782-a748-b8d5831e2ca4", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1409.198811, - "y": -2398.006282 - }, - "endPoint": { - "x": 1410.198811, - "y": -2397.727052 - } - } - }, - { - "id": "7fc698d1-2089-586d-b2c2-478082b40a4b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1410.198811, - "y": -2397.727052 - }, - "endPoint": { - "x": 1411.198811, - "y": -2397.435042 - } - } - }, - { - "id": "16f2af6a-f422-57e7-9a07-288ae8c16a0b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1411.198811, - "y": -2397.435042 - }, - "endPoint": { - "x": 1412.198811, - "y": -2397.130272 - } - } - }, - { - "id": "8bd4f2ba-2699-5e0e-9b7c-24687e4b2509", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1412.198811, - "y": -2397.130272 - }, - "endPoint": { - "x": 1413.198811, - "y": -2396.812732 - } - } - }, - { - "id": "1aa7c7de-fe01-5c0c-8428-7ec706e16f94", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1413.198811, - "y": -2396.812732 - }, - "endPoint": { - "x": 1414.198811, - "y": -2396.482422 - } - } - }, - { - "id": "114e3898-2fe9-5a98-b674-516d46970c8e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1414.198811, - "y": -2396.482422 - }, - "endPoint": { - "x": 1415.198811, - "y": -2396.139332 - } - } - }, - { - "id": "3cb95e07-3578-5280-8e65-cfd4bd52f48a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1415.198811, - "y": -2396.139332 - }, - "endPoint": { - "x": 1416.198811, - "y": -2395.783482 - } - } - }, - { - "id": "8d9712df-7230-56a2-a1a5-3687d0dd8bb0", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1416.198811, - "y": -2395.783482 - }, - "endPoint": { - "x": 1417.198811, - "y": -2395.414862 - } - } - }, - { - "id": "5e4f89e1-9766-5136-8e07-b19a0e9278d2", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1417.198811, - "y": -2395.414862 - }, - "endPoint": { - "x": 1425.198811, - "y": -2392.929692 - } - } - }, - { - "id": "25f09a3f-543f-5f12-95fa-5547a2b47605", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1425.198811, - "y": -2392.929692 - }, - "endPoint": { - "x": 1445.198811, - "y": -2385.797332 - } - } - }, - { - "id": "6e8a6b3c-6096-5bc4-8dae-8848c304741a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1445.198811, - "y": -2385.797332 - }, - "endPoint": { - "x": 1446.198811, - "y": -2385.449102 - } - } - }, - { - "id": "8e68b34c-077a-5b7a-bad9-e6aa8c19c030", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1446.198811, - "y": -2385.449102 - }, - "endPoint": { - "x": 1447.198811, - "y": -2385.117632 - } - } - }, - { - "id": "2b245973-1d2e-5d5b-be61-8b88e56d1382", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1447.198811, - "y": -2385.117632 - }, - "endPoint": { - "x": 1448.198811, - "y": -2384.802922 - } - } - }, - { - "id": "4169bc59-f4ea-5af6-9ecf-3a3a14279c7b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1448.198811, - "y": -2384.802922 - }, - "endPoint": { - "x": 1449.198811, - "y": -2384.504992 - } - } - }, - { - "id": "ae13084a-ca40-5523-ae6d-9ecce892fa43", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1449.198811, - "y": -2384.504992 - }, - "endPoint": { - "x": 1450.198811, - "y": -2384.223812 - } - } - }, - { - "id": "26d6c8dd-1703-53f6-bf1e-fcad86d6325b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1450.198811, - "y": -2384.223812 - }, - "endPoint": { - "x": 1451.198811, - "y": -2383.959402 - } - } - }, - { - "id": "7bd2bdb4-96af-52c9-9586-f48827578c81", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1451.198811, - "y": -2383.959402 - }, - "endPoint": { - "x": 1452.198811, - "y": -2383.711762 - } - } - }, - { - "id": "f8fd8b29-cfd7-5827-b52b-4c530fbc5018", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1452.198811, - "y": -2383.711762 - }, - "endPoint": { - "x": 1453.198811, - "y": -2383.480892 - } - } - }, - { - "id": "ac9dbe58-0ae4-5e42-b2c3-0148d3f56c0b", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1453.198811, - "y": -2383.480892 - }, - "endPoint": { - "x": 1454.198811, - "y": -2383.266772 - } - } - }, - { - "id": "73819471-69d6-5460-b66f-5fe992d8b44e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1454.198811, - "y": -2383.266772 - }, - "endPoint": { - "x": 1455.198811, - "y": -2383.069432 - } - } - }, - { - "id": "4b9f8a56-65af-5511-9906-7ce8fedb9fa4", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1455.198811, - "y": -2383.069432 - }, - "endPoint": { - "x": 1456.198811, - "y": -2382.888852 - } - } - }, - { - "id": "47a57700-5373-5d47-b9da-758337db1d1a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1456.198811, - "y": -2382.888852 - }, - "endPoint": { - "x": 1457.198811, - "y": -2382.725032 - } - } - }, - { - "id": "46fa7516-8254-5a10-ac17-7d5bb6202653", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1457.198811, - "y": -2382.725032 - }, - "endPoint": { - "x": 1458.198811, - "y": -2382.577982 - } - } - }, - { - "id": "0c62d72e-8540-5024-9c83-d7f250a24cdc", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1458.198811, - "y": -2382.577982 - }, - "endPoint": { - "x": 1459.198811, - "y": -2382.447702 - } - } - }, - { - "id": "2a915c3e-3a4b-5ddd-a8d1-35eea2465529", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1459.198811, - "y": -2382.447702 - }, - "endPoint": { - "x": 1460.198811, - "y": -2382.334182 - } - } - }, - { - "id": "98736103-24af-503b-803d-411dcda3874e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1460.198811, - "y": -2382.334182 - }, - "endPoint": { - "x": 1461.198811, - "y": -2382.237432 - } - } - }, - { - "id": "3f87832d-3b28-5130-a718-99cacd95e54c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1461.198811, - "y": -2382.237432 - }, - "endPoint": { - "x": 1462.198811, - "y": -2382.157442 - } - } - }, - { - "id": "f7197594-6d87-542a-b432-bb5a4d3f6429", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1462.198811, - "y": -2382.157442 - }, - "endPoint": { - "x": 1463.198811, - "y": -2382.094222 - } - } - }, - { - "id": "7e8f549e-6c38-5fcf-9a35-9beb6b8bc02d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1463.198811, - "y": -2382.094222 - }, - "endPoint": { - "x": 1464.198811, - "y": -2382.047762 - } - } - }, - { - "id": "3f953939-5755-51dc-a7bf-c41942875571", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1464.198811, - "y": -2382.047762 - }, - "endPoint": { - "x": 1465.198811, - "y": -2382.018072 - } - } - }, - { - "id": "07ca77be-9cfb-584c-90c0-3ef681bccf4f", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1465.198811, - "y": -2382.018072 - }, - "endPoint": { - "x": 1466.198811, - "y": -2382.005142 - } - } - }, - { - "id": "0b0bdb0d-ae97-51b8-afe7-1180859606bb", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1466.198811, - "y": -2382.005142 - }, - "endPoint": { - "x": 1467.198811, - "y": -2382.008982 - } - } - }, - { - "id": "428eabfd-9033-5238-87e9-773b3408afc6", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1467.198811, - "y": -2382.008982 - }, - "endPoint": { - "x": 1468.198811, - "y": -2382.029592 - } - } - }, - { - "id": "419c7ff1-a65e-5119-a93f-520f2d23b986", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1468.198811, - "y": -2382.029592 - }, - "endPoint": { - "x": 1469.198811, - "y": -2382.066962 - } - } - }, - { - "id": "4543c41b-567e-568f-bd1c-f96f2c99486d", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1469.198811, - "y": -2382.066962 - }, - "endPoint": { - "x": 1470.198811, - "y": -2382.121092 - } - } - }, - { - "id": "de343281-0087-5640-8a46-8cb90dde2b39", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1470.198811, - "y": -2382.121092 - }, - "endPoint": { - "x": 1471.198811, - "y": -2382.191992 - } - } - }, - { - "id": "efd79ef2-3e9c-5d03-8315-f727d21f599a", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1471.198811, - "y": -2382.191992 - }, - "endPoint": { - "x": 1472.198811, - "y": -2382.279662 - } - } - }, - { - "id": "042b6f94-3d5e-5fe0-a31e-624ccfb78d69", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1472.198811, - "y": -2382.279662 - }, - "endPoint": { - "x": 1473.198811, - "y": -2382.384092 - } - } - }, - { - "id": "0fb9d0c8-2ad1-5e3c-86d4-23bbcd5ef08c", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1473.198811, - "y": -2382.384092 - }, - "endPoint": { - "x": 1474.198811, - "y": -2382.505292 - } - } - }, - { - "id": "e204eb9a-b80b-5636-92bc-945312dcf764", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1474.198811, - "y": -2382.505292 - }, - "endPoint": { - "x": 1475.198811, - "y": -2382.643252 - } - } - }, - { - "id": "7c0b58ea-6acc-5c9b-850c-48fd99fbf55e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1475.198811, - "y": -2382.643252 - }, - "endPoint": { - "x": 1476.198811, - "y": -2382.797982 - } - } - }, - { - "id": "32fa781c-7b57-54ce-9b35-b95adbc7fef7", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1476.198811, - "y": -2382.797982 - }, - "endPoint": { - "x": 1477.198811, - "y": -2382.969472 - } - } - }, - { - "id": "de5ba929-b48b-5de8-8524-c51ddfb9e671", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1477.198811, - "y": -2382.969472 - }, - "endPoint": { - "x": 1478.198811, - "y": -2383.157732 - } - } - }, - { - "id": "a70273ee-1319-5b71-9e96-9213b15d87aa", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1478.198811, - "y": -2383.157732 - }, - "endPoint": { - "x": 1479.198811, - "y": -2383.362762 - } - } - }, - { - "id": "6a6f301b-24d6-58d7-8a97-18794fe15b28", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1479.198811, - "y": -2383.362762 - }, - "endPoint": { - "x": 1480.198811, - "y": -2383.584552 - } - } - }, - { - "id": "a1ba0dca-d53b-5fc9-a9a8-567950f6655e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1480.198811, - "y": -2383.584552 - }, - "endPoint": { - "x": 1481.198811, - "y": -2383.823102 - } - } - }, - { - "id": "47adda8e-a78d-57ca-8ead-d6dc90f096ff", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1481.198811, - "y": -2383.823102 - }, - "endPoint": { - "x": 1482.198811, - "y": -2384.078422 - } - } - }, - { - "id": "b5be7026-8fe8-5098-b830-abacc7d0f627", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1482.198811, - "y": -2384.078422 - }, - "endPoint": { - "x": 1483.198811, - "y": -2384.350512 - } - } - }, - { - "id": "ca497003-f649-5968-b68a-b0a450e6a0f5", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1483.198811, - "y": -2384.350512 - }, - "endPoint": { - "x": 1484.198811, - "y": -2384.639362 - } - } - }, - { - "id": "dfd78024-9736-5bb8-9bdd-d6add0476061", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1484.198811, - "y": -2384.639362 - }, - "endPoint": { - "x": 1485.198811, - "y": -2384.944982 - } - } - }, - { - "id": "eb6f3965-acab-57b6-a66c-50907a37479e", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1485.198811, - "y": -2384.944982 - }, - "endPoint": { - "x": 1505.198811, - "y": -2391.224982 - } - } - }, - { - "id": "05b5ec94-b715-55c4-9a32-eed29b3df1bd", - "type": "Line", - "lineColor": "#a5007c", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "startPoint": { - "x": 1505.198811, - "y": -2391.224982 - }, - "endPoint": { - "x": 1515.198811, - "y": -2394.364982 - } - } - } - ] - }, - { - "id": "774a55b7-b7bf-5ba2-b196-71971594c8e2", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.120+18", - "basePoint": { - "x": 104.775477, - "y": -2165.748213 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 4.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e6a7601d-441e-5814-bf5c-f55eea8ca6d4", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "34f997fc-2dca-52f5-98c9-6684a519cfca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 107.198719, - "y": -2306.864982 - }, - "endPoint": { - "x": 107.198719, - "y": -2216.0106 - } - } - }, - { - "id": "3b25fe83-17c6-500f-a9e2-837cd5dd4b07", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 107.198719, - "y": -2216.0106 - }, - "endPoint": { - "x": 107.198719, - "y": -2152.361989 - } - } - } - ] - }, - { - "id": "c31e034f-002d-58de-a1f8-00abcefebd3d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 107.1987193032103, - "y": -2162.698825670936 - }, - "endPoint": { - "x": 154.0463900411837, - "y": -2162.698825670936 - } - } - }, - { - "id": "0fb45135-d342-59d7-a869-8ca195824ebc", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "Φ800m/m", - "basePoint": { - "x": 107.171157, - "y": -2124.280446 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "829fde70-13bc-5016-b7bb-7ae62dc863e9", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "center": { - "x": 107.1987193032132, - "y": -2132.237599011843 - }, - "radius": 20.12439048760605 - } - }, - { - "id": "507329a6-5612-50d1-9692-33d97087584f", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "관매설", - "basePoint": { - "x": 107.171157, - "y": -2117.526849 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "49deff32-849b-58bb-bc39-4715c81f646d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "L=14.0m", - "basePoint": { - "x": 107.519387, - "y": -2129.94818 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0997b09e-fcad-5f82-8c77-25274f2f7f2d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "1개소", - "basePoint": { - "x": 107.768998, - "y": -2141.122393 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "54e67890-5ff7-53bb-9743-44d2aca9ac23", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "(유입)", - "basePoint": { - "x": 107.811496, - "y": -2147.587822 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9b43b6c2-449c-500d-a1af-4079bc89a08d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "수로형토사개거", - "basePoint": { - "x": 107.870704, - "y": -2161.112807 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b10276e6-5882-5395-8076-5fdd807bcd16", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 107.1987193032066, - "y": -2170.463159715513 - }, - "endPoint": { - "x": 170.9555114979089, - "y": -2170.463159715513 - } - } - }, - { - "id": "45171006-879c-514a-ba06-a356565c9e64", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌붙임(찰):A=9.0m2", - "basePoint": { - "x": 107.674696, - "y": -2168.877141 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "d3d0881c-fba9-5802-b5d2-018d17dd2c6c", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.5m, L=10.0m-성토부", - "basePoint": { - "x": 107.870704, - "y": -2176.641475 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "763e8238-dc1b-5c1e-9958-68bf961bb3e8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 107.1987193032028, - "y": -2178.227493760091 - }, - "endPoint": { - "x": 260.4795799607841, - "y": -2178.227493760091 - } - } - }, - { - "id": "e1f827a9-0ff0-5292-8c79-cda1de145ac2", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌집수정ㄴ형", - "basePoint": { - "x": 107.768998, - "y": -2135.65719 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4841a0fc-032c-5ab5-a4c1-b96283caf341", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.125+15", - "basePoint": { - "x": 201.775477, - "y": -2233.611549 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 4.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "70b86126-0eb2-570d-8e6c-78c54f8c6194", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "6b93f526-395f-57d1-a0f1-0af102f569e6", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 204.198719, - "y": -2336.714982 - }, - "endPoint": { - "x": 204.198719, - "y": -2283.873936 - } - } - }, - { - "id": "34656142-2e88-54f3-a2bd-0b92c56f6b76", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 204.198719, - "y": -2283.873936 - }, - "endPoint": { - "x": 204.198719, - "y": -2220.225326 - } - } - } - ] - }, - { - "id": "a71a9f75-f0cd-5045-94ad-0622f1dce3c9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 204.1987193032103, - "y": -2230.562161956429 - }, - "endPoint": { - "x": 251.0463900411837, - "y": -2230.562161956429 - } - } - }, - { - "id": "cb728a93-65f0-5fe7-b28a-ed4aa3aa1709", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "Φ800m/m", - "basePoint": { - "x": 204.171157, - "y": -2192.143783 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0d163a00-2ad3-5f25-a97f-6bd93c704683", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "center": { - "x": 204.1987193032132, - "y": -2200.100935297335 - }, - "radius": 20.12439048760605 - } - }, - { - "id": "5e8cf706-8239-5383-ba01-851a84ee7426", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "관매설", - "basePoint": { - "x": 204.171157, - "y": -2185.390186 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "385155e5-9552-5960-8255-b97bf935f414", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "L=16.0m", - "basePoint": { - "x": 204.519387, - "y": -2197.811516 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6730a54a-34a7-538c-84e6-12d4ca92b7b9", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "1개소", - "basePoint": { - "x": 204.768998, - "y": -2208.98573 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "f35aeecb-2a0b-5695-be63-6748cfa7dd97", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "(유입)", - "basePoint": { - "x": 204.811496, - "y": -2215.451158 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "abb316e3-beb9-5847-8d16-713b6ababc80", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "수로형토사개거", - "basePoint": { - "x": 204.870704, - "y": -2228.976143 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "384eb989-8dc4-52f4-bb3d-110f5502eea8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 204.1987193032066, - "y": -2238.326496001006 - }, - "endPoint": { - "x": 267.9555114979089, - "y": -2238.326496001006 - } - } - }, - { - "id": "66270916-885d-5bc7-ad34-7cc8889b8cb6", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌붙임(찰):A=9.0m2", - "basePoint": { - "x": 204.674696, - "y": -2236.740477 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "11eea3aa-2cf9-5bca-bc47-33e5365cc2eb", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.5m, L=6.0m-성토부", - "basePoint": { - "x": 204.870704, - "y": -2244.504811 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ec7d5dd4-9067-5d23-a2a1-c15838843b6b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 204.1987193032028, - "y": -2246.090830045584 - }, - "endPoint": { - "x": 357.4795799607841, - "y": -2246.090830045584 - } - } - }, - { - "id": "c24beb57-f54e-52ab-920b-fb09a8946378", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌집수정ㄷ형", - "basePoint": { - "x": 204.768998, - "y": -2203.520527 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7c3d2b1f-7fa4-5c57-9228-007c50231ceb", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "b0c7201a-66b8-5517-82e9-1fb7739a5f9b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 221.698719, - "y": -2364.630197 - }, - "endPoint": { - "x": 221.698719, - "y": -2365.46353 - } - } - }, - { - "id": "88924557-72e7-5042-820c-7a026f9f6933", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 221.698719, - "y": -2365.46353 - }, - "endPoint": { - "x": 219.198719, - "y": -2365.046863 - } - } - }, - { - "id": "ef7a57d7-9132-5541-b708-7761a27ce5ca", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 219.198719, - "y": -2365.046863 - }, - "endPoint": { - "x": 221.698719, - "y": -2364.630197 - } - } - } - ] - }, - { - "id": "6c503cfc-f4c1-5fbe-9a79-3b955db2f363", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 219.1987193031828, - "y": -2367.466775523982 - }, - "endPoint": { - "x": 219.1987193031828, - "y": -2362.626951296599 - } - } - }, - { - "id": "ee3e2d3f-26d0-5a57-9b0c-06f4e582e8a9", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": null, - "children": [ - { - "id": "6671b968-13e5-5a59-a0e3-6251a67ab890", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 219.198719, - "y": -2365.046863 - }, - "endPoint": { - "x": 225.198719, - "y": -2365.046863 - } - } - } - ] - }, - { - "id": "51045b8d-2c34-5bfd-ba10-edf3367b82cc", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "26c51a35-7b5c-54d8-b8c2-b87b4ef4c058", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 222.698719, - "y": -2364.630197 - }, - "endPoint": { - "x": 222.698719, - "y": -2365.46353 - } - } - }, - { - "id": "2a23c4cc-2a46-5a19-a197-326481ebfb9e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 222.698719, - "y": -2365.46353 - }, - "endPoint": { - "x": 225.198719, - "y": -2365.046863 - } - } - }, - { - "id": "d3ce0c2d-c67b-55a7-b14a-7281eb5fd00f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 225.198719, - "y": -2365.046863 - }, - "endPoint": { - "x": 222.698719, - "y": -2364.630197 - } - } - } - ] - }, - { - "id": "d9a3ea0e-89ab-5171-8792-4785a01d356a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 225.1987193031828, - "y": -2367.466775523982 - }, - "endPoint": { - "x": 225.1987193031828, - "y": -2362.626951296599 - } - } - }, - { - "id": "7263db9b-f4c7-5e49-a450-d7e830bd51fb", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "No.126+10 ~ No.126+16", - "basePoint": { - "x": 221.614648, - "y": -2358.95034 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "82aec855-1716-5ff9-9bc2-c0de8f6f596d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.5m, L=6.0m-성토부", - "basePoint": { - "x": 161.642912, - "y": -2373.754663 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5c36fe52-6758-545d-973f-d0006d252488", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.135+14", - "basePoint": { - "x": 400.775477, - "y": -2230.547235 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 4.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5fd43508-9c95-5c66-b175-23b8024b13bd", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "390c5ca8-d027-566f-bd30-41455de2994a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 403.198719, - "y": -2413.664982 - }, - "endPoint": { - "x": 403.198719, - "y": -2280.809622 - } - } - }, - { - "id": "3df8b92b-1eb9-5955-ade7-768e1febca69", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 403.198719, - "y": -2280.809622 - }, - "endPoint": { - "x": 403.198719, - "y": -2217.161011 - } - } - } - ] - }, - { - "id": "74b9e48c-0684-5a04-afb3-8587409aa665", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 403.1987193032103, - "y": -2227.497847512122 - }, - "endPoint": { - "x": 451.4916499696888, - "y": -2227.497847512122 - } - } - }, - { - "id": "337dbba0-f05b-5057-8f1d-7cdbb03bdbba", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "Φ800m/m", - "basePoint": { - "x": 403.791877, - "y": -2199.269701 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5c59564c-1309-5190-a70f-c4b7daaa16f5", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "center": { - "x": 403.8194387232174, - "y": -2199.927317076335 - }, - "radius": 17.23369426429872 - } - }, - { - "id": "558e5312-87d7-5cce-98ee-11fe0b33947f", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "관매설", - "basePoint": { - "x": 403.791877, - "y": -2192.516104 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "99055980-9ce8-5712-996e-13bf096cfcf7", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "L=16.0m", - "basePoint": { - "x": 404.140107, - "y": -2204.937434 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "e0eda98d-3508-50ae-9c41-8756f4b61aab", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "수로형토사개거", - "basePoint": { - "x": 403.870704, - "y": -2225.911828 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "1ea3e012-188c-598d-8f74-7b37338d5464", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.136+13", - "basePoint": { - "x": 419.775477, - "y": -2287.904066 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 4.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9e536bf3-1c82-5de3-8b1d-dca2379609ee", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "a0cfc455-b50d-5fd8-992d-f8e1851529e5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 422.198719, - "y": -2411.414982 - }, - "endPoint": { - "x": 422.198719, - "y": -2338.166453 - } - } - }, - { - "id": "59edf3c1-4e6e-5b22-b636-d7573afe2bdc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 422.198719, - "y": -2338.166453 - }, - "endPoint": { - "x": 422.198719, - "y": -2274.517843 - } - } - } - ] - }, - { - "id": "f5756c1b-1c30-56f7-b6cb-d50f0f8d6e78", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 422.1987193032103, - "y": -2284.854679028144 - }, - "endPoint": { - "x": 470.4916499696888, - "y": -2284.854679028144 - } - } - }, - { - "id": "c43d2eb6-47eb-5135-af73-1a81c7092779", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "Φ800m/m", - "basePoint": { - "x": 422.791877, - "y": -2256.626532 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "26ccf7cd-93e6-5715-acef-90b6afc4461a", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "center": { - "x": 422.8194387232174, - "y": -2257.284148592358 - }, - "radius": 17.23369426429872 - } - }, - { - "id": "c8ad619c-7ca0-559c-8927-598e2964d112", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "관매설", - "basePoint": { - "x": 422.791877, - "y": -2249.872935 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "617e9896-5ccd-591b-88e2-60962980926c", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "L=12.0m", - "basePoint": { - "x": 423.140107, - "y": -2262.294266 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "69bd6c04-79f6-56f4-aa1a-3b48b0db26ec", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "수로형토사개거", - "basePoint": { - "x": 422.870704, - "y": -2283.26866 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b532d0c1-bf75-58d7-ac2c-5a8f72b42113", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "ce8660ac-5a2e-5ac5-94bc-a267e9c15452", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 401.698719, - "y": -2437.586218 - }, - "endPoint": { - "x": 401.698719, - "y": -2438.419551 - } - } - }, - { - "id": "bfb7206d-00d9-5ee5-898f-defbba293397", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 401.698719, - "y": -2438.419551 - }, - "endPoint": { - "x": 399.198719, - "y": -2438.002885 - } - } - }, - { - "id": "8d6b8c8f-6d17-5a30-811a-ad13bc246dc1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 399.198719, - "y": -2438.002885 - }, - "endPoint": { - "x": 401.698719, - "y": -2437.586218 - } - } - } - ] - }, - { - "id": "63cf0fba-0f8c-5b60-8b5d-0a1e819e631c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 399.1987193031828, - "y": -2440.422796845734 - }, - "endPoint": { - "x": 399.1987193031828, - "y": -2435.58297261835 - } - } - }, - { - "id": "1ee06590-7360-5485-a9ed-31bd06d1f0ce", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": null, - "children": [ - { - "id": "f3a078b3-0a89-5434-aa0d-0043e2425959", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 399.198719, - "y": -2438.002885 - }, - "endPoint": { - "x": 424.198719, - "y": -2438.002885 - } - } - } - ] - }, - { - "id": "3bfa0d59-a401-52af-b994-82a4082d888f", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "0f765160-d995-5933-adb0-4b3957124009", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 421.698719, - "y": -2437.586218 - }, - "endPoint": { - "x": 421.698719, - "y": -2438.419551 - } - } - }, - { - "id": "ed81e1e2-0870-5883-9b31-a298acfbeec9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 421.698719, - "y": -2438.419551 - }, - "endPoint": { - "x": 424.198719, - "y": -2438.002885 - } - } - }, - { - "id": "80aeb17c-58ec-55b7-be01-d922ffe7d5f2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 424.198719, - "y": -2438.002885 - }, - "endPoint": { - "x": 421.698719, - "y": -2437.586218 - } - } - } - ] - }, - { - "id": "a1885f08-1ba5-5421-b6c2-8d90e7588c2f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 424.1987193031828, - "y": -2440.422796845734 - }, - "endPoint": { - "x": 424.1987193031828, - "y": -2435.58297261835 - } - } - }, - { - "id": "48ce6f42-21b2-5f96-a8ea-154689edcd2a", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "No.135+10 ~ No.136+15", - "basePoint": { - "x": 411.114648, - "y": -2429.589744 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "4aa8cf43-fb68-578a-afea-67968fc9354f", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(찰,기초무):H=1.5m, L=25.0m(성토부-좌안)", - "basePoint": { - "x": 330.704536, - "y": -2446.633019 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5fbb2670-f1c6-5302-afd4-f74430dd989a", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.0m, L=25.0m(성토부-우안)", - "basePoint": { - "x": 330.704536, - "y": -2453.258916 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "5d2c297c-53ce-5e21-b65e-c849fd89ce44", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 466.1987193032056, - "y": -2311.518626961226 - }, - "endPoint": { - "x": 528.9072608480458, - "y": -2311.518626961226 - } - } - }, - { - "id": "3c8ccd0d-3b70-5e34-a368-ca2ca1530ebf", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "물넘이집수부:1개소", - "basePoint": { - "x": 467.133578, - "y": -2309.247077 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0d7f8b50-0c1b-5f3b-a270-613f38013ba4", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.138+17", - "basePoint": { - "x": 463.775477, - "y": -2322.608766 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 4.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "58748178-11a8-596a-af6f-903708763cd1", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "dd787c80-4700-58af-b1bf-cbd9016a2757", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 466.198719, - "y": -2422.814982 - }, - "endPoint": { - "x": 466.198719, - "y": -2311.518627 - } - } - } - ] - }, - { - "id": "19535ffc-2004-59e3-9eee-5ad42abda419", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "콘크리트포장(확폭)(T=0.2m, A=15.0m2)", - "basePoint": { - "x": 466.870704, - "y": -2340.989944 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ac386b0f-8748-5b88-b25d-cb1e8446da6c", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 466.1987193032066, - "y": -2319.282961005804 - }, - "endPoint": { - "x": 534.3979320199167, - "y": -2319.282961005804 - } - } - }, - { - "id": "f9a8c322-10f5-52f5-b8d1-895a60376dcd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 466.1987193032043, - "y": -2319.282961005804 - }, - "endPoint": { - "x": 531.1162143035783, - "y": -2319.282961005804 - } - } - }, - { - "id": "ee86446c-c7ae-58c6-9912-e11a6160954b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 466.1987193032032, - "y": -2327.047295050381 - }, - "endPoint": { - "x": 638.3073410671484, - "y": -2327.047295050381 - } - } - }, - { - "id": "2493f9b6-4caf-5e5d-870a-2f217766ea2d", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌붙임(찰):A=25.0m2", - "basePoint": { - "x": 466.870704, - "y": -2317.696942 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "0743679d-2bd1-5d44-b1b1-946d2f5d280f", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.0m, L=10.0m(성토부-우안)", - "basePoint": { - "x": 466.870704, - "y": -2325.461276 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "28a38ef5-d12e-571b-8059-bd3e1278804d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 466.1987193031991, - "y": -2334.811629094959 - }, - "endPoint": { - "x": 602.2597665780211, - "y": -2334.811629094959 - } - } - }, - { - "id": "524f3caf-9679-548a-9fdc-37e6fb689ff7", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 466.198719303201, - "y": -2342.575963139536 - }, - "endPoint": { - "x": 593.1965166466814, - "y": -2342.575963139536 - } - } - }, - { - "id": "65632cbb-17dc-54a0-87b0-a9b18b61f823", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "콘크리트포장(T=0.2m,B=3.30m,L=10.0m2)", - "basePoint": { - "x": 466.870704, - "y": -2333.22561 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "82f8cdcf-6327-5a7d-89a7-1a29fea701b5", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "e0081f6b-9b60-59e6-872d-bff6c57b964b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1067.698811, - "y": -2394.511901 - }, - "endPoint": { - "x": 1067.698811, - "y": -2395.345235 - } - } - }, - { - "id": "9897f165-4a94-5386-90ec-f5512a682da1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1067.698811, - "y": -2395.345235 - }, - "endPoint": { - "x": 1065.198811, - "y": -2394.928568 - } - } - }, - { - "id": "63ba62fa-02c7-5bf1-bb05-fa4c3b29d259", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1065.198811, - "y": -2394.928568 - }, - "endPoint": { - "x": 1067.698811, - "y": -2394.511901 - } - } - } - ] - }, - { - "id": "ca6c846f-1297-5dd8-a51a-360b78c932d5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1065.198810788243, - "y": -2397.348480111818 - }, - "endPoint": { - "x": 1065.198810788243, - "y": -2392.508655884435 - } - } - }, - { - "id": "c9304848-81ac-592f-b0a6-1fc5bfe4464b", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": null, - "children": [ - { - "id": "6192b995-1902-5004-9524-9a93c3ec6aef", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1065.198811, - "y": -2394.928568 - }, - "endPoint": { - "x": 1075.198811, - "y": -2394.928568 - } - } - } - ] - }, - { - "id": "f6c36fbb-23c0-58b4-8ec0-b817c78b07f4", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "f3219c21-e71c-5f64-8f85-a8bb76345b53", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1072.698811, - "y": -2394.511901 - }, - "endPoint": { - "x": 1072.698811, - "y": -2395.345235 - } - } - }, - { - "id": "b4abd01b-3338-50a6-a1dd-72596b60e292", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1072.698811, - "y": -2395.345235 - }, - "endPoint": { - "x": 1075.198811, - "y": -2394.928568 - } - } - }, - { - "id": "fe0daac6-79aa-5126-9675-0998532404e4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1075.198811, - "y": -2394.928568 - }, - "endPoint": { - "x": 1072.698811, - "y": -2394.511901 - } - } - } - ] - }, - { - "id": "06d96665-0c62-5f73-a80f-3a2fa8d7fb83", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1075.198810788243, - "y": -2397.348480111818 - }, - "endPoint": { - "x": 1075.198810788243, - "y": -2392.508655884435 - } - } - }, - { - "id": "d79a7806-069e-59e4-a2a5-c14d1c67dae6", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "No.154+00 ~ No.154+10", - "basePoint": { - "x": 1072.857046, - "y": -2388.832045 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "a306177c-9f77-5bdb-b19e-27d63e6f869a", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.0m, L=10.0m(성토부)", - "basePoint": { - "x": 1002.766623, - "y": -2404.728315 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8057818e-46e4-5ca8-b883-18c6a76cffe7", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.155+12", - "basePoint": { - "x": 1094.775568, - "y": -2215.948213 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 4.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "19e6fc82-a2e5-50c3-99e6-42ce7dd83e00", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "2058a0d9-f065-5c3f-a424-0d267efb6535", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1097.198811, - "y": -2357.064982 - }, - "endPoint": { - "x": 1097.198811, - "y": -2266.2106 - } - } - }, - { - "id": "69539001-6a74-5f92-8757-c14cbd8caf6e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1097.198811, - "y": -2266.2106 - }, - "endPoint": { - "x": 1097.198811, - "y": -2202.561989 - } - } - } - ] - }, - { - "id": "b9c4b20c-cc9b-52c5-a7b6-ebf2098cd14e", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1097.198810788271, - "y": -2212.898825670936 - }, - "endPoint": { - "x": 1144.046481526244, - "y": -2212.898825670936 - } - } - }, - { - "id": "4dc0a1c5-3502-5de8-97cc-a32cd521a9e1", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "Φ800m/m", - "basePoint": { - "x": 1097.171249, - "y": -2174.480446 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6972f014-3ba5-5f15-8255-58df3ea7f00f", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "center": { - "x": 1097.198810788274, - "y": -2182.437599011842 - }, - "radius": 20.12439048760605 - } - }, - { - "id": "2b8a8c3d-ca35-5231-8cb9-91bab5350ab2", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "관매설", - "basePoint": { - "x": 1097.171249, - "y": -2167.726849 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "76d2ca89-890c-54f7-90cd-f5dfed32c791", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "L=18.0m", - "basePoint": { - "x": 1097.519479, - "y": -2180.14818 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "acc88a06-fc11-5c50-a828-8f881bf9809e", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "1개소", - "basePoint": { - "x": 1097.76909, - "y": -2191.322393 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "15f604f7-5877-5815-bae9-05f8015dc199", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "(유입)", - "basePoint": { - "x": 1097.811588, - "y": -2197.787822 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "91872762-2f5a-5237-9f3f-e77320c22b15", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "수로형토사개거", - "basePoint": { - "x": 1097.870795, - "y": -2211.312807 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b4737188-7231-5d8c-ab13-69646cad4926", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1097.198810788267, - "y": -2220.663159715513 - }, - "endPoint": { - "x": 1160.95560298297, - "y": -2220.663159715513 - } - } - }, - { - "id": "23341981-f8d7-5406-a3de-eaea26620729", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌붙임(찰):A=9.0m2", - "basePoint": { - "x": 1097.674788, - "y": -2219.077141 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "10c13636-1093-554a-9938-6bc2bddbea00", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.5m, L=10.0m-성토부", - "basePoint": { - "x": 1097.870795, - "y": -2226.841475 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "21a110a7-df3b-5289-b8d4-b45a5e66947a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1097.198810788263, - "y": -2228.427493760091 - }, - "endPoint": { - "x": 1250.479671445845, - "y": -2228.427493760091 - } - } - }, - { - "id": "50021db5-8d62-592b-a541-126bc86dd28f", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌집수정ㄴ형", - "basePoint": { - "x": 1097.76909, - "y": -2185.85719 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6d59d105-6e05-5973-9b73-ba0d3d68732e", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "6c05717d-e9da-540a-9bbf-3f8e23f9afdb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1302.698811, - "y": -2401.54938 - }, - "endPoint": { - "x": 1302.698811, - "y": -2402.382713 - } - } - }, - { - "id": "ad27f6e1-c87f-5648-9567-78253ad6f666", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1302.698811, - "y": -2402.382713 - }, - "endPoint": { - "x": 1300.198811, - "y": -2401.966046 - } - } - }, - { - "id": "a02129ee-a0dc-50e2-a445-5b4d06b29051", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1300.198811, - "y": -2401.966046 - }, - "endPoint": { - "x": 1302.698811, - "y": -2401.54938 - } - } - } - ] - }, - { - "id": "ec8d9146-922c-5f78-b591-baaa83bdbccc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1300.198810788243, - "y": -2404.385958465391 - }, - "endPoint": { - "x": 1300.198810788243, - "y": -2399.546134238007 - } - } - }, - { - "id": "b0510ebf-d189-5c0a-a7c7-be0ef8e3d085", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": null, - "children": [ - { - "id": "eafc75f9-0983-5195-bc09-c72c55abfa6b", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1300.198811, - "y": -2401.966046 - }, - "endPoint": { - "x": 1310.198811, - "y": -2401.966046 - } - } - } - ] - }, - { - "id": "fa799428-75c0-5970-9e4c-5b3470004080", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "b3bf4ff0-3260-5fbb-b293-4707363fa86a", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1307.698811, - "y": -2401.54938 - }, - "endPoint": { - "x": 1307.698811, - "y": -2402.382713 - } - } - }, - { - "id": "298f78ac-1062-5c88-be34-400a01fe47f1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1307.698811, - "y": -2402.382713 - }, - "endPoint": { - "x": 1310.198811, - "y": -2401.966046 - } - } - }, - { - "id": "3fec1870-1325-52cf-90c0-28b0886d47a9", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1310.198811, - "y": -2401.966046 - }, - "endPoint": { - "x": 1307.698811, - "y": -2401.54938 - } - } - } - ] - }, - { - "id": "2a37c356-d22a-52c8-ba75-b0bd7dd86dc2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1310.198810788243, - "y": -2404.385958465391 - }, - "endPoint": { - "x": 1310.198810788243, - "y": -2399.546134238007 - } - } - }, - { - "id": "314bef11-7f7d-5af1-8618-6394ccbec223", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "No.165+15 ~ No.166+05", - "basePoint": { - "x": 1307.857046, - "y": -2395.869523 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "175b7889-b844-58a8-8660-bcf1895528a4", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.0m, L=10.0m(성토부)", - "basePoint": { - "x": 1237.766623, - "y": -2411.765794 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "c8c8f037-cd4a-56b4-83ab-e6733bffacc8", - "type": "Text", - "lineColor": "#ffff00", - "lineWidth": 1, - "layerId": "0", - "shapeData": { - "label": "No.170+12", - "basePoint": { - "x": 1394.775568, - "y": -2236.247235 - }, - "options": { - "textDirection": { - "x": 0.0, - "y": 1.0 - }, - "textAlign": "center", - "textColor": "#ffff00", - "fontSize": 4.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "6454fee6-1a54-5baa-ac31-e8ae67825c53", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "6fdf854c-2297-5d4c-816e-4875311e2aeb", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1397.198811, - "y": -2419.364982 - }, - "endPoint": { - "x": 1397.198811, - "y": -2286.509622 - } - } - }, - { - "id": "efd8b819-a699-589a-a250-dec43fb46aee", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1397.198811, - "y": -2286.509622 - }, - "endPoint": { - "x": 1397.198811, - "y": -2222.861011 - } - } - } - ] - }, - { - "id": "8dc6e27b-41fc-54ab-aa1c-59ed816265c2", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1397.198810788271, - "y": -2233.197847512121 - }, - "endPoint": { - "x": 1445.491741454749, - "y": -2233.197847512121 - } - } - }, - { - "id": "b912620f-bd90-583b-b0ad-384071913aeb", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "Φ1,000m/m", - "basePoint": { - "x": 1397.791968, - "y": -2203.65526 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9a2acc61-da6e-5c33-971b-901dfd58831f", - "type": "Circle", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "center": { - "x": 1397.819530208279, - "y": -2204.312876922284 - }, - "radius": 18.55851780179501 - } - }, - { - "id": "154da11d-8863-594e-9649-299d7a705b72", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "관매설", - "basePoint": { - "x": 1397.791968, - "y": -2196.901663 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "682aec54-6890-54b4-a434-ae8db5150b48", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "L=18.0m", - "basePoint": { - "x": 1398.140198, - "y": -2209.322994 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "9491dca0-0a13-51e5-aa83-a691cb0ae9e0", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "수로형토사개거", - "basePoint": { - "x": 1397.870795, - "y": -2231.611828 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8bbb2041-bd94-52ce-919e-7bf00cdfb590", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "a318ed43-34e1-5ee4-9c6e-da7dd4e475fe", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1392.698811, - "y": -2428.090225 - }, - "endPoint": { - "x": 1392.698811, - "y": -2428.923559 - } - } - }, - { - "id": "dc1bc3fd-11ad-57ef-980e-aca428a8efd4", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1392.698811, - "y": -2428.923559 - }, - "endPoint": { - "x": 1390.198811, - "y": -2428.506892 - } - } - }, - { - "id": "c0c9556c-a848-5aab-aeb6-1eaaa62c7a4f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1390.198811, - "y": -2428.506892 - }, - "endPoint": { - "x": 1392.698811, - "y": -2428.090225 - } - } - } - ] - }, - { - "id": "20714f59-c687-5fb3-b480-952eaf1cd6f3", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1390.198810788243, - "y": -2430.926804074851 - }, - "endPoint": { - "x": 1390.198810788243, - "y": -2426.086979847468 - } - } - }, - { - "id": "3f7d6f7b-3a96-5654-b74a-58c707c9f3c8", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": null, - "children": [ - { - "id": "20d657cc-aa5f-5fee-a3d9-4285ddac1773", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1390.198811, - "y": -2428.506892 - }, - "endPoint": { - "x": 1400.198811, - "y": -2428.506892 - } - } - } - ] - }, - { - "id": "29d0b08c-361d-5a74-b070-b458fe09197d", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "1818c172-f355-5f29-a8db-a5e92a6fa676", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1397.698811, - "y": -2428.090225 - }, - "endPoint": { - "x": 1397.698811, - "y": -2428.923559 - } - } - }, - { - "id": "1b19dcf2-8212-58c7-81b9-9d4c702445dc", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1397.698811, - "y": -2428.923559 - }, - "endPoint": { - "x": 1400.198811, - "y": -2428.506892 - } - } - }, - { - "id": "e20b3154-e4db-501d-a6c4-e10ef85dec07", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1400.198811, - "y": -2428.506892 - }, - "endPoint": { - "x": 1397.698811, - "y": -2428.090225 - } - } - } - ] - }, - { - "id": "53b13b3e-ab0b-54ab-ac7b-7cdb166297b8", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1400.198810788243, - "y": -2430.926804074851 - }, - "endPoint": { - "x": 1400.198810788243, - "y": -2426.086979847468 - } - } - }, - { - "id": "d8ca801c-2b42-59b0-88e6-166b65369bd4", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "No.170+05 ~ No.170+15", - "basePoint": { - "x": 1394.614739, - "y": -2422.709052 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "23929c1e-c6f7-5de0-a0c6-b60d1396f57a", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(찰,기초무):H=1.5m, L=10.0m(성토부-좌안)", - "basePoint": { - "x": 1314.204627, - "y": -2436.167395 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "8f1a5a68-e829-57eb-867b-541b82cd6c1b", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "3edfb2c6-32db-5ec8-94b3-73b8d3911c46", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1387.698811, - "y": -2449.168985 - }, - "endPoint": { - "x": 1387.698811, - "y": -2450.002318 - } - } - }, - { - "id": "09ef0912-7b5c-5aba-9446-882e3f660ab1", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1387.698811, - "y": -2450.002318 - }, - "endPoint": { - "x": 1385.198811, - "y": -2449.585651 - } - } - }, - { - "id": "0bab0da5-fff5-5b55-8dc6-c827623ed7fd", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1385.198811, - "y": -2449.585651 - }, - "endPoint": { - "x": 1387.698811, - "y": -2449.168985 - } - } - } - ] - }, - { - "id": "c87f1058-7bff-53e0-9fd1-22c59034f5a5", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1385.198810788243, - "y": -2452.005563414965 - }, - "endPoint": { - "x": 1385.198810788243, - "y": -2447.165739187582 - } - } - }, - { - "id": "cc8f206e-7bf9-5eb2-ad04-1625d0d4682e", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": null, - "children": [ - { - "id": "03bb3b62-a15c-5e5e-9f76-2dbbc7ba9751", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1385.198811, - "y": -2449.585651 - }, - "endPoint": { - "x": 1405.198811, - "y": -2449.585651 - } - } - } - ] - }, - { - "id": "993554b1-1284-5096-9acc-7ee1715ee565", - "type": "PolyLine", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": null, - "children": [ - { - "id": "66171e3b-f317-5814-902c-8b694dcb478d", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1402.698811, - "y": -2449.168985 - }, - "endPoint": { - "x": 1402.698811, - "y": -2450.002318 - } - } - }, - { - "id": "21529874-a294-503a-bf63-dac62503d953", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1402.698811, - "y": -2450.002318 - }, - "endPoint": { - "x": 1405.198811, - "y": -2449.585651 - } - } - }, - { - "id": "0f0b1af5-8a9a-5a5d-b40d-62be237c054f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "호지기입", - "shapeData": { - "startPoint": { - "x": 1405.198811, - "y": -2449.585651 - }, - "endPoint": { - "x": 1402.698811, - "y": -2449.168985 - } - } - } - ] - }, - { - "id": "94401c00-e8c4-5188-b963-f8e90e95582f", - "type": "Line", - "lineColor": "#ff0000", - "lineWidth": 1, - "layerId": "치수", - "shapeData": { - "startPoint": { - "x": 1405.198810788243, - "y": -2452.005563414965 - }, - "endPoint": { - "x": 1405.198810788243, - "y": -2447.165739187582 - } - } - }, - { - "id": "bebbad6b-2589-5887-b9d2-8947b2ffc9f6", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "JCinfo", - "shapeData": { - "label": "No.170+00 ~ No.171+00", - "basePoint": { - "x": 1394.614739, - "y": -2442.995557 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "7a026f46-7c3f-5319-908a-86142f38e257", - "type": "Text", - "lineColor": "#f5f7fa", - "lineWidth": 1, - "layerId": "기설구조물", - "shapeData": { - "label": "돌기슭막이(메,기초무):H=2.0m, L=20.0m(성토부-우안)", - "basePoint": { - "x": 1314.204627, - "y": -2459.882635 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "left", - "textColor": "#f5f7fa", - "fontSize": 5.0, - "fontFamily": "sans-serif" - } - } - } - ], - "layers": [ - { - "id": "0", - "name": "0", - "isVisible": true, - "isLocked": false - }, - { - "id": "JCinfo", - "name": "JCinfo", - "isVisible": true, - "isLocked": false - }, - { - "id": "LP_AA_SGG", - "name": "LP_AA_SGG", - "isVisible": true, - "isLocked": false - }, - { - "id": "프린터", - "name": "프린터", - "isVisible": true, - "isLocked": false - }, - { - "id": "9224", - "name": "9224", - "isVisible": true, - "isLocked": false - }, - { - "id": "타이틀", - "name": "타이틀", - "isVisible": true, - "isLocked": false - }, - { - "id": "text", - "name": "text", - "isVisible": true, - "isLocked": false - }, - { - "id": "호지기입", - "name": "호지기입", - "isVisible": true, - "isLocked": false - }, - { - "id": "기설구조물", - "name": "기설구조물", - "isVisible": true, - "isLocked": false - }, - { - "id": "치수", - "name": "치수", - "isVisible": true, - "isLocked": false - } - ] -} \ No newline at end of file diff --git a/ui_template/ui_template_locale_m2.ts b/ui_template/ui_template_locale_m2.ts index d65d32ad..de4797c5 100644 --- a/ui_template/ui_template_locale_m2.ts +++ b/ui_template/ui_template_locale_m2.ts @@ -8,6 +8,7 @@ export const ui_locales_m2 = { M02_Title: ["마스터 템플릿", "Master Templates"], M02_KindTable: ["표 양식", "Table templates"], M02_KindDrawing: ["도면 양식", "Drawing templates"], + M02_KindStructure: ["구조물 도면", "Structure drawings"], M02_NoTemplates: ["양식 없음", "None"], M02_New: ["새로", "New"], M02_Copy: ["본떠 만들기", "Copy as new"],