From 4a6d76c2bfecff0ab76657fbf474368bdd3ea43d Mon Sep 17 00:00:00 2001 From: Kieran Klukas Date: Sat, 6 Jun 2026 15:57:57 -0400 Subject: [PATCH] feat: add full wireup --- .../grimoire-injector/GrimoireInjector.cpp | 183 ++++++++++++++++++ .../grimoire-injector/GrimoireInjector.hpp | 13 ++ xovi-ext/grimoire_thinking.qmd | 18 ++ xovi-ext/grimoired/grimoired.c | 160 ++++++++++++++- xovi-ext/grimoired/ornaments.json | 1 + 5 files changed, 368 insertions(+), 7 deletions(-) create mode 100644 xovi-ext/grimoire_thinking.qmd create mode 100644 xovi-ext/grimoired/ornaments.json diff --git a/xovi-ext/grimoire-injector/GrimoireInjector.cpp b/xovi-ext/grimoire-injector/GrimoireInjector.cpp index a3c8690..965fca7 100644 --- a/xovi-ext/grimoire-injector/GrimoireInjector.cpp +++ b/xovi-ext/grimoire-injector/GrimoireInjector.cpp @@ -9,6 +9,7 @@ #include #include #include +#include #include #include #include @@ -78,8 +79,10 @@ static void *watchThreadFunc(void *) { const char *path = "/tmp/grimoire_strokes.json"; const char *armedPath = "/tmp/grimoire_armed"; + const char *thinkingPath = "/tmp/grimoire_thinking"; long long lastMod = 0; int lastArmed = -1; + int lastThinking = -1; while (true) { /* Check armed state file */ @@ -102,6 +105,42 @@ static void *watchThreadFunc(void *) { fclose(afp); } + /* Check thinking state file */ + { + int tval = 0; + FILE *tfp = fopen(thinkingPath, "r"); + if (tfp) { + char tbuf[16] = {0}; + if (fgets(tbuf, sizeof(tbuf), tfp)) { + char *tp = tbuf; + while (*tp == '"' || *tp == ' ' || *tp == '\t') tp++; + tval = atoi(tp); + } + fclose(tfp); + } + /* File missing or contains 0 → not thinking */ + if (tval != lastThinking && g_instance) { + lastThinking = tval; + int capturedTval = tval; + QMetaObject::invokeMethod(g_instance, [capturedTval]() { + g_instance->setThinking(capturedTval != 0); + }, Qt::QueuedConnection); + } + } + + /* Check safezone state file */ + { + int szval = (access("/tmp/grimoire_safezone", F_OK) == 0) ? 1 : 0; + static int lastSafezone = -1; + if (szval != lastSafezone && g_instance) { + lastSafezone = szval; + int capturedSz = szval; + QMetaObject::invokeMethod(g_instance, [capturedSz]() { + g_instance->setSafezone(capturedSz != 0); + }, Qt::QueuedConnection); + } + } + /* Check for hot-reload signal */ if (grimoire_checkReload()) { fprintf(stderr, "[grimoire] Hot-reload signal received! Re-scanning...\n"); @@ -174,6 +213,150 @@ void GrimoireInjector::setArmed(bool armed) { emit armedChanged(armed); } +void GrimoireInjector::setThinking(bool thinking) { + if (m_thinking == thinking) return; + m_thinking = thinking; + grimoire_log("setThinking(%d)", thinking); + + /* Show/hide a simple pulsing dot overlay on the focused window */ + QQuickWindow *win = qobject_cast(QGuiApplication::focusWindow()); + if (!win) { + grimoire_log("setThinking: no focus window"); + emit thinkingChanged(thinking); + return; + } + + if (thinking) { + /* Create a small pulsing circle via QML string evaluation */ + QQmlEngine *engine = qmlEngine(win->contentItem()); + if (!engine) { + /* Try to get engine from the window's QML context */ + QQmlContext *ctx = QQmlEngine::contextForObject(win->contentItem()); + if (ctx) engine = ctx->engine(); + } + if (engine) { + const char *qml = R"( + import QtQuick 2.15 + Row { + spacing: 8 + anchors.horizontalCenter: parent.horizontalCenter + anchors.bottom: parent.bottom + anchors.bottomMargin: 30 + property int step: 0 + Rectangle { id: d0; width: 10; height: 10; radius: 5; color: "#000000"; visible: false } + Rectangle { id: d1; width: 10; height: 10; radius: 5; color: "#000000"; visible: false } + Rectangle { id: d2; width: 10; height: 10; radius: 5; color: "#000000"; visible: false } + Timer { + interval: 800 + repeat: true + running: true + onTriggered: { + parent.step = (parent.step + 1) % 7 + var s = parent.step + d0.visible = (s === 0 || s === 1 || s === 2 || s === 3) + d1.visible = (s === 1 || s === 2 || s === 3 || s === 4) + d2.visible = (s === 2 || s === 3 || s === 4 || s === 5) + } + } + } + )"; + QQmlComponent comp(engine); + comp.setData(qml, QUrl()); + if (comp.isReady()) { + QObject *obj = comp.create(); + if (obj) { + obj->setParent(win->contentItem()); + QQuickItem *item = qobject_cast(obj); + if (item) { + item->setParentItem(win->contentItem()); + m_thinkingOverlay = item; + grimoire_log("Thinking overlay created"); + } + } + } else { + grimoire_log("Thinking overlay QML error: %s", + comp.errorString().toUtf8().constData()); + } + } else { + grimoire_log("setThinking: no QQmlEngine available"); + } + } else { + /* Remove overlay */ + if (m_thinkingOverlay) { + m_thinkingOverlay->deleteLater(); + m_thinkingOverlay = nullptr; + grimoire_log("Thinking overlay removed"); + } + } + + emit thinkingChanged(thinking); +} + +void GrimoireInjector::setSafezone(bool safezone) { + if (m_safezone == safezone) return; + m_safezone = safezone; + grimoire_log("setSafezone(%d)", safezone); + + QQuickWindow *win = qobject_cast(QGuiApplication::focusWindow()); + if (!win) { emit thinkingChanged(m_thinking); return; } + + if (safezone) { + QQmlEngine *engine = qmlEngine(win->contentItem()); + if (!engine) { + QQmlContext *ctx = QQmlEngine::contextForObject(win->contentItem()); + if (ctx) engine = ctx->engine(); + } + if (engine) { + const char *qml = R"( + import QtQuick 2.15 + Canvas { + width: 40; height: 36 + anchors.horizontalCenter: parent.horizontalCenter + anchors.bottom: parent.bottom + anchors.bottomMargin: 30 + opacity: 1.0 + onPaint: { + var ctx = getContext("2d"); + ctx.fillStyle = "#555555"; + ctx.beginPath(); + ctx.moveTo(20, 0); + ctx.lineTo(40, 36); + ctx.lineTo(0, 36); + ctx.closePath(); + ctx.fill(); + } + Timer { + interval: 1000 + repeat: true + running: true + onTriggered: parent.visible = !parent.visible + } + } + )"; + QQmlComponent comp(engine); + comp.setData(qml, QUrl()); + if (comp.isReady()) { + QObject *obj = comp.create(); + if (obj) { + obj->setParent(win->contentItem()); + QQuickItem *item = qobject_cast(obj); + if (item) { + item->setParentItem(win->contentItem()); + m_safezoneOverlay = item; + grimoire_log("Safezone overlay created"); + } + } + } + } + } else { + if (m_safezoneOverlay) { + m_safezoneOverlay->deleteLater(); + m_safezoneOverlay = nullptr; + grimoire_log("Safezone overlay removed"); + } + } +} + void GrimoireInjector::loadAndInject() { QFileInfo fi(m_watchPath); if (!fi.exists()) return; diff --git a/xovi-ext/grimoire-injector/GrimoireInjector.hpp b/xovi-ext/grimoire-injector/GrimoireInjector.hpp index a1cef1c..b7aef71 100644 --- a/xovi-ext/grimoire-injector/GrimoireInjector.hpp +++ b/xovi-ext/grimoire-injector/GrimoireInjector.hpp @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include "rm_SceneItem.hpp" @@ -11,6 +12,7 @@ class GrimoireInjector : public QObject { Q_OBJECT Q_PROPERTY(bool armed READ isArmed WRITE setArmed NOTIFY armedChanged) + Q_PROPERTY(bool thinking READ isThinking WRITE setThinking NOTIFY thinkingChanged) public: explicit GrimoireInjector(QObject *parent = nullptr); @@ -22,8 +24,15 @@ public: bool isArmed() const { return m_armed; } void setArmed(bool armed); + bool isThinking() const { return m_thinking; } + void setThinking(bool thinking); + + bool isSafezone() const { return m_safezone; } + void setSafezone(bool safezone); + signals: void armedChanged(bool armed); + void thinkingChanged(bool thinking); public slots: void loadAndInject(); @@ -32,6 +41,10 @@ private: QList> m_items; bool m_vtableReady = false; bool m_armed = false; + bool m_thinking = false; + bool m_safezone = false; + QQuickItem *m_thinkingOverlay = nullptr; + QQuickItem *m_safezoneOverlay = nullptr; QString m_watchPath = "/tmp/grimoire_strokes.json"; qint64 m_lastModTime = 0; }; diff --git a/xovi-ext/grimoire_thinking.qmd b/xovi-ext/grimoire_thinking.qmd new file mode 100644 index 0000000..b409f76 --- /dev/null +++ b/xovi-ext/grimoire_thinking.qmd @@ -0,0 +1,18 @@ +AFFECT [[11313888899523275277]] + IMPORT dev.grimoire.injector 0.1 + TRAVERSE [[8397993708429497603]] > [[6502786168]]#[[233745975898428]] + LOCATE BEFORE [[8398044571386570029]] + INSERT { + BusyIndicator { + id: grimoireThinkingIndicator + visible: GrimoireInjector.thinking + running: GrimoireInjector.thinking + anchors.horizontalCenter: parent.horizontalCenter + anchors.bottom: parent.bottom + anchors.bottomMargin: 100 + width: 60 + height: 60 + } + } + END TRAVERSE +END AFFECT diff --git a/xovi-ext/grimoired/grimoired.c b/xovi-ext/grimoired/grimoired.c index 89b109c..13a7710 100644 --- a/xovi-ext/grimoired/grimoired.c +++ b/xovi-ext/grimoired/grimoired.c @@ -53,6 +53,9 @@ #define API_MODEL "gpt-4.1-nano" #define FONT_PATH "/home/root/EMSAllure.svg" #define RENDER_OUT_PATH "/tmp/grimoire_render.json" +#define THINKING_PATH "/tmp/grimoire_thinking" +#define ORNAMENTS_PATH "/home/root/ornaments.json" +#define SAFEZONE_PATH "/tmp/grimoire_safezone" #define MAX_CMD 8192 /* Framebuffer dimensions */ @@ -82,6 +85,7 @@ static int g_verbose = 0; static int g_dev_fd = -1; static volatile sig_atomic_t g_running = 1; static pthread_mutex_t g_inject_lock = PTHREAD_MUTEX_INITIALIZER; +static time_t g_safezone_until = 0; /* ─── logging ────────────────────────────────────────────────────── */ @@ -1124,6 +1128,117 @@ static int read_armed_state(void) { return atoi(p) != 0; } +/* ─── idle-state reader ──────────────────────────────────────────── */ + +static long long read_idle_ts(void) { + FILE *fp = fopen(IDLE_PATH, "r"); + if (!fp) return -1; + long long ts = -1; + fscanf(fp, "%lld", &ts); + fclose(fp); + return ts; +} + +/* ─── full pipeline ──────────────────────────────────────────────── */ + +static void run_pipeline(void) { + static int ornaments_drawn = 0; + log_msg("Pipeline: starting\n"); + + /* 1. Capture framebuffer */ + unsigned char *fb = trigger_and_read_fb(); + if (!fb) { + log_msg("Pipeline: capture timeout\n"); + return; + } + + /* 2. Blank check */ + if (page_is_empty(fb)) { + log_msg("Pipeline: page empty, skipping\n"); + free(fb); + return; + } + + /* 3. Find content bottom */ + int content_bottom = find_content_bottom(fb); + log_msg("Pipeline: content_bottom=%d\n", content_bottom); + + /* 4. Save cropped PNG for API */ + if (save_cropped_png(fb, CAPTURE_OUT_PATH) != 0) { + log_msg("Pipeline: PNG save failed\n"); + free(fb); + return; + } + free(fb); + + /* 5. Draw ornaments once (first reply only), then show thinking dots */ + if (!ornaments_drawn) { + ornaments_drawn = 1; + char *orn_json = NULL; + long orn_size = 0; + if (load_file(ORNAMENTS_PATH, &orn_json, &orn_size) == 0 && orn_size > 0) { + log_msg("Pipeline: drawing ornaments (%ld bytes)\n", orn_size); + pthread_mutex_lock(&g_inject_lock); + do_draw(g_dev_fd, orn_json, 3000); + pthread_mutex_unlock(&g_inject_lock); + free(orn_json); + } else { + log_msg("Pipeline: no ornaments file at %s\n", ORNAMENTS_PATH); + } + } + + /* Signal thinking indicator ON (dots during API call) */ + { + FILE *tf = fopen(THINKING_PATH, "w"); + if (tf) { fputs("1\n", tf); fclose(tf); } + } + + /* 6. Call vision API */ + char *answer = call_vision_api(CAPTURE_OUT_PATH); + + if (!answer) { + log_msg("Pipeline: no answer from API\n"); + unlink(THINKING_PATH); + return; + } + + log_msg("Pipeline: answer=\"%s\"\n", answer); + + /* 6. Calculate reply Y position */ + int reply_y = content_bottom + 80 + 60; + if (reply_y > 1750) reply_y = 1750; + log_msg("Pipeline: reply_y=%d\n", reply_y); + + /* 7. Render text to strokes */ + int strokes = render_text_to_json(answer, RENDER_OUT_PATH, + -550.0f, (float)reply_y, FONT_PATH); + free(answer); + + if (strokes <= 0) { + log_msg("Pipeline: render failed\n"); + return; + } + log_msg("Pipeline: rendered %d strokes\n", strokes); + + /* 8. Inject strokes */ + char *json = NULL; + long fsize = 0; + if (load_file(RENDER_OUT_PATH, &json, &fsize) != 0) { + log_msg("Pipeline: cannot read rendered JSON\n"); + return; + } + + pthread_mutex_lock(&g_inject_lock); + int drawn = do_draw(g_dev_fd, json, 3000); /* 3ms per point */ + pthread_mutex_unlock(&g_inject_lock); + free(json); + + log_msg("Pipeline: drew %d strokes, done\n", drawn); + + /* Signal thinking indicator OFF */ + unlink(THINKING_PATH); +} + /* ─── main loop ──────────────────────────────────────────────────── */ int main(int argc, char **argv) { @@ -1144,8 +1259,12 @@ int main(int argc, char **argv) { log_msg("Started (pid %d)\n", getpid()); - int armed = read_armed_state(); - log_msg("Initial armed state: %d\n", armed); + /* Always start disarmed — require explicit toggle each session */ + int armed = 0; + log_msg("Initial armed state: 0 (forced)\n"); + + long long last_idle_ts = read_idle_ts(); + log_msg("Initial idle ts: %lld\n", last_idle_ts); while (g_running) { /* Check armed state */ @@ -1153,6 +1272,25 @@ int main(int argc, char **argv) { if (new_armed != armed) { armed = new_armed; log_msg("Armed state changed: %d\n", armed); + if (armed) { + /* Reset idle baseline so we don't fire on stale signal */ + last_idle_ts = read_idle_ts(); + /* Start 5s safe zone */ + FILE *sf = fopen(SAFEZONE_PATH, "w"); + if (sf) { fputs("1\n", sf); fclose(sf); } + g_safezone_until = time(NULL) + 10; + log_msg("Safe zone active for 10s\n"); + } else { + unlink(SAFEZONE_PATH); + g_safezone_until = 0; + } + } + + /* Check safe zone expiry */ + if (g_safezone_until > 0 && time(NULL) >= g_safezone_until) { + g_safezone_until = 0; + unlink(SAFEZONE_PATH); + log_msg("Safe zone expired\n"); } if (!armed) { @@ -1160,27 +1298,35 @@ int main(int argc, char **argv) { continue; } - /* When armed: check for pending command */ + /* When armed: check for pending manual command first */ struct stat st; if (stat(CMD_PATH, &st) == 0 && st.st_size > 0) { char *cmd_buf = NULL; long cmd_size = 0; if (load_file(CMD_PATH, &cmd_buf, &cmd_size) == 0 && cmd_size > 0) { - /* Strip trailing newline */ while (cmd_size > 0 && (cmd_buf[cmd_size-1] == '\n' || cmd_buf[cmd_size-1] == '\r')) cmd_buf[--cmd_size] = '\0'; - if (cmd_size > 0) { log_msg("Processing command: %s\n", cmd_buf); handle_command(cmd_buf); } free(cmd_buf); } - /* Remove the command file so we don't re-execute */ unlink(CMD_PATH); + continue; /* Don't also run pipeline this cycle */ + } + + /* Check for new idle signal → trigger pipeline (skip during safe zone) */ + long long cur_idle_ts = read_idle_ts(); + if (cur_idle_ts > 0 && cur_idle_ts != last_idle_ts && g_safezone_until == 0) { + last_idle_ts = cur_idle_ts; + log_msg("Idle detected (ts=%lld), running pipeline\n", cur_idle_ts); + run_pipeline(); + /* After pipeline, update idle baseline to avoid re-trigger */ + last_idle_ts = read_idle_ts(); } - usleep(100000); /* Poll every 100ms when armed */ + usleep(200000); /* Poll every 200ms when armed */ } close(g_dev_fd); diff --git a/xovi-ext/grimoired/ornaments.json b/xovi-ext/grimoired/ornaments.json new file mode 100644 index 0000000..b24ca2c --- /dev/null +++ b/xovi-ext/grimoired/ornaments.json @@ -0,0 +1 @@ +[{"points": [[695.0, 29.8, 9, 11, 90, 170], [694.4, 29.3, 12, 11, 90, 170], [693.8, 28.9, 8, 11, 90, 170], [693.1, 28.5, 10, 11, 90, 170], [692.3, 28.1, 5, 11, 90, 170], [690.6, 27.2, 9, 11, 90, 170], [688.9, 26.4, 4, 11, 90, 170], [686.9, 25.6, 6, 11, 90, 170], [684.8, 24.8, 12, 11, 90, 170], [682.7, 24.1, 12, 11, 90, 170], [680.5, 23.4, 4, 11, 90, 170], [678.3, 22.8, 12, 11, 90, 170], [676.1, 22.3, 11, 11, 90, 170], [675.0, 22.1, 4, 11, 90, 170], [673.9, 21.8, 11, 11, 90, 170], [672.9, 21.7, 4, 11, 90, 170], [671.8, 21.5, 7, 11, 90, 170], [670.8, 21.4, 6, 11, 90, 170], [669.8, 21.3, 12, 11, 90, 170], [668.8, 21.3, 9, 11, 90, 170], [667.8, 21.2, 12, 11, 90, 170], [667.0, 21.3, 9, 11, 90, 170], [666.1, 21.3, 7, 11, 90, 170], [665.3, 21.4, 8, 11, 90, 170], [664.5, 21.5, 11, 11, 90, 170], [662.6, 21.9, 5, 11, 90, 170], [660.8, 22.2, 11, 11, 90, 170], [659.1, 22.7, 7, 11, 90, 170], [657.5, 23.1, 6, 11, 90, 170], [656.0, 23.6, 9, 11, 90, 170], [654.5, 24.2, 5, 11, 90, 170], [653.2, 24.8, 7, 11, 90, 170], [651.9, 25.4, 5, 11, 90, 170], [650.8, 26.1, 8, 11, 90, 170], [649.6, 26.8, 5, 11, 90, 170], [648.6, 27.6, 4, 11, 90, 170], [647.5, 28.3, 9, 11, 90, 170], [646.6, 29.2, 11, 11, 90, 170], [645.6, 30.0, 6, 11, 90, 170], [644.8, 30.9, 7, 11, 90, 170], [643.9, 31.8, 5, 11, 90, 170], [641.9, 34.1, 10, 11, 90, 170], [639.9, 36.4, 6, 11, 90, 170], [638.0, 38.6, 8, 11, 90, 170], [636.1, 40.9, 12, 11, 90, 170], [634.2, 43.0, 10, 11, 90, 170], [632.3, 45.1, 11, 11, 90, 170], [631.3, 46.1, 8, 11, 90, 170], [630.3, 47.1, 11, 11, 90, 170], [629.3, 48.1, 10, 11, 90, 170], [628.3, 49.0, 7, 11, 90, 170], [627.4, 49.7, 4, 11, 90, 170], [626.5, 50.4, 9, 11, 90, 170], [625.6, 51.0, 7, 11, 90, 170], [624.7, 51.7, 5, 11, 90, 170], [623.8, 52.3, 5, 11, 90, 170], [622.9, 52.9, 5, 11, 90, 170], [621.9, 53.5, 9, 11, 90, 170], [621.0, 54.0, 10, 11, 90, 170], [620.0, 54.5, 7, 11, 90, 170], [619.0, 55.0, 11, 11, 90, 170], [618.0, 55.5, 12, 11, 90, 170], [617.0, 55.9, 8, 11, 90, 170], [616.0, 56.3, 9, 11, 90, 170], [615.0, 56.6, 6, 11, 90, 170], [614.0, 56.9, 6, 11, 90, 170], [613.0, 57.2, 7, 11, 90, 170], [612.0, 57.4, 4, 11, 90, 170], [611.0, 57.6, 4, 11, 90, 170], [610.0, 57.6, 7, 11, 90, 170], [609.0, 57.7, 6, 11, 90, 170], [608.1, 57.7, 4, 11, 90, 170], [607.1, 57.7, 4, 11, 90, 170], [606.1, 57.6, 5, 11, 90, 170], [605.2, 57.4, 9, 11, 90, 170], [604.3, 57.2, 7, 11, 90, 170], [603.3, 56.9, 5, 11, 90, 170], [602.4, 56.5, 8, 11, 90, 170], [601.5, 56.2, 12, 11, 90, 170], [600.7, 55.6, 6, 11, 90, 170], [599.8, 55.1, 7, 11, 90, 170], [599.0, 54.4, 5, 11, 90, 170], [598.2, 53.8, 10, 11, 90, 170], [597.1, 52.9, 12, 11, 90, 170], [596.1, 52.0, 11, 11, 90, 170], [595.1, 51.0, 12, 11, 90, 170], [594.2, 50.0, 11, 11, 90, 170], [593.4, 49.0, 7, 11, 90, 170], [592.6, 47.9, 7, 11, 90, 170], [592.0, 46.8, 5, 11, 90, 170], [591.3, 45.7, 11, 11, 90, 170], [591.1, 45.2, 5, 11, 90, 170], [590.9, 44.7, 9, 11, 90, 170], [590.7, 44.1, 7, 11, 90, 170], [590.5, 43.6, 10, 11, 90, 170], [590.3, 43.0, 10, 11, 90, 170], [590.2, 42.5, 9, 11, 90, 170], [590.1, 42.0, 12, 11, 90, 170], [590.0, 41.4, 6, 11, 90, 170], [590.0, 40.9, 5, 11, 90, 170], [590.0, 40.4, 9, 11, 90, 170], [590.0, 39.9, 11, 11, 90, 170], [590.1, 39.4, 12, 11, 90, 170], [590.2, 38.9, 12, 11, 90, 170], [590.3, 38.4, 12, 11, 90, 170], [590.4, 37.9, 12, 11, 90, 170], [590.6, 37.5, 11, 11, 90, 170], [590.9, 36.6, 7, 11, 90, 170], [591.1, 35.6, 9, 11, 90, 170], [591.5, 34.7, 5, 11, 90, 170], [592.0, 33.8, 8, 11, 90, 170], [592.6, 32.8, 6, 11, 90, 170], [593.2, 31.9, 12, 11, 90, 170], [593.5, 31.5, 11, 11, 90, 170], [593.9, 31.0, 6, 11, 90, 170], [594.3, 30.6, 4, 11, 90, 170], [594.7, 30.2, 12, 11, 90, 170], [595.1, 29.8, 12, 11, 90, 170], [595.6, 29.4, 5, 11, 90, 170], [596.0, 29.1, 12, 11, 90, 170], [596.5, 28.7, 4, 11, 90, 170], [597.1, 28.4, 12, 11, 90, 170], [597.6, 28.1, 5, 11, 90, 170], [598.1, 27.8, 12, 11, 90, 170], [598.7, 27.5, 10, 11, 90, 170], [599.3, 27.3, 7, 11, 90, 170], [599.9, 27.0, 4, 11, 90, 170], [600.6, 26.8, 10, 11, 90, 170], [601.2, 26.7, 4, 11, 90, 170], [601.9, 26.5, 8, 11, 90, 170], [602.6, 26.4, 5, 11, 90, 170], [603.4, 26.3, 6, 11, 90, 170], [604.1, 26.3, 6, 11, 90, 170], [604.7, 26.3, 11, 11, 90, 170], [605.2, 26.3, 4, 11, 90, 170], [605.7, 26.4, 8, 11, 90, 170], [606.2, 26.4, 11, 11, 90, 170], [606.7, 26.5, 4, 11, 90, 170], [607.2, 26.6, 7, 11, 90, 170], [607.7, 26.8, 6, 11, 90, 170], [608.2, 27.0, 12, 11, 90, 170], [608.7, 27.2, 4, 11, 90, 170], [609.1, 27.4, 5, 11, 90, 170], [609.5, 27.7, 9, 11, 90, 170], [609.9, 27.9, 8, 11, 90, 170], [610.3, 28.2, 6, 11, 90, 170], [610.7, 28.5, 10, 11, 90, 170], [611.0, 28.9, 5, 11, 90, 170], [611.4, 29.2, 7, 11, 90, 170], [611.7, 29.6, 4, 11, 90, 170], [611.9, 30.0, 9, 11, 90, 170], [612.2, 30.5, 9, 11, 90, 170], [612.4, 30.9, 8, 11, 90, 170], [612.6, 31.4, 10, 11, 90, 170], [612.8, 31.9, 12, 11, 90, 170], [612.9, 32.4, 9, 11, 90, 170], [613.0, 32.9, 11, 11, 90, 170], [613.1, 33.5, 4, 11, 90, 170], [613.2, 34.0, 11, 11, 90, 170], [613.2, 34.6, 5, 11, 90, 170], [613.2, 35.2, 6, 11, 90, 170], [613.1, 35.8, 9, 11, 90, 170], [613.0, 36.5, 12, 11, 90, 170], [612.9, 37.1, 10, 11, 90, 170], [612.7, 37.8, 12, 11, 90, 170], [612.6, 38.2, 4, 11, 90, 170], [612.5, 38.7, 11, 11, 90, 170], [612.3, 39.1, 7, 11, 90, 170], [612.1, 39.5, 12, 11, 90, 170], [611.9, 39.8, 5, 11, 90, 170], [611.7, 40.2, 4, 11, 90, 170], [611.4, 40.6, 9, 11, 90, 170], [611.2, 40.9, 11, 11, 90, 170], [610.9, 41.2, 9, 11, 90, 170], [610.6, 41.5, 7, 11, 90, 170], [610.3, 41.8, 6, 11, 90, 170], [610.0, 42.0, 5, 11, 90, 170], [609.6, 42.3, 9, 11, 90, 170], [609.3, 42.5, 11, 11, 90, 170], [608.9, 42.7, 5, 11, 90, 170], [608.5, 42.8, 10, 11, 90, 170], [608.2, 43.0, 6, 11, 90, 170], [607.8, 43.1, 5, 11, 90, 170], [607.4, 43.2, 7, 11, 90, 170], [607.0, 43.3, 11, 11, 90, 170], [606.6, 43.3, 5, 11, 90, 170], [606.2, 43.3, 4, 11, 90, 170], [605.8, 43.3, 7, 11, 90, 170], [605.4, 43.2, 7, 11, 90, 170], [605.0, 43.2, 8, 11, 90, 170], [604.6, 43.1, 5, 11, 90, 170], [604.2, 42.9, 8, 11, 90, 170], [603.8, 42.8, 4, 11, 90, 170], [603.5, 42.5, 7, 11, 90, 170], [603.1, 42.3, 9, 11, 90, 170], [602.7, 42.0, 10, 11, 90, 170], [602.4, 41.8, 7, 11, 90, 170]], "rgba": 4278190080, "color": 0, "bounds": [590.0, 21.2, 105.0, 36.5], "tool": 15, "maskScale": 2.0, "thickness": 2.0}, {"points": [[691.9, 35.4, 10, 11, 90, 170], [691.3, 34.9, 12, 11, 90, 170], [690.7, 34.3, 9, 11, 90, 170], [690.0, 33.8, 8, 11, 90, 170], [689.3, 33.3, 12, 11, 90, 170], [688.6, 32.8, 10, 11, 90, 170], [687.8, 32.3, 6, 11, 90, 170], [687.0, 31.9, 5, 11, 90, 170], [686.2, 31.5, 8, 11, 90, 170], [685.3, 31.0, 8, 11, 90, 170], [684.5, 30.6, 9, 11, 90, 170], [683.6, 30.3, 12, 11, 90, 170], [682.7, 29.9, 10, 11, 90, 170], [680.8, 29.2, 9, 11, 90, 170], [678.9, 28.6, 6, 11, 90, 170], [677.0, 28.1, 10, 11, 90, 170], [675.1, 27.7, 6, 11, 90, 170], [673.3, 27.4, 7, 11, 90, 170], [671.4, 27.1, 5, 11, 90, 170], [670.5, 27.0, 5, 11, 90, 170], [669.7, 26.9, 5, 11, 90, 170], [668.9, 26.9, 6, 11, 90, 170], [668.0, 26.9, 4, 11, 90, 170], [667.3, 26.9, 5, 11, 90, 170], [666.5, 27.0, 8, 11, 90, 170], [665.8, 27.0, 7, 11, 90, 170], [665.1, 27.1, 10, 11, 90, 170], [663.7, 27.4, 4, 11, 90, 170], [662.2, 27.7, 9, 11, 90, 170], [660.9, 28.1, 10, 11, 90, 170], [659.6, 28.5, 10, 11, 90, 170], [658.5, 29.0, 6, 11, 90, 170], [657.4, 29.5, 9, 11, 90, 170], [656.4, 30.1, 6, 11, 90, 170], [655.4, 30.7, 4, 11, 90, 170], [654.5, 31.4, 7, 11, 90, 170], [653.7, 32.1, 12, 11, 90, 170], [652.9, 33.0, 6, 11, 90, 170], [652.2, 33.8, 12, 11, 90, 170], [651.6, 34.7, 7, 11, 90, 170], [651.0, 35.7, 9, 11, 90, 170], [650.5, 36.7, 7, 11, 90, 170], [650.0, 37.8, 10, 11, 90, 170], [649.2, 39.1, 8, 11, 90, 170], [648.4, 40.4, 6, 11, 90, 170], [647.7, 41.8, 4, 11, 90, 170], [646.9, 43.1, 8, 11, 90, 170], [646.3, 44.4, 12, 11, 90, 170], [645.7, 45.7, 6, 11, 90, 170], [645.3, 47.0, 10, 11, 90, 170], [644.8, 48.3, 11, 11, 90, 170], [644.4, 49.6, 6, 11, 90, 170], [644.0, 50.8, 4, 11, 90, 170], [643.7, 52.0, 11, 11, 90, 170], [643.5, 53.3, 10, 11, 90, 170], [643.3, 54.5, 5, 11, 90, 170], [643.1, 55.6, 10, 11, 90, 170], [643.1, 56.8, 12, 11, 90, 170], [643.0, 57.9, 4, 11, 90, 170], [643.1, 59.1, 9, 11, 90, 170], [643.1, 60.3, 9, 11, 90, 170], [643.3, 61.6, 10, 11, 90, 170], [643.5, 62.8, 4, 11, 90, 170], [643.7, 64.0, 5, 11, 90, 170], [644.0, 65.2, 4, 11, 90, 170], [644.3, 66.3, 12, 11, 90, 170], [644.7, 67.5, 11, 11, 90, 170], [645.2, 68.7, 10, 11, 90, 170], [645.6, 69.8, 9, 11, 90, 170], [646.2, 70.9, 10, 11, 90, 170], [646.7, 72.0, 8, 11, 90, 170], [647.3, 73.1, 7, 11, 90, 170], [648.0, 74.1, 11, 11, 90, 170], [648.7, 75.1, 10, 11, 90, 170], [649.4, 76.1, 12, 11, 90, 170], [650.2, 77.1, 10, 11, 90, 170], [651.0, 78.0, 9, 11, 90, 170], [651.9, 78.9, 11, 11, 90, 170], [652.8, 79.7, 8, 11, 90, 170], [653.7, 80.5, 11, 11, 90, 170], [654.7, 81.3, 7, 11, 90, 170], [655.7, 82.0, 9, 11, 90, 170], [656.8, 82.7, 6, 11, 90, 170], [657.9, 83.3, 6, 11, 90, 170], [659.0, 83.9, 9, 11, 90, 170], [660.1, 84.5, 9, 11, 90, 170], [661.3, 85.0, 6, 11, 90, 170], [662.5, 85.4, 10, 11, 90, 170], [663.7, 85.8, 11, 11, 90, 170], [665.0, 86.0, 8, 11, 90, 170], [666.3, 86.3, 10, 11, 90, 170], [667.4, 86.4, 6, 11, 90, 170], [668.5, 86.5, 12, 11, 90, 170], [669.5, 86.4, 7, 11, 90, 170], [670.6, 86.4, 8, 11, 90, 170], [671.7, 86.3, 6, 11, 90, 170], [672.8, 86.2, 12, 11, 90, 170], [673.8, 85.9, 6, 11, 90, 170], [674.9, 85.7, 6, 11, 90, 170], [675.9, 85.4, 12, 11, 90, 170], [677.0, 85.2, 8, 11, 90, 170], [678.0, 84.8, 11, 11, 90, 170], [679.0, 84.4, 7, 11, 90, 170], [680.0, 84.0, 8, 11, 90, 170], [681.0, 83.5, 9, 11, 90, 170], [681.9, 83.0, 6, 11, 90, 170], [682.8, 82.5, 6, 11, 90, 170], [683.8, 81.9, 5, 11, 90, 170], [684.7, 81.3, 7, 11, 90, 170], [685.5, 80.6, 12, 11, 90, 170], [686.4, 80.0, 11, 11, 90, 170], [687.2, 79.3, 7, 11, 90, 170], [688.0, 78.6, 9, 11, 90, 170], [688.7, 77.8, 6, 11, 90, 170], [689.5, 77.0, 7, 11, 90, 170], [690.2, 76.2, 6, 11, 90, 170], [690.9, 75.3, 6, 11, 90, 170], [691.5, 74.5, 6, 11, 90, 170], [692.1, 73.6, 11, 11, 90, 170], [692.7, 72.6, 12, 11, 90, 170], [693.2, 71.7, 4, 11, 90, 170], [693.7, 70.7, 6, 11, 90, 170], [694.2, 69.8, 11, 11, 90, 170], [694.4, 69.2, 4, 11, 90, 170], [694.7, 68.7, 9, 11, 90, 170], [694.9, 68.2, 9, 11, 90, 170], [695.1, 67.7, 4, 11, 90, 170], [695.2, 67.2, 10, 11, 90, 170], [695.4, 66.7, 4, 11, 90, 170], [695.5, 66.1, 9, 11, 90, 170], [695.6, 65.6, 5, 11, 90, 170], [695.7, 64.6, 5, 11, 90, 170], [695.8, 63.5, 11, 11, 90, 170], [695.8, 62.4, 8, 11, 90, 170], [695.7, 61.4, 10, 11, 90, 170], [695.5, 60.3, 7, 11, 90, 170], [695.3, 59.2, 8, 11, 90, 170], [695.0, 58.2, 11, 11, 90, 170], [694.7, 57.1, 10, 11, 90, 170], [694.2, 56.1, 9, 11, 90, 170], [693.7, 55.1, 7, 11, 90, 170], [693.2, 54.1, 11, 11, 90, 170], [692.6, 53.2, 4, 11, 90, 170], [691.9, 52.3, 5, 11, 90, 170], [691.2, 51.3, 8, 11, 90, 170], [690.5, 50.5, 7, 11, 90, 170], [689.7, 49.7, 8, 11, 90, 170], [688.9, 48.9, 5, 11, 90, 170], [688.0, 48.1, 4, 11, 90, 170], [687.1, 47.4, 4, 11, 90, 170], [686.2, 46.8, 7, 11, 90, 170], [685.2, 46.2, 7, 11, 90, 170], [684.2, 45.6, 9, 11, 90, 170], [683.2, 45.2, 6, 11, 90, 170], [682.2, 44.7, 11, 11, 90, 170], [681.1, 44.4, 11, 11, 90, 170], [680.1, 44.1, 4, 11, 90, 170], [679.0, 43.9, 6, 11, 90, 170], [677.9, 43.7, 5, 11, 90, 170], [676.9, 43.6, 6, 11, 90, 170], [676.0, 43.6, 9, 11, 90, 170], [675.1, 43.6, 6, 11, 90, 170], [674.2, 43.7, 4, 11, 90, 170], [673.3, 43.8, 7, 11, 90, 170], [672.4, 44.0, 10, 11, 90, 170], [671.6, 44.2, 6, 11, 90, 170], [670.8, 44.5, 8, 11, 90, 170], [670.0, 44.8, 7, 11, 90, 170], [669.3, 45.1, 4, 11, 90, 170], [668.6, 45.5, 6, 11, 90, 170], [667.9, 45.9, 8, 11, 90, 170], [667.3, 46.4, 11, 11, 90, 170], [666.7, 46.9, 12, 11, 90, 170], [666.1, 47.4, 4, 11, 90, 170], [665.6, 48.0, 9, 11, 90, 170], [665.1, 48.6, 8, 11, 90, 170], [664.6, 49.2, 7, 11, 90, 170], [664.2, 49.9, 7, 11, 90, 170], [663.8, 50.6, 12, 11, 90, 170], [663.5, 51.3, 11, 11, 90, 170], [663.2, 52.0, 8, 11, 90, 170], [662.9, 52.8, 4, 11, 90, 170], [662.7, 53.5, 10, 11, 90, 170], [662.6, 54.3, 5, 11, 90, 170], [662.4, 55.1, 10, 11, 90, 170], [662.4, 56.0, 6, 11, 90, 170], [662.3, 56.8, 10, 11, 90, 170], [662.4, 57.7, 5, 11, 90, 170], [662.5, 58.5, 12, 11, 90, 170], [662.6, 59.4, 7, 11, 90, 170], [662.8, 60.3, 8, 11, 90, 170], [663.1, 61.1, 4, 11, 90, 170], [663.3, 62.0, 6, 11, 90, 170], [663.7, 62.8, 10, 11, 90, 170], [664.1, 63.6, 6, 11, 90, 170], [664.5, 64.3, 6, 11, 90, 170], [665.0, 65.0, 11, 11, 90, 170], [665.5, 65.6, 9, 11, 90, 170], [666.0, 66.2, 4, 11, 90, 170], [666.6, 66.7, 12, 11, 90, 170], [667.1, 67.2, 8, 11, 90, 170], [667.7, 67.6, 4, 11, 90, 170], [668.4, 67.9, 4, 11, 90, 170], [669.0, 68.2, 6, 11, 90, 170], [669.6, 68.4, 9, 11, 90, 170], [670.3, 68.5, 5, 11, 90, 170], [670.9, 68.6, 9, 11, 90, 170], [671.6, 68.5, 11, 11, 90, 170], [672.2, 68.5, 7, 11, 90, 170], [672.7, 68.3, 10, 11, 90, 170], [673.3, 68.1, 12, 11, 90, 170], [673.8, 67.9, 12, 11, 90, 170], [674.3, 67.6, 12, 11, 90, 170], [674.7, 67.3, 12, 11, 90, 170], [675.1, 66.9, 5, 11, 90, 170], [675.5, 66.5, 9, 11, 90, 170], [675.8, 66.1, 9, 11, 90, 170], [676.1, 65.6, 10, 11, 90, 170], [676.3, 65.1, 5, 11, 90, 170], [676.5, 64.5, 9, 11, 90, 170], [676.6, 63.9, 11, 11, 90, 170], [676.7, 63.3, 10, 11, 90, 170], [676.7, 62.6, 11, 11, 90, 170], [676.7, 62.0, 5, 11, 90, 170], [676.6, 61.4, 7, 11, 90, 170], [676.4, 60.9, 11, 11, 90, 170], [676.2, 60.4, 5, 11, 90, 170], [675.8, 60.1, 10, 11, 90, 170], [675.5, 59.7, 11, 11, 90, 170], [675.1, 59.5, 10, 11, 90, 170], [674.7, 59.2, 7, 11, 90, 170], [674.3, 59.1, 5, 11, 90, 170], [673.8, 59.0, 9, 11, 90, 170], [673.3, 59.1, 5, 11, 90, 170], [672.8, 59.1, 11, 11, 90, 170], [672.3, 59.4, 8, 11, 90, 170], [671.8, 59.6, 6, 11, 90, 170], [671.4, 59.9, 6, 11, 90, 170], [670.9, 60.3, 4, 11, 90, 170]], "rgba": 4278190080, "color": 0, "bounds": [643.0, 26.9, 52.799999999999955, 59.6], "tool": 15, "maskScale": 2.0, "thickness": 2.0}, {"points": [[-495.0, 29.8, 5, 11, 90, 170], [-494.4, 29.3, 7, 11, 90, 170], [-493.8, 28.9, 11, 11, 90, 170], [-493.1, 28.5, 10, 11, 90, 170], [-492.3, 28.1, 5, 11, 90, 170], [-490.6, 27.2, 8, 11, 90, 170], [-488.9, 26.4, 12, 11, 90, 170], [-486.9, 25.6, 4, 11, 90, 170], [-484.8, 24.8, 10, 11, 90, 170], [-482.7, 24.1, 5, 11, 90, 170], [-480.5, 23.4, 11, 11, 90, 170], [-478.3, 22.8, 12, 11, 90, 170], [-476.1, 22.3, 9, 11, 90, 170], [-475.0, 22.1, 9, 11, 90, 170], [-473.9, 21.8, 9, 11, 90, 170], [-472.9, 21.7, 12, 11, 90, 170], [-471.8, 21.5, 4, 11, 90, 170], [-470.8, 21.4, 12, 11, 90, 170], [-469.8, 21.3, 9, 11, 90, 170], [-468.8, 21.3, 5, 11, 90, 170], [-467.8, 21.2, 11, 11, 90, 170], [-467.0, 21.3, 11, 11, 90, 170], [-466.1, 21.3, 7, 11, 90, 170], [-465.3, 21.4, 5, 11, 90, 170], [-464.4, 21.5, 6, 11, 90, 170], [-462.6, 21.9, 10, 11, 90, 170], [-460.8, 22.2, 8, 11, 90, 170], [-459.1, 22.7, 6, 11, 90, 170], [-457.5, 23.1, 9, 11, 90, 170], [-456.0, 23.6, 7, 11, 90, 170], [-454.5, 24.2, 4, 11, 90, 170], [-453.2, 24.8, 12, 11, 90, 170], [-451.9, 25.4, 4, 11, 90, 170], [-450.8, 26.1, 12, 11, 90, 170], [-449.6, 26.8, 6, 11, 90, 170], [-448.6, 27.6, 8, 11, 90, 170], [-447.5, 28.3, 4, 11, 90, 170], [-446.6, 29.2, 12, 11, 90, 170], [-445.6, 30.0, 12, 11, 90, 170], [-444.8, 30.9, 4, 11, 90, 170], [-443.9, 31.8, 10, 11, 90, 170], [-441.9, 34.1, 9, 11, 90, 170], [-439.9, 36.4, 4, 11, 90, 170], [-438.0, 38.6, 7, 11, 90, 170], [-436.1, 40.9, 11, 11, 90, 170], [-434.2, 43.0, 7, 11, 90, 170], [-432.3, 45.1, 6, 11, 90, 170], [-431.3, 46.1, 9, 11, 90, 170], [-430.3, 47.1, 6, 11, 90, 170], [-429.3, 48.1, 5, 11, 90, 170], [-428.3, 49.0, 10, 11, 90, 170], [-427.4, 49.7, 7, 11, 90, 170], [-426.5, 50.4, 6, 11, 90, 170], [-425.6, 51.0, 9, 11, 90, 170], [-424.7, 51.7, 10, 11, 90, 170], [-423.8, 52.3, 11, 11, 90, 170], [-422.9, 52.9, 9, 11, 90, 170], [-421.9, 53.5, 6, 11, 90, 170], [-421.0, 54.0, 10, 11, 90, 170], [-420.0, 54.5, 10, 11, 90, 170], [-419.0, 55.0, 5, 11, 90, 170], [-418.0, 55.5, 5, 11, 90, 170], [-417.0, 55.9, 6, 11, 90, 170], [-416.0, 56.3, 6, 11, 90, 170], [-415.0, 56.6, 7, 11, 90, 170], [-414.0, 56.9, 4, 11, 90, 170], [-413.0, 57.2, 6, 11, 90, 170], [-412.0, 57.4, 5, 11, 90, 170], [-411.0, 57.6, 11, 11, 90, 170], [-410.0, 57.6, 11, 11, 90, 170], [-409.0, 57.7, 9, 11, 90, 170], [-408.1, 57.7, 9, 11, 90, 170], [-407.1, 57.7, 11, 11, 90, 170], [-406.1, 57.6, 7, 11, 90, 170], [-405.2, 57.4, 8, 11, 90, 170], [-404.3, 57.2, 7, 11, 90, 170], [-403.3, 56.9, 11, 11, 90, 170], [-402.4, 56.5, 6, 11, 90, 170], [-401.5, 56.2, 10, 11, 90, 170], [-400.7, 55.6, 5, 11, 90, 170], [-399.8, 55.1, 10, 11, 90, 170], [-399.0, 54.4, 6, 11, 90, 170], [-398.2, 53.8, 9, 11, 90, 170], [-397.1, 52.9, 4, 11, 90, 170], [-396.1, 52.0, 12, 11, 90, 170], [-395.1, 51.0, 11, 11, 90, 170], [-394.2, 50.0, 11, 11, 90, 170], [-393.4, 49.0, 4, 11, 90, 170], [-392.6, 47.9, 7, 11, 90, 170], [-392.0, 46.8, 7, 11, 90, 170], [-391.3, 45.7, 11, 11, 90, 170], [-391.1, 45.2, 10, 11, 90, 170], [-390.9, 44.7, 4, 11, 90, 170], [-390.7, 44.1, 12, 11, 90, 170], [-390.5, 43.6, 9, 11, 90, 170], [-390.3, 43.0, 5, 11, 90, 170], [-390.2, 42.5, 11, 11, 90, 170], [-390.1, 42.0, 4, 11, 90, 170], [-390.0, 41.4, 8, 11, 90, 170], [-390.0, 40.9, 5, 11, 90, 170], [-390.0, 40.4, 9, 11, 90, 170], [-390.0, 39.9, 9, 11, 90, 170], [-390.1, 39.4, 8, 11, 90, 170], [-390.2, 38.9, 6, 11, 90, 170], [-390.3, 38.4, 5, 11, 90, 170], [-390.4, 37.9, 9, 11, 90, 170], [-390.6, 37.5, 4, 11, 90, 170], [-390.9, 36.6, 10, 11, 90, 170], [-391.1, 35.6, 4, 11, 90, 170], [-391.5, 34.7, 9, 11, 90, 170], [-392.0, 33.8, 7, 11, 90, 170], [-392.6, 32.8, 11, 11, 90, 170], [-393.2, 31.9, 6, 11, 90, 170], [-393.5, 31.5, 6, 11, 90, 170], [-393.9, 31.0, 12, 11, 90, 170], [-394.3, 30.6, 11, 11, 90, 170], [-394.7, 30.2, 11, 11, 90, 170], [-395.1, 29.8, 6, 11, 90, 170], [-395.6, 29.4, 10, 11, 90, 170], [-396.0, 29.1, 10, 11, 90, 170], [-396.5, 28.7, 4, 11, 90, 170], [-397.1, 28.4, 7, 11, 90, 170], [-397.6, 28.1, 12, 11, 90, 170], [-398.1, 27.8, 7, 11, 90, 170], [-398.7, 27.5, 10, 11, 90, 170], [-399.3, 27.3, 5, 11, 90, 170], [-399.9, 27.0, 12, 11, 90, 170], [-400.6, 26.8, 5, 11, 90, 170], [-401.2, 26.7, 12, 11, 90, 170], [-401.9, 26.5, 5, 11, 90, 170], [-402.6, 26.4, 4, 11, 90, 170], [-403.4, 26.3, 6, 11, 90, 170], [-404.1, 26.3, 7, 11, 90, 170], [-404.7, 26.3, 7, 11, 90, 170], [-405.2, 26.3, 4, 11, 90, 170], [-405.7, 26.4, 8, 11, 90, 170], [-406.2, 26.4, 11, 11, 90, 170], [-406.7, 26.5, 12, 11, 90, 170], [-407.2, 26.6, 12, 11, 90, 170], [-407.7, 26.8, 12, 11, 90, 170], [-408.2, 27.0, 6, 11, 90, 170], [-408.7, 27.2, 7, 11, 90, 170], [-409.1, 27.4, 6, 11, 90, 170], [-409.5, 27.7, 6, 11, 90, 170], [-409.9, 27.9, 6, 11, 90, 170], [-410.3, 28.2, 11, 11, 90, 170], [-410.7, 28.5, 5, 11, 90, 170], [-411.0, 28.9, 6, 11, 90, 170], [-411.4, 29.2, 5, 11, 90, 170], [-411.7, 29.6, 4, 11, 90, 170], [-411.9, 30.0, 10, 11, 90, 170], [-412.2, 30.5, 9, 11, 90, 170], [-412.4, 30.9, 12, 11, 90, 170], [-412.6, 31.4, 5, 11, 90, 170], [-412.8, 31.9, 7, 11, 90, 170], [-412.9, 32.4, 12, 11, 90, 170], [-413.0, 32.9, 9, 11, 90, 170], [-413.1, 33.5, 11, 11, 90, 170], [-413.2, 34.0, 8, 11, 90, 170], [-413.2, 34.6, 8, 11, 90, 170], [-413.2, 35.2, 8, 11, 90, 170], [-413.1, 35.8, 8, 11, 90, 170], [-413.0, 36.5, 11, 11, 90, 170], [-412.9, 37.1, 8, 11, 90, 170], [-412.7, 37.8, 10, 11, 90, 170], [-412.6, 38.2, 4, 11, 90, 170], [-412.5, 38.7, 12, 11, 90, 170], [-412.3, 39.1, 7, 11, 90, 170], [-412.1, 39.5, 7, 11, 90, 170], [-411.9, 39.8, 10, 11, 90, 170], [-411.7, 40.2, 6, 11, 90, 170], [-411.4, 40.6, 6, 11, 90, 170], [-411.2, 40.9, 9, 11, 90, 170], [-410.9, 41.2, 9, 11, 90, 170], [-410.6, 41.5, 7, 11, 90, 170], [-410.3, 41.8, 5, 11, 90, 170], [-410.0, 42.0, 8, 11, 90, 170], [-409.6, 42.3, 7, 11, 90, 170], [-409.3, 42.5, 5, 11, 90, 170], [-408.9, 42.7, 4, 11, 90, 170], [-408.5, 42.8, 7, 11, 90, 170], [-408.2, 43.0, 11, 11, 90, 170], [-407.8, 43.1, 5, 11, 90, 170], [-407.4, 43.2, 10, 11, 90, 170], [-407.0, 43.3, 10, 11, 90, 170], [-406.6, 43.3, 12, 11, 90, 170], [-406.2, 43.3, 9, 11, 90, 170], [-405.8, 43.3, 10, 11, 90, 170], [-405.4, 43.2, 12, 11, 90, 170], [-405.0, 43.2, 7, 11, 90, 170], [-404.6, 43.1, 12, 11, 90, 170], [-404.2, 42.9, 4, 11, 90, 170], [-403.8, 42.8, 12, 11, 90, 170], [-403.5, 42.5, 12, 11, 90, 170], [-403.1, 42.3, 12, 11, 90, 170], [-402.7, 42.0, 9, 11, 90, 170], [-402.4, 41.8, 12, 11, 90, 170]], "rgba": 4278190080, "color": 0, "bounds": [-495.0, 21.2, 105.0, 36.5], "tool": 15, "maskScale": 2.0, "thickness": 2.0}, {"points": [[-491.9, 35.4, 4, 11, 90, 170], [-491.3, 34.9, 8, 11, 90, 170], [-490.7, 34.3, 4, 11, 90, 170], [-490.0, 33.8, 11, 11, 90, 170], [-489.3, 33.3, 8, 11, 90, 170], [-488.6, 32.8, 8, 11, 90, 170], [-487.8, 32.3, 11, 11, 90, 170], [-487.0, 31.9, 12, 11, 90, 170], [-486.2, 31.5, 12, 11, 90, 170], [-485.3, 31.0, 10, 11, 90, 170], [-484.5, 30.6, 11, 11, 90, 170], [-483.6, 30.3, 8, 11, 90, 170], [-482.7, 29.9, 11, 11, 90, 170], [-480.8, 29.2, 10, 11, 90, 170], [-478.9, 28.6, 4, 11, 90, 170], [-477.0, 28.1, 9, 11, 90, 170], [-475.1, 27.7, 9, 11, 90, 170], [-473.3, 27.4, 7, 11, 90, 170], [-471.4, 27.1, 6, 11, 90, 170], [-470.5, 27.0, 8, 11, 90, 170], [-469.7, 26.9, 9, 11, 90, 170], [-468.9, 26.9, 8, 11, 90, 170], [-468.0, 26.9, 11, 11, 90, 170], [-467.3, 26.9, 9, 11, 90, 170], [-466.5, 27.0, 7, 11, 90, 170], [-465.8, 27.0, 8, 11, 90, 170], [-465.1, 27.1, 10, 11, 90, 170], [-463.7, 27.4, 10, 11, 90, 170], [-462.2, 27.7, 9, 11, 90, 170], [-460.9, 28.1, 10, 11, 90, 170], [-459.6, 28.5, 8, 11, 90, 170], [-458.5, 29.0, 11, 11, 90, 170], [-457.4, 29.5, 4, 11, 90, 170], [-456.4, 30.1, 7, 11, 90, 170], [-455.4, 30.7, 11, 11, 90, 170], [-454.5, 31.4, 10, 11, 90, 170], [-453.7, 32.1, 9, 11, 90, 170], [-452.9, 33.0, 12, 11, 90, 170], [-452.2, 33.8, 10, 11, 90, 170], [-451.6, 34.7, 4, 11, 90, 170], [-451.0, 35.7, 5, 11, 90, 170], [-450.5, 36.7, 5, 11, 90, 170], [-450.0, 37.8, 5, 11, 90, 170], [-449.2, 39.1, 7, 11, 90, 170], [-448.4, 40.4, 11, 11, 90, 170], [-447.7, 41.8, 7, 11, 90, 170], [-446.9, 43.1, 5, 11, 90, 170], [-446.3, 44.4, 9, 11, 90, 170], [-445.7, 45.7, 12, 11, 90, 170], [-445.3, 47.0, 8, 11, 90, 170], [-444.8, 48.3, 4, 11, 90, 170], [-444.4, 49.6, 9, 11, 90, 170], [-444.0, 50.8, 5, 11, 90, 170], [-443.7, 52.0, 7, 11, 90, 170], [-443.5, 53.3, 11, 11, 90, 170], [-443.3, 54.5, 6, 11, 90, 170], [-443.1, 55.6, 5, 11, 90, 170], [-443.1, 56.8, 4, 11, 90, 170], [-443.0, 57.9, 9, 11, 90, 170], [-443.1, 59.1, 12, 11, 90, 170], [-443.1, 60.3, 11, 11, 90, 170], [-443.3, 61.6, 6, 11, 90, 170], [-443.5, 62.8, 6, 11, 90, 170], [-443.7, 64.0, 9, 11, 90, 170], [-444.0, 65.2, 6, 11, 90, 170], [-444.3, 66.3, 8, 11, 90, 170], [-444.7, 67.5, 6, 11, 90, 170], [-445.2, 68.7, 6, 11, 90, 170], [-445.6, 69.8, 4, 11, 90, 170], [-446.2, 70.9, 5, 11, 90, 170], [-446.7, 72.0, 6, 11, 90, 170], [-447.3, 73.1, 10, 11, 90, 170], [-448.0, 74.1, 6, 11, 90, 170], [-448.7, 75.1, 4, 11, 90, 170], [-449.4, 76.1, 6, 11, 90, 170], [-450.2, 77.1, 10, 11, 90, 170], [-451.0, 78.0, 4, 11, 90, 170], [-451.9, 78.9, 8, 11, 90, 170], [-452.8, 79.7, 9, 11, 90, 170], [-453.7, 80.5, 8, 11, 90, 170], [-454.7, 81.3, 5, 11, 90, 170], [-455.7, 82.0, 5, 11, 90, 170], [-456.8, 82.7, 11, 11, 90, 170], [-457.9, 83.3, 10, 11, 90, 170], [-459.0, 83.9, 10, 11, 90, 170], [-460.1, 84.5, 12, 11, 90, 170], [-461.3, 85.0, 9, 11, 90, 170], [-462.5, 85.4, 7, 11, 90, 170], [-463.7, 85.8, 7, 11, 90, 170], [-465.0, 86.0, 10, 11, 90, 170], [-466.3, 86.3, 5, 11, 90, 170], [-467.4, 86.4, 11, 11, 90, 170], [-468.5, 86.5, 5, 11, 90, 170], [-469.5, 86.4, 6, 11, 90, 170], [-470.6, 86.4, 10, 11, 90, 170], [-471.7, 86.3, 10, 11, 90, 170], [-472.8, 86.2, 4, 11, 90, 170], [-473.8, 85.9, 8, 11, 90, 170], [-474.9, 85.7, 5, 11, 90, 170], [-475.9, 85.4, 8, 11, 90, 170], [-477.0, 85.2, 7, 11, 90, 170], [-478.0, 84.8, 5, 11, 90, 170], [-479.0, 84.4, 6, 11, 90, 170], [-480.0, 84.0, 12, 11, 90, 170], [-481.0, 83.5, 5, 11, 90, 170], [-481.9, 83.0, 4, 11, 90, 170], [-482.8, 82.5, 7, 11, 90, 170], [-483.8, 81.9, 8, 11, 90, 170], [-484.7, 81.3, 6, 11, 90, 170], [-485.5, 80.6, 8, 11, 90, 170], [-486.4, 80.0, 10, 11, 90, 170], [-487.2, 79.3, 5, 11, 90, 170], [-488.0, 78.6, 8, 11, 90, 170], [-488.7, 77.8, 4, 11, 90, 170], [-489.5, 77.0, 6, 11, 90, 170], [-490.2, 76.2, 6, 11, 90, 170], [-490.9, 75.3, 10, 11, 90, 170], [-491.5, 74.5, 11, 11, 90, 170], [-492.1, 73.6, 10, 11, 90, 170], [-492.7, 72.6, 11, 11, 90, 170], [-493.2, 71.7, 8, 11, 90, 170], [-493.7, 70.7, 6, 11, 90, 170], [-494.2, 69.8, 11, 11, 90, 170], [-494.4, 69.2, 4, 11, 90, 170], [-494.7, 68.7, 6, 11, 90, 170], [-494.9, 68.2, 9, 11, 90, 170], [-495.1, 67.7, 4, 11, 90, 170], [-495.2, 67.2, 11, 11, 90, 170], [-495.4, 66.7, 9, 11, 90, 170], [-495.5, 66.1, 7, 11, 90, 170], [-495.6, 65.6, 8, 11, 90, 170], [-495.7, 64.6, 4, 11, 90, 170], [-495.8, 63.5, 7, 11, 90, 170], [-495.8, 62.4, 8, 11, 90, 170], [-495.7, 61.4, 8, 11, 90, 170], [-495.5, 60.3, 4, 11, 90, 170], [-495.3, 59.2, 8, 11, 90, 170], [-495.0, 58.2, 8, 11, 90, 170], [-494.7, 57.1, 9, 11, 90, 170], [-494.2, 56.1, 6, 11, 90, 170], [-493.7, 55.1, 10, 11, 90, 170], [-493.2, 54.1, 4, 11, 90, 170], [-492.6, 53.2, 10, 11, 90, 170], [-491.9, 52.3, 4, 11, 90, 170], [-491.2, 51.3, 5, 11, 90, 170], [-490.5, 50.5, 11, 11, 90, 170], [-489.7, 49.7, 4, 11, 90, 170], [-488.9, 48.9, 10, 11, 90, 170], [-488.0, 48.1, 8, 11, 90, 170], [-487.1, 47.4, 9, 11, 90, 170], [-486.2, 46.8, 7, 11, 90, 170], [-485.2, 46.2, 11, 11, 90, 170], [-484.2, 45.6, 10, 11, 90, 170], [-483.2, 45.2, 9, 11, 90, 170], [-482.2, 44.7, 8, 11, 90, 170], [-481.1, 44.4, 5, 11, 90, 170], [-480.1, 44.1, 8, 11, 90, 170], [-479.0, 43.9, 11, 11, 90, 170], [-477.9, 43.7, 11, 11, 90, 170], [-476.9, 43.6, 8, 11, 90, 170], [-476.0, 43.6, 7, 11, 90, 170], [-475.1, 43.6, 8, 11, 90, 170], [-474.2, 43.7, 8, 11, 90, 170], [-473.3, 43.8, 8, 11, 90, 170], [-472.4, 44.0, 8, 11, 90, 170], [-471.6, 44.2, 5, 11, 90, 170], [-470.8, 44.5, 6, 11, 90, 170], [-470.0, 44.8, 10, 11, 90, 170], [-469.3, 45.1, 12, 11, 90, 170], [-468.6, 45.5, 6, 11, 90, 170], [-467.9, 45.9, 11, 11, 90, 170], [-467.3, 46.4, 4, 11, 90, 170], [-466.7, 46.9, 5, 11, 90, 170], [-466.1, 47.4, 8, 11, 90, 170], [-465.6, 48.0, 9, 11, 90, 170], [-465.1, 48.6, 7, 11, 90, 170], [-464.6, 49.2, 5, 11, 90, 170], [-464.2, 49.9, 5, 11, 90, 170], [-463.8, 50.6, 10, 11, 90, 170], [-463.5, 51.3, 11, 11, 90, 170], [-463.2, 52.0, 6, 11, 90, 170], [-462.9, 52.8, 5, 11, 90, 170], [-462.7, 53.5, 10, 11, 90, 170], [-462.6, 54.3, 4, 11, 90, 170], [-462.4, 55.1, 9, 11, 90, 170], [-462.4, 56.0, 7, 11, 90, 170], [-462.3, 56.8, 8, 11, 90, 170], [-462.4, 57.7, 11, 11, 90, 170], [-462.5, 58.5, 7, 11, 90, 170], [-462.6, 59.4, 10, 11, 90, 170], [-462.8, 60.3, 9, 11, 90, 170], [-463.1, 61.1, 11, 11, 90, 170], [-463.3, 62.0, 10, 11, 90, 170], [-463.7, 62.8, 11, 11, 90, 170], [-464.1, 63.6, 9, 11, 90, 170], [-464.5, 64.3, 9, 11, 90, 170], [-465.0, 65.0, 9, 11, 90, 170], [-465.5, 65.6, 12, 11, 90, 170], [-466.0, 66.2, 12, 11, 90, 170], [-466.6, 66.7, 4, 11, 90, 170], [-467.1, 67.2, 11, 11, 90, 170], [-467.7, 67.6, 9, 11, 90, 170], [-468.4, 67.9, 10, 11, 90, 170], [-469.0, 68.2, 12, 11, 90, 170], [-469.6, 68.4, 6, 11, 90, 170], [-470.3, 68.5, 12, 11, 90, 170], [-470.9, 68.6, 5, 11, 90, 170], [-471.6, 68.5, 8, 11, 90, 170], [-472.2, 68.5, 12, 11, 90, 170], [-472.7, 68.3, 10, 11, 90, 170], [-473.3, 68.1, 12, 11, 90, 170], [-473.8, 67.9, 6, 11, 90, 170], [-474.3, 67.6, 10, 11, 90, 170], [-474.7, 67.3, 5, 11, 90, 170], [-475.1, 66.9, 4, 11, 90, 170], [-475.5, 66.5, 10, 11, 90, 170], [-475.8, 66.1, 9, 11, 90, 170], [-476.1, 65.6, 8, 11, 90, 170], [-476.3, 65.1, 6, 11, 90, 170], [-476.5, 64.5, 6, 11, 90, 170], [-476.6, 63.9, 12, 11, 90, 170], [-476.7, 63.3, 5, 11, 90, 170], [-476.7, 62.6, 7, 11, 90, 170], [-476.7, 62.0, 4, 11, 90, 170], [-476.6, 61.4, 4, 11, 90, 170], [-476.4, 60.9, 8, 11, 90, 170], [-476.2, 60.4, 7, 11, 90, 170], [-475.8, 60.1, 4, 11, 90, 170], [-475.5, 59.7, 10, 11, 90, 170], [-475.1, 59.5, 11, 11, 90, 170], [-474.7, 59.2, 12, 11, 90, 170], [-474.3, 59.1, 11, 11, 90, 170], [-473.8, 59.0, 5, 11, 90, 170], [-473.3, 59.1, 4, 11, 90, 170], [-472.8, 59.1, 11, 11, 90, 170], [-472.3, 59.4, 12, 11, 90, 170], [-471.8, 59.6, 7, 11, 90, 170], [-471.4, 59.9, 6, 11, 90, 170], [-470.9, 60.3, 9, 11, 90, 170]], "rgba": 4278190080, "color": 0, "bounds": [-495.8, 26.9, 52.80000000000001, 59.6], "tool": 15, "maskScale": 2.0, "thickness": 2.0}, {"points": [[695.0, 1860.2, 11, 11, 90, 170], [694.4, 1860.7, 12, 11, 90, 170], [693.8, 1861.1, 5, 11, 90, 170], [693.1, 1861.5, 9, 11, 90, 170], [692.3, 1861.9, 4, 11, 90, 170], [690.6, 1862.8, 6, 11, 90, 170], [688.9, 1863.6, 10, 11, 90, 170], [686.9, 1864.4, 4, 11, 90, 170], [684.8, 1865.2, 11, 11, 90, 170], [682.7, 1865.9, 8, 11, 90, 170], [680.5, 1866.6, 10, 11, 90, 170], [678.3, 1867.2, 11, 11, 90, 170], [676.1, 1867.7, 5, 11, 90, 170], [675.0, 1867.9, 11, 11, 90, 170], [673.9, 1868.2, 8, 11, 90, 170], [672.9, 1868.3, 9, 11, 90, 170], [671.8, 1868.5, 5, 11, 90, 170], [670.8, 1868.6, 11, 11, 90, 170], [669.8, 1868.7, 6, 11, 90, 170], [668.8, 1868.7, 7, 11, 90, 170], [667.8, 1868.8, 9, 11, 90, 170], [667.0, 1868.7, 5, 11, 90, 170], [666.1, 1868.7, 7, 11, 90, 170], [665.3, 1868.6, 10, 11, 90, 170], [664.5, 1868.5, 5, 11, 90, 170], [662.6, 1868.1, 12, 11, 90, 170], [660.8, 1867.8, 6, 11, 90, 170], [659.1, 1867.3, 8, 11, 90, 170], [657.5, 1866.9, 11, 11, 90, 170], [656.0, 1866.4, 5, 11, 90, 170], [654.5, 1865.8, 10, 11, 90, 170], [653.2, 1865.2, 4, 11, 90, 170], [651.9, 1864.6, 12, 11, 90, 170], [650.8, 1863.9, 4, 11, 90, 170], [649.6, 1863.2, 12, 11, 90, 170], [648.6, 1862.4, 12, 11, 90, 170], [647.5, 1861.7, 10, 11, 90, 170], [646.6, 1860.8, 12, 11, 90, 170], [645.6, 1860.0, 10, 11, 90, 170], [644.8, 1859.1, 11, 11, 90, 170], [643.9, 1858.2, 9, 11, 90, 170], [641.9, 1855.9, 7, 11, 90, 170], [639.9, 1853.6, 9, 11, 90, 170], [638.0, 1851.4, 6, 11, 90, 170], [636.1, 1849.1, 7, 11, 90, 170], [634.2, 1847.0, 10, 11, 90, 170], [632.3, 1844.9, 9, 11, 90, 170], [631.3, 1843.9, 6, 11, 90, 170], [630.3, 1842.9, 7, 11, 90, 170], [629.3, 1841.9, 8, 11, 90, 170], [628.3, 1841.0, 11, 11, 90, 170], [627.4, 1840.3, 9, 11, 90, 170], [626.5, 1839.6, 12, 11, 90, 170], [625.6, 1839.0, 6, 11, 90, 170], [624.7, 1838.3, 7, 11, 90, 170], [623.8, 1837.7, 12, 11, 90, 170], [622.9, 1837.1, 7, 11, 90, 170], [621.9, 1836.5, 10, 11, 90, 170], [621.0, 1836.0, 7, 11, 90, 170], [620.0, 1835.5, 5, 11, 90, 170], [619.0, 1835.0, 8, 11, 90, 170], [618.0, 1834.5, 9, 11, 90, 170], [617.0, 1834.1, 6, 11, 90, 170], [616.0, 1833.7, 12, 11, 90, 170], [615.0, 1833.4, 4, 11, 90, 170], [614.0, 1833.1, 9, 11, 90, 170], [613.0, 1832.8, 6, 11, 90, 170], [612.0, 1832.6, 4, 11, 90, 170], [611.0, 1832.4, 7, 11, 90, 170], [610.0, 1832.4, 4, 11, 90, 170], [609.0, 1832.3, 7, 11, 90, 170], [608.1, 1832.3, 11, 11, 90, 170], [607.1, 1832.3, 6, 11, 90, 170], [606.1, 1832.4, 4, 11, 90, 170], [605.2, 1832.6, 5, 11, 90, 170], [604.3, 1832.8, 11, 11, 90, 170], [603.3, 1833.1, 8, 11, 90, 170], [602.4, 1833.5, 7, 11, 90, 170], [601.5, 1833.8, 8, 11, 90, 170], [600.7, 1834.4, 10, 11, 90, 170], [599.8, 1834.9, 8, 11, 90, 170], [599.0, 1835.6, 5, 11, 90, 170], [598.2, 1836.2, 12, 11, 90, 170], [597.1, 1837.1, 5, 11, 90, 170], [596.1, 1838.0, 10, 11, 90, 170], [595.1, 1839.0, 8, 11, 90, 170], [594.2, 1840.0, 8, 11, 90, 170], [593.4, 1841.0, 4, 11, 90, 170], [592.6, 1842.1, 11, 11, 90, 170], [592.0, 1843.2, 8, 11, 90, 170], [591.3, 1844.3, 8, 11, 90, 170], [591.1, 1844.8, 9, 11, 90, 170], [590.9, 1845.3, 12, 11, 90, 170], [590.7, 1845.9, 7, 11, 90, 170], [590.5, 1846.4, 6, 11, 90, 170], [590.3, 1847.0, 6, 11, 90, 170], [590.2, 1847.5, 6, 11, 90, 170], [590.1, 1848.0, 7, 11, 90, 170], [590.0, 1848.6, 12, 11, 90, 170], [590.0, 1849.1, 10, 11, 90, 170], [590.0, 1849.6, 11, 11, 90, 170], [590.0, 1850.1, 7, 11, 90, 170], [590.1, 1850.6, 7, 11, 90, 170], [590.2, 1851.1, 7, 11, 90, 170], [590.3, 1851.6, 5, 11, 90, 170], [590.4, 1852.1, 10, 11, 90, 170], [590.6, 1852.5, 11, 11, 90, 170], [590.9, 1853.4, 11, 11, 90, 170], [591.1, 1854.4, 6, 11, 90, 170], [591.5, 1855.3, 10, 11, 90, 170], [592.0, 1856.2, 9, 11, 90, 170], [592.6, 1857.2, 4, 11, 90, 170], [593.2, 1858.1, 7, 11, 90, 170], [593.5, 1858.5, 5, 11, 90, 170], [593.9, 1859.0, 8, 11, 90, 170], [594.3, 1859.4, 7, 11, 90, 170], [594.7, 1859.8, 6, 11, 90, 170], [595.1, 1860.2, 12, 11, 90, 170], [595.6, 1860.6, 8, 11, 90, 170], [596.0, 1860.9, 9, 11, 90, 170], [596.5, 1861.3, 12, 11, 90, 170], [597.1, 1861.6, 6, 11, 90, 170], [597.6, 1861.9, 4, 11, 90, 170], [598.1, 1862.2, 11, 11, 90, 170], [598.7, 1862.5, 9, 11, 90, 170], [599.3, 1862.7, 5, 11, 90, 170], [599.9, 1863.0, 7, 11, 90, 170], [600.6, 1863.2, 4, 11, 90, 170], [601.2, 1863.3, 11, 11, 90, 170], [601.9, 1863.5, 4, 11, 90, 170], [602.6, 1863.6, 10, 11, 90, 170], [603.4, 1863.7, 9, 11, 90, 170], [604.1, 1863.7, 7, 11, 90, 170], [604.7, 1863.7, 12, 11, 90, 170], [605.2, 1863.7, 5, 11, 90, 170], [605.7, 1863.6, 10, 11, 90, 170], [606.2, 1863.6, 8, 11, 90, 170], [606.7, 1863.5, 12, 11, 90, 170], [607.2, 1863.4, 5, 11, 90, 170], [607.7, 1863.2, 7, 11, 90, 170], [608.2, 1863.0, 6, 11, 90, 170], [608.7, 1862.8, 5, 11, 90, 170], [609.1, 1862.6, 9, 11, 90, 170], [609.5, 1862.3, 9, 11, 90, 170], [609.9, 1862.1, 9, 11, 90, 170], [610.3, 1861.8, 4, 11, 90, 170], [610.7, 1861.5, 4, 11, 90, 170], [611.0, 1861.1, 11, 11, 90, 170], [611.4, 1860.8, 5, 11, 90, 170], [611.7, 1860.4, 4, 11, 90, 170], [611.9, 1860.0, 9, 11, 90, 170], [612.2, 1859.5, 9, 11, 90, 170], [612.4, 1859.1, 11, 11, 90, 170], [612.6, 1858.6, 4, 11, 90, 170], [612.8, 1858.1, 12, 11, 90, 170], [612.9, 1857.6, 9, 11, 90, 170], [613.0, 1857.1, 7, 11, 90, 170], [613.1, 1856.5, 11, 11, 90, 170], [613.2, 1856.0, 7, 11, 90, 170], [613.2, 1855.4, 6, 11, 90, 170], [613.2, 1854.8, 4, 11, 90, 170], [613.1, 1854.2, 6, 11, 90, 170], [613.0, 1853.5, 7, 11, 90, 170], [612.9, 1852.9, 5, 11, 90, 170], [612.7, 1852.2, 11, 11, 90, 170], [612.6, 1851.8, 4, 11, 90, 170], [612.5, 1851.3, 12, 11, 90, 170], [612.3, 1850.9, 9, 11, 90, 170], [612.1, 1850.5, 12, 11, 90, 170], [611.9, 1850.2, 11, 11, 90, 170], [611.7, 1849.8, 7, 11, 90, 170], [611.4, 1849.4, 4, 11, 90, 170], [611.2, 1849.1, 10, 11, 90, 170], [610.9, 1848.8, 10, 11, 90, 170], [610.6, 1848.5, 4, 11, 90, 170], [610.3, 1848.2, 5, 11, 90, 170], [610.0, 1848.0, 9, 11, 90, 170], [609.6, 1847.7, 11, 11, 90, 170], [609.3, 1847.5, 11, 11, 90, 170], [608.9, 1847.3, 9, 11, 90, 170], [608.5, 1847.2, 10, 11, 90, 170], [608.2, 1847.0, 10, 11, 90, 170], [607.8, 1846.9, 11, 11, 90, 170], [607.4, 1846.8, 6, 11, 90, 170], [607.0, 1846.7, 4, 11, 90, 170], [606.6, 1846.7, 11, 11, 90, 170], [606.2, 1846.7, 4, 11, 90, 170], [605.8, 1846.7, 12, 11, 90, 170], [605.4, 1846.8, 7, 11, 90, 170], [605.0, 1846.8, 6, 11, 90, 170], [604.6, 1846.9, 10, 11, 90, 170], [604.2, 1847.1, 10, 11, 90, 170], [603.8, 1847.2, 8, 11, 90, 170], [603.5, 1847.5, 6, 11, 90, 170], [603.1, 1847.7, 11, 11, 90, 170], [602.7, 1848.0, 7, 11, 90, 170], [602.4, 1848.2, 9, 11, 90, 170]], "rgba": 4278190080, "color": 0, "bounds": [590.0, 1832.3, 105.0, 36.5], "tool": 15, "maskScale": 2.0, "thickness": 2.0}, {"points": [[691.9, 1854.6, 11, 11, 90, 170], [691.3, 1855.1, 11, 11, 90, 170], [690.7, 1855.7, 5, 11, 90, 170], [690.0, 1856.2, 6, 11, 90, 170], [689.3, 1856.7, 4, 11, 90, 170], [688.6, 1857.2, 4, 11, 90, 170], [687.8, 1857.7, 6, 11, 90, 170], [687.0, 1858.1, 4, 11, 90, 170], [686.2, 1858.5, 8, 11, 90, 170], [685.3, 1859.0, 8, 11, 90, 170], [684.5, 1859.4, 10, 11, 90, 170], [683.6, 1859.7, 5, 11, 90, 170], [682.7, 1860.1, 9, 11, 90, 170], [680.8, 1860.8, 10, 11, 90, 170], [678.9, 1861.4, 5, 11, 90, 170], [677.0, 1861.9, 11, 11, 90, 170], [675.1, 1862.3, 10, 11, 90, 170], [673.3, 1862.6, 12, 11, 90, 170], [671.4, 1862.9, 5, 11, 90, 170], [670.5, 1863.0, 5, 11, 90, 170], [669.7, 1863.1, 6, 11, 90, 170], [668.9, 1863.1, 4, 11, 90, 170], [668.0, 1863.1, 6, 11, 90, 170], [667.3, 1863.1, 8, 11, 90, 170], [666.5, 1863.0, 9, 11, 90, 170], [665.8, 1863.0, 6, 11, 90, 170], [665.1, 1862.9, 5, 11, 90, 170], [663.7, 1862.6, 11, 11, 90, 170], [662.2, 1862.3, 4, 11, 90, 170], [660.9, 1861.9, 10, 11, 90, 170], [659.6, 1861.5, 12, 11, 90, 170], [658.5, 1861.0, 9, 11, 90, 170], [657.4, 1860.5, 4, 11, 90, 170], [656.4, 1859.9, 6, 11, 90, 170], [655.4, 1859.3, 11, 11, 90, 170], [654.5, 1858.6, 7, 11, 90, 170], [653.7, 1857.9, 10, 11, 90, 170], [652.9, 1857.0, 6, 11, 90, 170], [652.2, 1856.2, 12, 11, 90, 170], [651.6, 1855.3, 12, 11, 90, 170], [651.0, 1854.3, 9, 11, 90, 170], [650.5, 1853.3, 7, 11, 90, 170], [650.0, 1852.2, 12, 11, 90, 170], [649.2, 1850.9, 4, 11, 90, 170], [648.4, 1849.6, 7, 11, 90, 170], [647.7, 1848.2, 11, 11, 90, 170], [646.9, 1846.9, 5, 11, 90, 170], [646.3, 1845.6, 10, 11, 90, 170], [645.7, 1844.3, 12, 11, 90, 170], [645.3, 1843.0, 12, 11, 90, 170], [644.8, 1841.7, 8, 11, 90, 170], [644.4, 1840.4, 4, 11, 90, 170], [644.0, 1839.2, 12, 11, 90, 170], [643.7, 1838.0, 4, 11, 90, 170], [643.5, 1836.7, 9, 11, 90, 170], [643.3, 1835.5, 12, 11, 90, 170], [643.1, 1834.4, 12, 11, 90, 170], [643.1, 1833.2, 6, 11, 90, 170], [643.0, 1832.1, 10, 11, 90, 170], [643.1, 1830.9, 5, 11, 90, 170], [643.1, 1829.7, 4, 11, 90, 170], [643.3, 1828.4, 5, 11, 90, 170], [643.5, 1827.2, 12, 11, 90, 170], [643.7, 1826.0, 12, 11, 90, 170], [644.0, 1824.8, 9, 11, 90, 170], [644.3, 1823.7, 8, 11, 90, 170], [644.7, 1822.5, 4, 11, 90, 170], [645.2, 1821.3, 9, 11, 90, 170], [645.6, 1820.2, 8, 11, 90, 170], [646.2, 1819.1, 12, 11, 90, 170], [646.7, 1818.0, 7, 11, 90, 170], [647.3, 1816.9, 8, 11, 90, 170], [648.0, 1815.9, 5, 11, 90, 170], [648.7, 1814.9, 11, 11, 90, 170], [649.4, 1813.9, 5, 11, 90, 170], [650.2, 1812.9, 7, 11, 90, 170], [651.0, 1812.0, 9, 11, 90, 170], [651.9, 1811.1, 7, 11, 90, 170], [652.8, 1810.3, 4, 11, 90, 170], [653.7, 1809.5, 6, 11, 90, 170], [654.7, 1808.7, 8, 11, 90, 170], [655.7, 1808.0, 5, 11, 90, 170], [656.8, 1807.3, 4, 11, 90, 170], [657.9, 1806.7, 11, 11, 90, 170], [659.0, 1806.1, 10, 11, 90, 170], [660.1, 1805.5, 8, 11, 90, 170], [661.3, 1805.0, 5, 11, 90, 170], [662.5, 1804.6, 8, 11, 90, 170], [663.7, 1804.2, 10, 11, 90, 170], [665.0, 1804.0, 12, 11, 90, 170], [666.3, 1803.7, 5, 11, 90, 170], [667.4, 1803.6, 12, 11, 90, 170], [668.5, 1803.5, 8, 11, 90, 170], [669.5, 1803.6, 4, 11, 90, 170], [670.6, 1803.6, 9, 11, 90, 170], [671.7, 1803.7, 12, 11, 90, 170], [672.8, 1803.8, 4, 11, 90, 170], [673.8, 1804.1, 9, 11, 90, 170], [674.9, 1804.3, 9, 11, 90, 170], [675.9, 1804.6, 6, 11, 90, 170], [677.0, 1804.8, 4, 11, 90, 170], [678.0, 1805.2, 7, 11, 90, 170], [679.0, 1805.6, 12, 11, 90, 170], [680.0, 1806.0, 8, 11, 90, 170], [681.0, 1806.5, 9, 11, 90, 170], [681.9, 1807.0, 9, 11, 90, 170], [682.8, 1807.5, 9, 11, 90, 170], [683.8, 1808.1, 9, 11, 90, 170], [684.7, 1808.7, 10, 11, 90, 170], [685.5, 1809.4, 4, 11, 90, 170], [686.4, 1810.0, 7, 11, 90, 170], [687.2, 1810.7, 5, 11, 90, 170], [688.0, 1811.4, 10, 11, 90, 170], [688.7, 1812.2, 12, 11, 90, 170], [689.5, 1813.0, 6, 11, 90, 170], [690.2, 1813.8, 8, 11, 90, 170], [690.9, 1814.7, 7, 11, 90, 170], [691.5, 1815.5, 12, 11, 90, 170], [692.1, 1816.4, 8, 11, 90, 170], [692.7, 1817.4, 5, 11, 90, 170], [693.2, 1818.3, 4, 11, 90, 170], [693.7, 1819.3, 12, 11, 90, 170], [694.2, 1820.2, 8, 11, 90, 170], [694.4, 1820.8, 7, 11, 90, 170], [694.7, 1821.3, 8, 11, 90, 170], [694.9, 1821.8, 4, 11, 90, 170], [695.1, 1822.3, 11, 11, 90, 170], [695.2, 1822.8, 5, 11, 90, 170], [695.4, 1823.3, 7, 11, 90, 170], [695.5, 1823.9, 5, 11, 90, 170], [695.6, 1824.4, 12, 11, 90, 170], [695.7, 1825.4, 12, 11, 90, 170], [695.8, 1826.5, 10, 11, 90, 170], [695.8, 1827.6, 12, 11, 90, 170], [695.7, 1828.6, 8, 11, 90, 170], [695.5, 1829.7, 12, 11, 90, 170], [695.3, 1830.8, 7, 11, 90, 170], [695.0, 1831.8, 10, 11, 90, 170], [694.7, 1832.9, 12, 11, 90, 170], [694.2, 1833.9, 4, 11, 90, 170], [693.7, 1834.9, 8, 11, 90, 170], [693.2, 1835.9, 4, 11, 90, 170], [692.6, 1836.8, 12, 11, 90, 170], [691.9, 1837.7, 8, 11, 90, 170], [691.2, 1838.7, 5, 11, 90, 170], [690.5, 1839.5, 4, 11, 90, 170], [689.7, 1840.3, 6, 11, 90, 170], [688.9, 1841.1, 11, 11, 90, 170], [688.0, 1841.9, 6, 11, 90, 170], [687.1, 1842.6, 6, 11, 90, 170], [686.2, 1843.2, 10, 11, 90, 170], [685.2, 1843.8, 4, 11, 90, 170], [684.2, 1844.4, 9, 11, 90, 170], [683.2, 1844.8, 10, 11, 90, 170], [682.2, 1845.3, 11, 11, 90, 170], [681.1, 1845.6, 6, 11, 90, 170], [680.1, 1845.9, 10, 11, 90, 170], [679.0, 1846.1, 10, 11, 90, 170], [677.9, 1846.3, 12, 11, 90, 170], [676.9, 1846.4, 5, 11, 90, 170], [676.0, 1846.4, 4, 11, 90, 170], [675.1, 1846.4, 4, 11, 90, 170], [674.2, 1846.3, 10, 11, 90, 170], [673.3, 1846.2, 12, 11, 90, 170], [672.4, 1846.0, 10, 11, 90, 170], [671.6, 1845.8, 6, 11, 90, 170], [670.8, 1845.5, 7, 11, 90, 170], [670.0, 1845.2, 9, 11, 90, 170], [669.3, 1844.9, 5, 11, 90, 170], [668.6, 1844.5, 11, 11, 90, 170], [667.9, 1844.1, 7, 11, 90, 170], [667.3, 1843.6, 6, 11, 90, 170], [666.7, 1843.1, 10, 11, 90, 170], [666.1, 1842.6, 10, 11, 90, 170], [665.6, 1842.0, 8, 11, 90, 170], [665.1, 1841.4, 10, 11, 90, 170], [664.6, 1840.8, 6, 11, 90, 170], [664.2, 1840.1, 12, 11, 90, 170], [663.8, 1839.4, 12, 11, 90, 170], [663.5, 1838.7, 8, 11, 90, 170], [663.2, 1838.0, 10, 11, 90, 170], [662.9, 1837.2, 4, 11, 90, 170], [662.7, 1836.5, 6, 11, 90, 170], [662.6, 1835.7, 10, 11, 90, 170], [662.4, 1834.9, 11, 11, 90, 170], [662.4, 1834.0, 11, 11, 90, 170], [662.3, 1833.2, 8, 11, 90, 170], [662.4, 1832.3, 8, 11, 90, 170], [662.5, 1831.5, 7, 11, 90, 170], [662.6, 1830.6, 6, 11, 90, 170], [662.8, 1829.7, 10, 11, 90, 170], [663.1, 1828.9, 5, 11, 90, 170], [663.3, 1828.0, 4, 11, 90, 170], [663.7, 1827.2, 4, 11, 90, 170], [664.1, 1826.4, 7, 11, 90, 170], [664.5, 1825.7, 4, 11, 90, 170], [665.0, 1825.0, 9, 11, 90, 170], [665.5, 1824.4, 10, 11, 90, 170], [666.0, 1823.8, 4, 11, 90, 170], [666.6, 1823.3, 5, 11, 90, 170], [667.1, 1822.8, 6, 11, 90, 170], [667.7, 1822.4, 6, 11, 90, 170], [668.4, 1822.1, 5, 11, 90, 170], [669.0, 1821.8, 4, 11, 90, 170], [669.6, 1821.6, 7, 11, 90, 170], [670.3, 1821.5, 6, 11, 90, 170], [670.9, 1821.4, 7, 11, 90, 170], [671.6, 1821.5, 11, 11, 90, 170], [672.2, 1821.5, 6, 11, 90, 170], [672.7, 1821.7, 8, 11, 90, 170], [673.3, 1821.9, 11, 11, 90, 170], [673.8, 1822.1, 10, 11, 90, 170], [674.3, 1822.4, 4, 11, 90, 170], [674.7, 1822.7, 10, 11, 90, 170], [675.1, 1823.1, 4, 11, 90, 170], [675.5, 1823.5, 5, 11, 90, 170], [675.8, 1823.9, 12, 11, 90, 170], [676.1, 1824.4, 5, 11, 90, 170], [676.3, 1824.9, 11, 11, 90, 170], [676.5, 1825.5, 9, 11, 90, 170], [676.6, 1826.1, 12, 11, 90, 170], [676.7, 1826.7, 12, 11, 90, 170], [676.7, 1827.4, 12, 11, 90, 170], [676.7, 1828.0, 5, 11, 90, 170], [676.6, 1828.6, 7, 11, 90, 170], [676.4, 1829.1, 7, 11, 90, 170], [676.2, 1829.6, 4, 11, 90, 170], [675.8, 1829.9, 11, 11, 90, 170], [675.5, 1830.3, 12, 11, 90, 170], [675.1, 1830.5, 4, 11, 90, 170], [674.7, 1830.8, 4, 11, 90, 170], [674.3, 1830.9, 5, 11, 90, 170], [673.8, 1831.0, 7, 11, 90, 170], [673.3, 1830.9, 7, 11, 90, 170], [672.8, 1830.9, 8, 11, 90, 170], [672.3, 1830.6, 9, 11, 90, 170], [671.8, 1830.4, 12, 11, 90, 170], [671.4, 1830.1, 11, 11, 90, 170], [670.9, 1829.7, 7, 11, 90, 170]], "rgba": 4278190080, "color": 0, "bounds": [643.0, 1803.5, 52.799999999999955, 59.59999999999991], "tool": 15, "maskScale": 2.0, "thickness": 2.0}, {"points": [[-495.0, 1860.2, 12, 11, 90, 170], [-494.4, 1860.7, 11, 11, 90, 170], [-493.8, 1861.1, 11, 11, 90, 170], [-493.1, 1861.5, 6, 11, 90, 170], [-492.3, 1861.9, 5, 11, 90, 170], [-490.6, 1862.8, 4, 11, 90, 170], [-488.9, 1863.6, 4, 11, 90, 170], [-486.9, 1864.4, 7, 11, 90, 170], [-484.8, 1865.2, 10, 11, 90, 170], [-482.7, 1865.9, 11, 11, 90, 170], [-480.5, 1866.6, 8, 11, 90, 170], [-478.3, 1867.2, 8, 11, 90, 170], [-476.1, 1867.7, 8, 11, 90, 170], [-475.0, 1867.9, 7, 11, 90, 170], [-473.9, 1868.2, 12, 11, 90, 170], [-472.9, 1868.3, 8, 11, 90, 170], [-471.8, 1868.5, 5, 11, 90, 170], [-470.8, 1868.6, 11, 11, 90, 170], [-469.8, 1868.7, 12, 11, 90, 170], [-468.8, 1868.7, 9, 11, 90, 170], [-467.8, 1868.8, 11, 11, 90, 170], [-467.0, 1868.7, 11, 11, 90, 170], [-466.1, 1868.7, 10, 11, 90, 170], [-465.3, 1868.6, 5, 11, 90, 170], [-464.4, 1868.5, 6, 11, 90, 170], [-462.6, 1868.1, 8, 11, 90, 170], [-460.8, 1867.8, 8, 11, 90, 170], [-459.1, 1867.3, 6, 11, 90, 170], [-457.5, 1866.9, 4, 11, 90, 170], [-456.0, 1866.4, 12, 11, 90, 170], [-454.5, 1865.8, 9, 11, 90, 170], [-453.2, 1865.2, 7, 11, 90, 170], [-451.9, 1864.6, 10, 11, 90, 170], [-450.8, 1863.9, 11, 11, 90, 170], [-449.6, 1863.2, 4, 11, 90, 170], [-448.6, 1862.4, 6, 11, 90, 170], [-447.5, 1861.7, 6, 11, 90, 170], [-446.6, 1860.8, 9, 11, 90, 170], [-445.6, 1860.0, 8, 11, 90, 170], [-444.8, 1859.1, 10, 11, 90, 170], [-443.9, 1858.2, 7, 11, 90, 170], [-441.9, 1855.9, 4, 11, 90, 170], [-439.9, 1853.6, 6, 11, 90, 170], [-438.0, 1851.4, 6, 11, 90, 170], [-436.1, 1849.1, 11, 11, 90, 170], [-434.2, 1847.0, 11, 11, 90, 170], [-432.3, 1844.9, 7, 11, 90, 170], [-431.3, 1843.9, 11, 11, 90, 170], [-430.3, 1842.9, 9, 11, 90, 170], [-429.3, 1841.9, 11, 11, 90, 170], [-428.3, 1841.0, 5, 11, 90, 170], [-427.4, 1840.3, 7, 11, 90, 170], [-426.5, 1839.6, 8, 11, 90, 170], [-425.6, 1839.0, 12, 11, 90, 170], [-424.7, 1838.3, 12, 11, 90, 170], [-423.8, 1837.7, 6, 11, 90, 170], [-422.9, 1837.1, 11, 11, 90, 170], [-421.9, 1836.5, 10, 11, 90, 170], [-421.0, 1836.0, 11, 11, 90, 170], [-420.0, 1835.5, 5, 11, 90, 170], [-419.0, 1835.0, 8, 11, 90, 170], [-418.0, 1834.5, 12, 11, 90, 170], [-417.0, 1834.1, 5, 11, 90, 170], [-416.0, 1833.7, 8, 11, 90, 170], [-415.0, 1833.4, 12, 11, 90, 170], [-414.0, 1833.1, 8, 11, 90, 170], [-413.0, 1832.8, 8, 11, 90, 170], [-412.0, 1832.6, 8, 11, 90, 170], [-411.0, 1832.4, 12, 11, 90, 170], [-410.0, 1832.4, 5, 11, 90, 170], [-409.0, 1832.3, 7, 11, 90, 170], [-408.1, 1832.3, 4, 11, 90, 170], [-407.1, 1832.3, 5, 11, 90, 170], [-406.1, 1832.4, 11, 11, 90, 170], [-405.2, 1832.6, 8, 11, 90, 170], [-404.3, 1832.8, 5, 11, 90, 170], [-403.3, 1833.1, 4, 11, 90, 170], [-402.4, 1833.5, 8, 11, 90, 170], [-401.5, 1833.8, 4, 11, 90, 170], [-400.7, 1834.4, 9, 11, 90, 170], [-399.8, 1834.9, 6, 11, 90, 170], [-399.0, 1835.6, 11, 11, 90, 170], [-398.2, 1836.2, 10, 11, 90, 170], [-397.1, 1837.1, 7, 11, 90, 170], [-396.1, 1838.0, 12, 11, 90, 170], [-395.1, 1839.0, 9, 11, 90, 170], [-394.2, 1840.0, 10, 11, 90, 170], [-393.4, 1841.0, 11, 11, 90, 170], [-392.6, 1842.1, 9, 11, 90, 170], [-392.0, 1843.2, 10, 11, 90, 170], [-391.3, 1844.3, 11, 11, 90, 170], [-391.1, 1844.8, 5, 11, 90, 170], [-390.9, 1845.3, 8, 11, 90, 170], [-390.7, 1845.9, 4, 11, 90, 170], [-390.5, 1846.4, 11, 11, 90, 170], [-390.3, 1847.0, 6, 11, 90, 170], [-390.2, 1847.5, 4, 11, 90, 170], [-390.1, 1848.0, 4, 11, 90, 170], [-390.0, 1848.6, 12, 11, 90, 170], [-390.0, 1849.1, 7, 11, 90, 170], [-390.0, 1849.6, 7, 11, 90, 170], [-390.0, 1850.1, 4, 11, 90, 170], [-390.1, 1850.6, 4, 11, 90, 170], [-390.2, 1851.1, 8, 11, 90, 170], [-390.3, 1851.6, 8, 11, 90, 170], [-390.4, 1852.1, 12, 11, 90, 170], [-390.6, 1852.5, 6, 11, 90, 170], [-390.9, 1853.4, 10, 11, 90, 170], [-391.1, 1854.4, 10, 11, 90, 170], [-391.5, 1855.3, 7, 11, 90, 170], [-392.0, 1856.2, 12, 11, 90, 170], [-392.6, 1857.2, 11, 11, 90, 170], [-393.2, 1858.1, 10, 11, 90, 170], [-393.5, 1858.5, 9, 11, 90, 170], [-393.9, 1859.0, 5, 11, 90, 170], [-394.3, 1859.4, 12, 11, 90, 170], [-394.7, 1859.8, 10, 11, 90, 170], [-395.1, 1860.2, 6, 11, 90, 170], [-395.6, 1860.6, 5, 11, 90, 170], [-396.0, 1860.9, 12, 11, 90, 170], [-396.5, 1861.3, 5, 11, 90, 170], [-397.1, 1861.6, 9, 11, 90, 170], [-397.6, 1861.9, 4, 11, 90, 170], [-398.1, 1862.2, 7, 11, 90, 170], [-398.7, 1862.5, 9, 11, 90, 170], [-399.3, 1862.7, 5, 11, 90, 170], [-399.9, 1863.0, 9, 11, 90, 170], [-400.6, 1863.2, 8, 11, 90, 170], [-401.2, 1863.3, 8, 11, 90, 170], [-401.9, 1863.5, 11, 11, 90, 170], [-402.6, 1863.6, 11, 11, 90, 170], [-403.4, 1863.7, 9, 11, 90, 170], [-404.1, 1863.7, 11, 11, 90, 170], [-404.7, 1863.7, 11, 11, 90, 170], [-405.2, 1863.7, 6, 11, 90, 170], [-405.7, 1863.6, 12, 11, 90, 170], [-406.2, 1863.6, 5, 11, 90, 170], [-406.7, 1863.5, 8, 11, 90, 170], [-407.2, 1863.4, 4, 11, 90, 170], [-407.7, 1863.2, 12, 11, 90, 170], [-408.2, 1863.0, 4, 11, 90, 170], [-408.7, 1862.8, 8, 11, 90, 170], [-409.1, 1862.6, 12, 11, 90, 170], [-409.5, 1862.3, 6, 11, 90, 170], [-409.9, 1862.1, 4, 11, 90, 170], [-410.3, 1861.8, 12, 11, 90, 170], [-410.7, 1861.5, 12, 11, 90, 170], [-411.0, 1861.1, 5, 11, 90, 170], [-411.4, 1860.8, 11, 11, 90, 170], [-411.7, 1860.4, 8, 11, 90, 170], [-411.9, 1860.0, 10, 11, 90, 170], [-412.2, 1859.5, 5, 11, 90, 170], [-412.4, 1859.1, 4, 11, 90, 170], [-412.6, 1858.6, 4, 11, 90, 170], [-412.8, 1858.1, 4, 11, 90, 170], [-412.9, 1857.6, 11, 11, 90, 170], [-413.0, 1857.1, 6, 11, 90, 170], [-413.1, 1856.5, 12, 11, 90, 170], [-413.2, 1856.0, 6, 11, 90, 170], [-413.2, 1855.4, 8, 11, 90, 170], [-413.2, 1854.8, 7, 11, 90, 170], [-413.1, 1854.2, 8, 11, 90, 170], [-413.0, 1853.5, 12, 11, 90, 170], [-412.9, 1852.9, 6, 11, 90, 170], [-412.7, 1852.2, 11, 11, 90, 170], [-412.6, 1851.8, 4, 11, 90, 170], [-412.5, 1851.3, 8, 11, 90, 170], [-412.3, 1850.9, 6, 11, 90, 170], [-412.1, 1850.5, 4, 11, 90, 170], [-411.9, 1850.2, 6, 11, 90, 170], [-411.7, 1849.8, 12, 11, 90, 170], [-411.4, 1849.4, 5, 11, 90, 170], [-411.2, 1849.1, 12, 11, 90, 170], [-410.9, 1848.8, 8, 11, 90, 170], [-410.6, 1848.5, 10, 11, 90, 170], [-410.3, 1848.2, 9, 11, 90, 170], [-410.0, 1848.0, 5, 11, 90, 170], [-409.6, 1847.7, 12, 11, 90, 170], [-409.3, 1847.5, 4, 11, 90, 170], [-408.9, 1847.3, 5, 11, 90, 170], [-408.5, 1847.2, 7, 11, 90, 170], [-408.2, 1847.0, 4, 11, 90, 170], [-407.8, 1846.9, 12, 11, 90, 170], [-407.4, 1846.8, 7, 11, 90, 170], [-407.0, 1846.7, 4, 11, 90, 170], [-406.6, 1846.7, 5, 11, 90, 170], [-406.2, 1846.7, 5, 11, 90, 170], [-405.8, 1846.7, 6, 11, 90, 170], [-405.4, 1846.8, 9, 11, 90, 170], [-405.0, 1846.8, 4, 11, 90, 170], [-404.6, 1846.9, 7, 11, 90, 170], [-404.2, 1847.1, 12, 11, 90, 170], [-403.8, 1847.2, 5, 11, 90, 170], [-403.5, 1847.5, 5, 11, 90, 170], [-403.1, 1847.7, 11, 11, 90, 170], [-402.7, 1848.0, 5, 11, 90, 170], [-402.4, 1848.2, 10, 11, 90, 170]], "rgba": 4278190080, "color": 0, "bounds": [-495.0, 1832.3, 105.0, 36.5], "tool": 15, "maskScale": 2.0, "thickness": 2.0}, {"points": [[-491.9, 1854.6, 12, 11, 90, 170], [-491.3, 1855.1, 11, 11, 90, 170], [-490.7, 1855.7, 4, 11, 90, 170], [-490.0, 1856.2, 12, 11, 90, 170], [-489.3, 1856.7, 7, 11, 90, 170], [-488.6, 1857.2, 6, 11, 90, 170], [-487.8, 1857.7, 9, 11, 90, 170], [-487.0, 1858.1, 5, 11, 90, 170], [-486.2, 1858.5, 4, 11, 90, 170], [-485.3, 1859.0, 4, 11, 90, 170], [-484.5, 1859.4, 11, 11, 90, 170], [-483.6, 1859.7, 9, 11, 90, 170], [-482.7, 1860.1, 9, 11, 90, 170], [-480.8, 1860.8, 4, 11, 90, 170], [-478.9, 1861.4, 8, 11, 90, 170], [-477.0, 1861.9, 11, 11, 90, 170], [-475.1, 1862.3, 9, 11, 90, 170], [-473.3, 1862.6, 7, 11, 90, 170], [-471.4, 1862.9, 6, 11, 90, 170], [-470.5, 1863.0, 12, 11, 90, 170], [-469.7, 1863.1, 10, 11, 90, 170], [-468.9, 1863.1, 5, 11, 90, 170], [-468.0, 1863.1, 5, 11, 90, 170], [-467.3, 1863.1, 8, 11, 90, 170], [-466.5, 1863.0, 5, 11, 90, 170], [-465.8, 1863.0, 7, 11, 90, 170], [-465.1, 1862.9, 4, 11, 90, 170], [-463.7, 1862.6, 12, 11, 90, 170], [-462.2, 1862.3, 6, 11, 90, 170], [-460.9, 1861.9, 6, 11, 90, 170], [-459.6, 1861.5, 11, 11, 90, 170], [-458.5, 1861.0, 11, 11, 90, 170], [-457.4, 1860.5, 12, 11, 90, 170], [-456.4, 1859.9, 12, 11, 90, 170], [-455.4, 1859.3, 9, 11, 90, 170], [-454.5, 1858.6, 7, 11, 90, 170], [-453.7, 1857.9, 7, 11, 90, 170], [-452.9, 1857.0, 7, 11, 90, 170], [-452.2, 1856.2, 11, 11, 90, 170], [-451.6, 1855.3, 10, 11, 90, 170], [-451.0, 1854.3, 4, 11, 90, 170], [-450.5, 1853.3, 12, 11, 90, 170], [-450.0, 1852.2, 10, 11, 90, 170], [-449.2, 1850.9, 8, 11, 90, 170], [-448.4, 1849.6, 7, 11, 90, 170], [-447.7, 1848.2, 9, 11, 90, 170], [-446.9, 1846.9, 4, 11, 90, 170], [-446.3, 1845.6, 9, 11, 90, 170], [-445.7, 1844.3, 4, 11, 90, 170], [-445.3, 1843.0, 8, 11, 90, 170], [-444.8, 1841.7, 6, 11, 90, 170], [-444.4, 1840.4, 6, 11, 90, 170], [-444.0, 1839.2, 6, 11, 90, 170], [-443.7, 1838.0, 7, 11, 90, 170], [-443.5, 1836.7, 4, 11, 90, 170], [-443.3, 1835.5, 8, 11, 90, 170], [-443.1, 1834.4, 9, 11, 90, 170], [-443.1, 1833.2, 5, 11, 90, 170], [-443.0, 1832.1, 8, 11, 90, 170], [-443.1, 1830.9, 8, 11, 90, 170], [-443.1, 1829.7, 12, 11, 90, 170], [-443.3, 1828.4, 10, 11, 90, 170], [-443.5, 1827.2, 5, 11, 90, 170], [-443.7, 1826.0, 11, 11, 90, 170], [-444.0, 1824.8, 6, 11, 90, 170], [-444.3, 1823.7, 9, 11, 90, 170], [-444.7, 1822.5, 4, 11, 90, 170], [-445.2, 1821.3, 6, 11, 90, 170], [-445.6, 1820.2, 8, 11, 90, 170], [-446.2, 1819.1, 11, 11, 90, 170], [-446.7, 1818.0, 6, 11, 90, 170], [-447.3, 1816.9, 8, 11, 90, 170], [-448.0, 1815.9, 10, 11, 90, 170], [-448.7, 1814.9, 11, 11, 90, 170], [-449.4, 1813.9, 4, 11, 90, 170], [-450.2, 1812.9, 6, 11, 90, 170], [-451.0, 1812.0, 11, 11, 90, 170], [-451.9, 1811.1, 7, 11, 90, 170], [-452.8, 1810.3, 9, 11, 90, 170], [-453.7, 1809.5, 12, 11, 90, 170], [-454.7, 1808.7, 9, 11, 90, 170], [-455.7, 1808.0, 12, 11, 90, 170], [-456.8, 1807.3, 6, 11, 90, 170], [-457.9, 1806.7, 6, 11, 90, 170], [-459.0, 1806.1, 12, 11, 90, 170], [-460.1, 1805.5, 7, 11, 90, 170], [-461.3, 1805.0, 10, 11, 90, 170], [-462.5, 1804.6, 7, 11, 90, 170], [-463.7, 1804.2, 7, 11, 90, 170], [-465.0, 1804.0, 5, 11, 90, 170], [-466.3, 1803.7, 12, 11, 90, 170], [-467.4, 1803.6, 11, 11, 90, 170], [-468.5, 1803.5, 12, 11, 90, 170], [-469.5, 1803.6, 10, 11, 90, 170], [-470.6, 1803.6, 5, 11, 90, 170], [-471.7, 1803.7, 5, 11, 90, 170], [-472.8, 1803.8, 10, 11, 90, 170], [-473.8, 1804.1, 12, 11, 90, 170], [-474.9, 1804.3, 8, 11, 90, 170], [-475.9, 1804.6, 10, 11, 90, 170], [-477.0, 1804.8, 7, 11, 90, 170], [-478.0, 1805.2, 4, 11, 90, 170], [-479.0, 1805.6, 6, 11, 90, 170], [-480.0, 1806.0, 7, 11, 90, 170], [-481.0, 1806.5, 4, 11, 90, 170], [-481.9, 1807.0, 11, 11, 90, 170], [-482.8, 1807.5, 8, 11, 90, 170], [-483.8, 1808.1, 5, 11, 90, 170], [-484.7, 1808.7, 11, 11, 90, 170], [-485.5, 1809.4, 9, 11, 90, 170], [-486.4, 1810.0, 5, 11, 90, 170], [-487.2, 1810.7, 8, 11, 90, 170], [-488.0, 1811.4, 10, 11, 90, 170], [-488.7, 1812.2, 7, 11, 90, 170], [-489.5, 1813.0, 4, 11, 90, 170], [-490.2, 1813.8, 8, 11, 90, 170], [-490.9, 1814.7, 12, 11, 90, 170], [-491.5, 1815.5, 6, 11, 90, 170], [-492.1, 1816.4, 11, 11, 90, 170], [-492.7, 1817.4, 12, 11, 90, 170], [-493.2, 1818.3, 7, 11, 90, 170], [-493.7, 1819.3, 7, 11, 90, 170], [-494.2, 1820.2, 7, 11, 90, 170], [-494.4, 1820.8, 10, 11, 90, 170], [-494.7, 1821.3, 4, 11, 90, 170], [-494.9, 1821.8, 4, 11, 90, 170], [-495.1, 1822.3, 7, 11, 90, 170], [-495.2, 1822.8, 6, 11, 90, 170], [-495.4, 1823.3, 4, 11, 90, 170], [-495.5, 1823.9, 5, 11, 90, 170], [-495.6, 1824.4, 4, 11, 90, 170], [-495.7, 1825.4, 6, 11, 90, 170], [-495.8, 1826.5, 8, 11, 90, 170], [-495.8, 1827.6, 8, 11, 90, 170], [-495.7, 1828.6, 10, 11, 90, 170], [-495.5, 1829.7, 5, 11, 90, 170], [-495.3, 1830.8, 8, 11, 90, 170], [-495.0, 1831.8, 8, 11, 90, 170], [-494.7, 1832.9, 4, 11, 90, 170], [-494.2, 1833.9, 7, 11, 90, 170], [-493.7, 1834.9, 6, 11, 90, 170], [-493.2, 1835.9, 4, 11, 90, 170], [-492.6, 1836.8, 5, 11, 90, 170], [-491.9, 1837.7, 6, 11, 90, 170], [-491.2, 1838.7, 12, 11, 90, 170], [-490.5, 1839.5, 5, 11, 90, 170], [-489.7, 1840.3, 10, 11, 90, 170], [-488.9, 1841.1, 12, 11, 90, 170], [-488.0, 1841.9, 9, 11, 90, 170], [-487.1, 1842.6, 10, 11, 90, 170], [-486.2, 1843.2, 7, 11, 90, 170], [-485.2, 1843.8, 5, 11, 90, 170], [-484.2, 1844.4, 10, 11, 90, 170], [-483.2, 1844.8, 5, 11, 90, 170], [-482.2, 1845.3, 8, 11, 90, 170], [-481.1, 1845.6, 7, 11, 90, 170], [-480.1, 1845.9, 9, 11, 90, 170], [-479.0, 1846.1, 7, 11, 90, 170], [-477.9, 1846.3, 4, 11, 90, 170], [-476.9, 1846.4, 9, 11, 90, 170], [-476.0, 1846.4, 8, 11, 90, 170], [-475.1, 1846.4, 11, 11, 90, 170], [-474.2, 1846.3, 6, 11, 90, 170], [-473.3, 1846.2, 10, 11, 90, 170], [-472.4, 1846.0, 7, 11, 90, 170], [-471.6, 1845.8, 7, 11, 90, 170], [-470.8, 1845.5, 4, 11, 90, 170], [-470.0, 1845.2, 7, 11, 90, 170], [-469.3, 1844.9, 9, 11, 90, 170], [-468.6, 1844.5, 7, 11, 90, 170], [-467.9, 1844.1, 11, 11, 90, 170], [-467.3, 1843.6, 4, 11, 90, 170], [-466.7, 1843.1, 7, 11, 90, 170], [-466.1, 1842.6, 10, 11, 90, 170], [-465.6, 1842.0, 12, 11, 90, 170], [-465.1, 1841.4, 5, 11, 90, 170], [-464.6, 1840.8, 7, 11, 90, 170], [-464.2, 1840.1, 8, 11, 90, 170], [-463.8, 1839.4, 11, 11, 90, 170], [-463.5, 1838.7, 11, 11, 90, 170], [-463.2, 1838.0, 8, 11, 90, 170], [-462.9, 1837.2, 4, 11, 90, 170], [-462.7, 1836.5, 12, 11, 90, 170], [-462.6, 1835.7, 12, 11, 90, 170], [-462.4, 1834.9, 7, 11, 90, 170], [-462.4, 1834.0, 7, 11, 90, 170], [-462.3, 1833.2, 6, 11, 90, 170], [-462.4, 1832.3, 12, 11, 90, 170], [-462.5, 1831.5, 6, 11, 90, 170], [-462.6, 1830.6, 5, 11, 90, 170], [-462.8, 1829.7, 11, 11, 90, 170], [-463.1, 1828.9, 7, 11, 90, 170], [-463.3, 1828.0, 11, 11, 90, 170], [-463.7, 1827.2, 10, 11, 90, 170], [-464.1, 1826.4, 4, 11, 90, 170], [-464.5, 1825.7, 4, 11, 90, 170], [-465.0, 1825.0, 6, 11, 90, 170], [-465.5, 1824.4, 12, 11, 90, 170], [-466.0, 1823.8, 6, 11, 90, 170], [-466.6, 1823.3, 6, 11, 90, 170], [-467.1, 1822.8, 4, 11, 90, 170], [-467.7, 1822.4, 6, 11, 90, 170], [-468.4, 1822.1, 10, 11, 90, 170], [-469.0, 1821.8, 4, 11, 90, 170], [-469.6, 1821.6, 9, 11, 90, 170], [-470.3, 1821.5, 8, 11, 90, 170], [-470.9, 1821.4, 7, 11, 90, 170], [-471.6, 1821.5, 6, 11, 90, 170], [-472.2, 1821.5, 7, 11, 90, 170], [-472.7, 1821.7, 5, 11, 90, 170], [-473.3, 1821.9, 9, 11, 90, 170], [-473.8, 1822.1, 5, 11, 90, 170], [-474.3, 1822.4, 10, 11, 90, 170], [-474.7, 1822.7, 12, 11, 90, 170], [-475.1, 1823.1, 10, 11, 90, 170], [-475.5, 1823.5, 6, 11, 90, 170], [-475.8, 1823.9, 11, 11, 90, 170], [-476.1, 1824.4, 9, 11, 90, 170], [-476.3, 1824.9, 10, 11, 90, 170], [-476.5, 1825.5, 10, 11, 90, 170], [-476.6, 1826.1, 5, 11, 90, 170], [-476.7, 1826.7, 7, 11, 90, 170], [-476.7, 1827.4, 4, 11, 90, 170], [-476.7, 1828.0, 6, 11, 90, 170], [-476.6, 1828.6, 9, 11, 90, 170], [-476.4, 1829.1, 4, 11, 90, 170], [-476.2, 1829.6, 9, 11, 90, 170], [-475.8, 1829.9, 5, 11, 90, 170], [-475.5, 1830.3, 9, 11, 90, 170], [-475.1, 1830.5, 7, 11, 90, 170], [-474.7, 1830.8, 4, 11, 90, 170], [-474.3, 1830.9, 4, 11, 90, 170], [-473.8, 1831.0, 12, 11, 90, 170], [-473.3, 1830.9, 12, 11, 90, 170], [-472.8, 1830.9, 11, 11, 90, 170], [-472.3, 1830.6, 7, 11, 90, 170], [-471.8, 1830.4, 6, 11, 90, 170], [-471.4, 1830.1, 7, 11, 90, 170], [-470.9, 1829.7, 10, 11, 90, 170]], "rgba": 4278190080, "color": 0, "bounds": [-495.8, 1803.5, 52.80000000000001, 59.59999999999991], "tool": 15, "maskScale": 2.0, "thickness": 2.0}] \ No newline at end of file -- 2.51.2