It was drawing the map mirrored. The X flip came from the setup console's picture of Brewer's Bane, which is an illustration and not a screenshot - the game does not draw it that way round. What the game does: L4GaugeImagePrimitive::Draw plots MoveToAbsolute(dest->x, dest->z), so the screen axes are view-space X and Z, and the graphics view's origin is bottom left with Y increasing upward - BackgroundLine draws endpoints.bottomLeft to endpoints.topRight, and the port's zero-degree blit is documented with the origin in the bottom left corner. So +X runs right and +Z runs up. Also added the heading the real display has. NavDisplay centres on the vehicle and turns with it, inverting the viewer's transform and taking yaw only unless rockAndRoll is set; the viewer defaults to heading 0, which is the north-up case, and Q/E/R turn it. Panning and dragging now work in what you see rather than in world axes, so up stays up when the map is turned. TRACKS.html is left following the console pictures on purpose: nine of those cards are the console pictures, so the reconstructed nine have to sit beside them consistently. The two disagree by a mirror and each is right for what it is, which both READMEs now say.
398 lines
323 KiB
HTML
398 lines
323 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Red Planet map viewer</title>
|
|
<style>*, *::before, *::after { box-sizing: border-box; }
|
|
|
|
:root {
|
|
/* Chrome only. Everything inside the screen is painted from the game's
|
|
own palette (secpal.pcc) and must not be tinted by any of this. */
|
|
--chrome: #17181a;
|
|
--panel: #1e2023;
|
|
--rule: #2f3237;
|
|
--ink: #e6e4e0;
|
|
--ink-mid: #9aa0a6;
|
|
--ink-low: #6d737a;
|
|
--accent: #bf9300; /* palette 56, the map's own amber */
|
|
--mono: ui-monospace, "Cascadia Mono", Consolas, "SF Mono", Menlo, monospace;
|
|
}
|
|
|
|
html, body { height: 100%; }
|
|
body {
|
|
margin: 0; background: var(--chrome); color: var(--ink);
|
|
font: 400 13px/1.5 var(--mono); overflow: hidden;
|
|
display: grid; grid-template-columns: 1fr 17rem;
|
|
}
|
|
|
|
/* The screen. Background is palette index 0 - black - so the chrome must
|
|
not bleed into it: this is what the gauge actually draws onto. */
|
|
#screen { position: relative; background: #000; overflow: hidden; }
|
|
#view { display: block; width: 100%; height: 100%; touch-action: none; cursor: grab; }
|
|
#view:active { cursor: grabbing; }
|
|
|
|
#scale {
|
|
position: absolute; left: 1rem; bottom: 1rem;
|
|
display: flex; align-items: center; gap: .5rem;
|
|
color: var(--ink-mid); font-size: 11px; letter-spacing: .08em;
|
|
text-shadow: 0 0 4px #000, 0 0 4px #000;
|
|
}
|
|
#barline { height: 0; border-top: 2px solid var(--ink-mid); }
|
|
|
|
aside {
|
|
background: var(--panel); border-left: 1px solid var(--rule);
|
|
padding: 1rem; overflow-y: auto;
|
|
display: flex; flex-direction: column; gap: 1rem;
|
|
}
|
|
|
|
h1 { font: 700 15px/1.2 var(--mono); margin: 0; letter-spacing: .02em; }
|
|
#key { color: var(--ink-low); font-size: 11px; letter-spacing: .14em; margin: .2rem 0 0; }
|
|
|
|
select {
|
|
width: 100%; font: 400 12px var(--mono); padding: .45rem .5rem;
|
|
background: var(--chrome); color: var(--ink); border: 1px solid var(--rule);
|
|
}
|
|
select:focus-visible, #view:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
|
|
|
|
dl#stats {
|
|
margin: 0; display: grid; grid-template-columns: 1fr auto;
|
|
gap: .3rem .75rem; font-size: 12px;
|
|
}
|
|
dl#stats dt { color: var(--ink-low); }
|
|
dl#stats dd {
|
|
margin: 0; text-align: right; color: var(--ink);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
.note {
|
|
border-top: 1px solid var(--rule); padding-top: .8rem;
|
|
color: var(--ink-low); font-size: 11px; line-height: 1.6;
|
|
}
|
|
.note b { color: var(--ink-mid); font-weight: 500; }
|
|
|
|
kbd {
|
|
display: inline-block; min-width: 1.5em; text-align: center;
|
|
border: 1px solid var(--rule); border-bottom-width: 2px;
|
|
padding: .1em .35em; margin-right: .15em; border-radius: 3px;
|
|
background: var(--chrome); color: var(--ink-mid); font: 400 11px var(--mono);
|
|
}
|
|
.keys { display: grid; grid-template-columns: auto 1fr; gap: .35rem .6rem; font-size: 11px; }
|
|
.keys span:nth-child(even) { color: var(--ink-low); align-self: center; }
|
|
|
|
@media (max-width: 700px) {
|
|
body { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
|
|
aside { border-left: 0; border-top: 1px solid var(--rule); max-height: 45vh; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="screen">
|
|
<canvas id="view" tabindex="0" aria-label="Track map"></canvas>
|
|
<div id="scale"><span id="barline"></span><span id="bartext"></span></div>
|
|
</div>
|
|
|
|
<aside>
|
|
<div>
|
|
<h1 id="name">—</h1>
|
|
<p id="key"></p>
|
|
</div>
|
|
|
|
<select id="track" aria-label="Track"></select>
|
|
|
|
<dl id="stats"></dl>
|
|
|
|
<div class="note">
|
|
<div class="keys">
|
|
<span><kbd>↑</kbd><kbd>↓</kbd><kbd>←</kbd><kbd>→</kbd></span><span>pan N/S/E/W</span>
|
|
<span><kbd>+</kbd><kbd>-</kbd></span><span>zoom</span>
|
|
<span><kbd>[</kbd><kbd>]</kbd></span><span>previous / next track</span>
|
|
<span><kbd>Q</kbd><kbd>E</kbd></span><span>turn the map ±15°</span>
|
|
<span><kbd>R</kbd></span><span>heading back to zero</span>
|
|
<span><kbd>F</kbd></span><span>fit the course</span>
|
|
<span><kbd>A</kbd></span><span>fit everything, strays included</span>
|
|
<span><kbd>G</kbd></span><span>GPS / NavDisplay LOD</span>
|
|
</div>
|
|
</div>
|
|
|
|
<p class="note"><b>Dropped by LOD</b> counts what the map screen does not draw
|
|
at all. <code>L4GaugeImage::Draw</code> takes the first LOD whose scale is at
|
|
least the LOD value and draws <em>nothing</em> once the value runs past the
|
|
largest, so objects vanish rather than simplify. Worth knowing what the data
|
|
does with that: every placement in every track is the same model,
|
|
<code>cn3</code>, and it carries one LOD at scale 1000. So the count stays at
|
|
zero until you pass 1000 m/px, when the whole track disappears at once. The
|
|
rule is the engine's; this content just never leans on it.</p>
|
|
|
|
<p class="note"><b>NavDisplay</b> sets its LOD from the zoom
|
|
(<code>LODIndex = metersPerPixel</code>), which is the pannable radar screen,
|
|
448×416 in <code>L4GAUGE.CFG</code>. <b>GPS</b> is the little 125×203
|
|
panel whose LOD the config pins at 1.0 however far out it is scaled.</p>
|
|
|
|
<p class="note">Colours are the game's own: palette indices resolved through
|
|
<code>secpal.pcc</code>, the palette the pod's secondary port is configured
|
|
with. The walls are grey because index 51 is grey.</p>
|
|
|
|
<p class="note"><b>+X runs right and +Z runs up</b>, which is the engine's
|
|
projection and not a choice: <code>L4GaugeImagePrimitive::Draw</code> plots
|
|
<code>(dest->x, dest->z)</code>, and the graphics view has its origin at
|
|
the bottom left with Y increasing upward. Note the setup console's own
|
|
pictures of the tracks are <em>mirrored</em> against this — they are
|
|
illustrations, not screenshots. The plans in <code>TRACKS.html</code> follow
|
|
the console pictures so the drawn and reconstructed cards agree with each
|
|
other; this viewer follows the game.</p>
|
|
|
|
<p class="note"><b>Heading.</b> The real nav display centres on your vehicle
|
|
and turns with it — it inverts the viewer's transform, taking yaw only
|
|
unless <code>rockAndRoll</code> is set. Free panning at heading 0 is the
|
|
north-up case; <kbd>Q</kbd> and <kbd>E</kbd> turn the map to see what it looks
|
|
like underway.</p>
|
|
</aside>
|
|
|
|
<script id="data" type="application/json">{"images":{"89":{"v":[[0.0,0.0,5.0],[0.0,0.0,-5.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,1]}]}],"n":"lrivet"},"93":{"v":[[0.0,0.0,5.0],[0.0,0.0,-5.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,1]}]}],"n":"mrivet"},"97":{"v":[[0.0,0.0,5.0],[0.0,0.0,-5.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,1]}]}],"n":"hrivet"},"107":{"v":[[-5.0,0.0,5.0],[5.0,0.0,5.0],[5.0,0.0,-5.0],[-5.0,0.0,-5.0],[-5.0,0.0,0.0],[5.0,0.0,0.0],[0.0,0.0,-5.0],[0.0,0.0,5.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,2]},{"c":56,"a":0,"i":[1,3]},{"c":30,"a":0,"i":[4,5]},{"c":30,"a":0,"i":[6,7]}]}],"n":"demopack"},"112":{"v":[[-5.0,0.0,5.0],[5.0,0.0,5.0],[5.0,0.0,-5.0],[-5.0,0.0,-5.0],[-5.0,0.0,0.0],[5.0,0.0,0.0],[0.0,0.0,-5.0],[0.0,0.0,5.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,2]},{"c":56,"a":0,"i":[1,3]},{"c":41,"a":0,"i":[4,5]},{"c":41,"a":0,"i":[6,7]}]}],"n":"demo2"},"115":{"v":[[-5.0,0.0,5.0],[5.0,0.0,5.0],[5.0,0.0,-5.0],[-5.0,0.0,-5.0],[-5.0,0.0,0.0],[5.0,0.0,0.0],[0.0,0.0,-5.0],[0.0,0.0,5.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,2]},{"c":56,"a":0,"i":[1,3]},{"c":30,"a":0,"i":[4,5]},{"c":30,"a":0,"i":[6,7]}]}],"n":"demo3"},"132":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"lepton"},"143":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"proton"},"154":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"quark"},"166":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"bug"},"177":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"speck"},"189":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"chigger"},"200":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"flea"},"212":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"skeeter"},"223":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"roach"},"234":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"wasp"},"246":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"mule"},"257":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"broccoli"},"270":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"vole"},"281":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"burro"},"292":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"grunt"},"303":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"barge"},"316":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"bttlbrg"},"326":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"gator"},"338":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"bull"},"349":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"tarntula"},"361":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"spitter"},"372":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"roadblk"},"383":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"ripper"},"394":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"mantis"},"407":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"puck"},"419":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"dragon"},"430":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"blktrn"},"441":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"blkspk"},"447":{"v":[[40.0,0.0,40.0],[40.0,0.0,-40.0],[-40.0,0.0,-40.0],[-40.0,0.0,40.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,1,2,3,0]}]}],"n":"sc50"},"455":{"v":[[75.0,0.0,24.0],[25.0,0.0,24.0],[25.0,0.0,-25.0],[75.0,0.0,-25.0],[-25.0,0.0,24.0],[-75.0,0.0,24.0],[-75.0,0.0,-25.0],[-25.0,0.0,-25.0],[0.0,0.0,0.0],[-25.0,0.0,-12.0],[-25.0,0.0,10.0],[25.0,0.0,10.0],[25.0,0.0,-12.0],[75.0,0.0,20.0],[75.0,0.0,-22.0],[-75.0,0.0,-22.0],[-75.0,0.0,20.0]],"l":[{"s":5.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":26,"a":0,"i":[8,9,10,8]},{"c":26,"a":0,"i":[8,11,12,8]}]},{"s":50000.0,"p":[{"c":26,"a":0,"i":[8,13,14,8]},{"c":26,"a":0,"i":[8,15,16,8]}]}],"n":"drw"},"459":{"v":[[75.0,0.0,24.0],[25.0,0.0,24.0],[25.0,0.0,-25.0],[75.0,0.0,-25.0],[-25.0,0.0,24.0],[-75.0,0.0,24.0],[-75.0,0.0,-25.0],[-25.0,0.0,-25.0],[0.0,0.0,0.0],[-25.0,0.0,-12.0],[-25.0,0.0,10.0],[25.0,0.0,10.0],[25.0,0.0,-12.0],[75.0,0.0,20.0],[75.0,0.0,-22.0],[-75.0,0.0,-22.0],[-75.0,0.0,20.0]],"l":[{"s":5.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":26,"a":0,"i":[8,9,10,8]},{"c":26,"a":0,"i":[8,11,12,8]}]},{"s":50000.0,"p":[{"c":26,"a":0,"i":[8,13,14,8]},{"c":26,"a":0,"i":[8,15,16,8]}]}],"n":"drw2"},"478":{"v":[[400.0,0.0,400.0],[-400.0,0.0,400.0],[-400.0,0.0,-400.0],[400.0,0.0,-400.0],[240.0,0.0,150.0],[-240.0,0.0,150.0],[-240.0,0.0,-240.0],[240.0,0.0,-240.0],[25.0,0.0,250.0],[10.0,0.0,100.0],[25.0,0.0,100.0],[55.0,0.0,250.0],[55.0,0.0,100.0],[70.0,0.0,100.0],[25.0,0.0,0.0],[17.68,0.0,17.68],[-0.0,0.0,25.0],[-17.68,0.0,17.68],[-25.0,0.0,0.0],[-17.68,0.0,-17.68],[0.0,0.0,-25.0],[17.68,0.0,-17.68],[190.0,0.0,-85.0],[240.0,0.0,-85.0],[240.0,0.0,-55.0],[190.0,0.0,-55.0],[135.0,0.0,-240.0],[165.0,0.0,-240.0],[165.0,0.0,-190.0],[135.0,0.0,-190.0],[55.0,0.0,-240.0],[85.0,0.0,-240.0],[85.0,0.0,-190.0],[55.0,0.0,-190.0],[-55.0,0.0,-240.0],[-85.0,0.0,-240.0],[-85.0,0.0,-190.0],[-55.0,0.0,-190.0],[-165.0,0.0,-240.0],[-135.0,0.0,-240.0],[-135.0,0.0,-190.0],[-165.0,0.0,-190.0],[-240.0,0.0,-165.0],[-190.0,0.0,-165.0],[-190.0,0.0,-135.0],[-240.0,0.0,-135.0],[-240.0,0.0,-85.0],[-190.0,0.0,-85.0],[-190.0,0.0,-55.0],[-240.0,0.0,-55.0],[-240.0,0.0,85.0],[-190.0,0.0,85.0],[-190.0,0.0,55.0],[-240.0,0.0,55.0],[240.0,0.0,85.0],[190.0,0.0,85.0],[190.0,0.0,55.0],[240.0,0.0,55.0],[240.0,0.0,-165.0],[190.0,0.0,-165.0],[190.0,0.0,-135.0],[240.0,0.0,-135.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":24,"a":0,"i":[8,9,10,8]},{"c":24,"a":0,"i":[11,12,13,11]},{"c":28,"a":0,"i":[14,15,16,17,18,19,20,21,14]},{"c":51,"a":0,"i":[22,23,24,25,22]},{"c":51,"a":0,"i":[26,27,28,29,26]},{"c":51,"a":0,"i":[30,31,32,33,30]},{"c":51,"a":0,"i":[34,35,36,37,34]},{"c":51,"a":0,"i":[38,39,40,41,38]},{"c":51,"a":0,"i":[42,43,44,45,42]},{"c":51,"a":0,"i":[46,47,48,49,46]},{"c":51,"a":0,"i":[50,51,52,53,50]},{"c":51,"a":0,"i":[54,55,56,57,54]},{"c":51,"a":0,"i":[58,59,60,61,58]}]}],"n":"wh6"},"490":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn2"},"497":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0],[27.9,0.0,-50.0],[27.41,0.0,50.0],[24.0,0.0,50.0],[24.0,0.0,-50.0],[-22.5,0.0,-50.0],[-22.5,0.0,50.0],[-25.71,0.0,50.0],[-25.71,0.0,-50.0]],"l":[{"s":10.0,"p":[{"c":30,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn5"},"509":{"v":[[0.0,0.0,8.14],[-5.76,0.0,5.76],[-8.14,0.0,0.0],[-5.76,0.0,-5.76],[-0.0,0.0,-8.14],[5.76,0.0,-5.76],[8.14,0.0,-0.0],[5.76,0.0,5.76]],"l":[{"s":1000.0,"p":[{"c":28,"a":0,"i":[0,1,2,3,4,5,6,7,0]}]}],"n":"ft1"},"513":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,0.0],[30.0,0.0,0.0]],"l":[{"s":5000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"oa1"},"516":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0],[27.9,0.0,-50.0],[27.41,0.0,50.0],[24.0,0.0,50.0],[24.0,0.0,-50.0],[-22.5,0.0,-50.0],[-22.5,0.0,50.0],[-25.71,0.0,50.0],[-25.71,0.0,-50.0]],"l":[{"s":10.0,"p":[{"c":30,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn1"},"519":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn4"},"524":{"v":[[44.5,0.0,47.5],[19.5,0.0,47.5],[19.5,0.0,52.5],[44.5,0.0,52.5],[-44.5,0.0,52.5],[-19.5,0.0,52.5],[-19.5,0.0,47.5],[-44.5,0.0,47.5]],"l":[{"s":1000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]}]}],"n":"cn3"},"528":{"v":[[25.0,0.0,25.0],[-25.0,0.0,25.0],[-15.0,0.0,-25.0],[15.0,0.0,-25.0],[51.0,0.0,25.0],[51.0,0.0,27.0],[-50.0,0.0,27.0],[-50.0,0.0,25.0]],"l":[{"s":10.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[4,7,2,3,4]}]}],"n":"cre"},"532":{"v":[[15.0,0.0,50.0],[-15.0,0.0,50.0],[-15.0,0.0,-50.0],[15.0,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cr4"},"541":{"v":[[15.0,0.0,-35.0],[-15.0,0.0,-35.0],[-15.0,0.0,-41.0],[15.0,0.0,-41.0],[6.0,0.0,44.0],[5.0,0.0,47.0],[1.0,0.0,47.0],[-1.0,0.0,44.0],[-1.0,0.0,-35.0],[6.0,0.0,-35.0],[15.0,0.0,-18.0],[22.0,0.0,-18.0],[22.0,0.0,44.0],[15.0,0.0,44.0],[15.0,0.0,50.0],[-15.0,0.0,50.0],[-15.0,0.0,35.0],[-10.0,0.0,25.0],[-10.0,0.0,0.0],[-15.0,0.0,-10.0],[-15.0,0.0,-50.0],[15.0,0.0,-50.0]],"l":[{"s":5.0,"p":[{"c":30,"a":0,"i":[0,1,2,3,0]},{"c":30,"a":0,"i":[4,5,6,7,8,9,4]},{"c":51,"a":0,"i":[10,11,12,13,14,15,16,17,18,19,20,21,10]}]},{"s":100.0,"p":[{"c":51,"a":0,"i":[10,11,12,13,14,15,16,17,18,19,20,21,10]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[14,15,20,21,14]}]}],"n":"cr1"},"547":{"v":[[15.0,0.0,40.0],[-15.0,0.0,40.0],[-15.0,0.0,36.0],[15.0,0.0,36.0],[15.0,0.0,4.0],[-15.0,0.0,4.0],[-15.0,0.0,1.0],[15.0,0.0,1.0],[15.0,0.0,-29.0],[-15.0,0.0,-29.0],[-15.0,0.0,-39.0],[15.0,0.0,-39.0],[15.0,0.0,50.0],[-15.0,0.0,50.0],[-15.0,0.0,-50.0],[15.0,0.0,-50.0]],"l":[{"s":10.0,"p":[{"c":30,"a":0,"i":[0,1,2,3,0]},{"c":30,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,8]},{"c":51,"a":0,"i":[12,13,14,15,12]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[12,13,14,15,12]}]}],"n":"cr2"},"551":{"v":[[50.0,0.0,50.0],[-50.0,0.0,50.0],[-50.0,0.0,-50.0],[50.0,0.0,-50.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"oa3"},"557":{"v":[[0.0,0.0,4.07],[-2.88,0.0,2.88],[-4.07,0.0,0.0],[-2.88,0.0,-2.88],[-0.0,0.0,-4.07],[2.88,0.0,-2.88],[4.07,0.0,-0.0],[2.88,0.0,2.88]],"l":[{"s":100.0,"p":[{"c":28,"a":0,"i":[0,1,2,3,4,5,6,7,0]}]}],"n":"ct1"},"564":{"v":[[52.0,0.0,5.25],[52.0,0.0,-5.25],[-52.0,0.0,-5.25],[-52.0,0.0,5.25]],"l":[{"s":10.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"trs"},"570":{"v":[[225.0,0.0,104.0],[225.0,0.0,-105.0],[-225.0,0.0,-105.0],[-225.0,0.0,104.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,1,2,3,0]}]}],"n":"sc500a"},"585":{"v":[[20.0,0.0,-120.0],[0.0,0.0,-120.0],[0.0,0.0,-140.0],[20.0,0.0,-140.0],[-20.0,0.0,80.0],[-20.0,0.0,-160.0],[-10.0,0.0,-160.0],[-10.0,0.0,80.0],[20.0,0.0,95.0],[10.0,0.0,95.0],[10.0,0.0,-125.0],[20.0,0.0,-125.0],[65.0,0.0,-100.0],[-60.0,0.0,-100.0],[-60.0,0.0,-200.0],[65.0,0.0,-200.0]],"l":[{"s":5.0,"p":[{"c":24,"a":0,"i":[0,1,2,3,0]},{"c":28,"a":0,"i":[4,5,6,7,4]},{"c":28,"a":0,"i":[8,9,10,11,8]},{"c":51,"a":0,"i":[12,13,14,15,12]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[12,13,14,15,12]}]}],"n":"od3"},"594":{"v":[[50.0,0.0,100.0],[-50.0,0.0,100.0],[-50.0,0.0,-100.0],[50.0,0.0,-100.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"br2"},"598":{"v":[[5.0,0.0,82.5],[-5.0,0.0,82.5],[-5.0,0.0,-82.5],[5.0,0.0,-82.5]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"rl2"},"602":{"v":[[5.0,0.0,40.0],[5.0,0.0,-40.0],[-5.0,0.0,-40.0],[-5.0,0.0,40.0]],"l":[{"s":10.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"br1"},"606":{"v":[[0.0,0.0,2.25],[1.59,0.0,1.59],[2.25,0.0,0.0],[1.59,0.0,-1.59],[0.0,0.0,-2.25],[-1.59,0.0,-1.59],[-2.25,0.0,0.0],[-1.59,0.0,1.59]],"l":[{"s":100000.0,"p":[{"c":30,"a":0,"i":[0,1,2,3,4,5,6,7,0]}]}],"n":"cl1"},"616":{"v":[[5.0,0.0,25.0],[5.0,0.0,-25.0],[-5.0,0.0,-25.0],[-5.0,0.0,25.0]],"l":[{"s":10.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"br3"},"620":{"v":[[-50.0,0.0,20.0],[-50.0,0.0,-20.0],[50.0,0.0,-20.0],[50.0,0.0,20.0],[25.0,0.0,-50.0],[55.0,0.0,-20.0],[55.0,0.0,20.0],[25.0,0.0,50.0],[25.0,0.0,100.0],[-25.0,0.0,100.0],[-25.0,0.0,50.0],[-55.0,0.0,20.0],[-55.0,0.0,-20.0],[-25.0,0.0,-50.0],[-25.0,0.0,-100.0],[25.0,0.0,-100.0],[-35.0,0.0,-15.0],[-25.0,0.0,15.0],[-45.0,0.0,15.0],[35.0,0.0,15.0],[45.0,0.0,-15.0],[25.0,0.0,-15.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,8,9,10,11,12,13,14,15,4]},{"c":25,"a":0,"i":[16,17,18,16]},{"c":25,"a":0,"i":[19,20,21,19]}]}],"n":"gr2"},"625":{"v":[[400.0,0.0,400.0],[-400.0,0.0,400.0],[-400.0,0.0,-400.0],[400.0,0.0,-400.0],[240.0,0.0,150.0],[-240.0,0.0,150.0],[-240.0,0.0,-240.0],[240.0,0.0,-240.0],[20.0,0.0,375.0],[5.0,0.0,335.0],[20.0,0.0,335.0],[60.0,0.0,375.0],[60.0,0.0,335.0],[75.0,0.0,335.0],[25.0,0.0,0.0],[17.68,0.0,17.68],[-0.0,0.0,25.0],[-17.68,0.0,17.68],[-25.0,0.0,0.0],[-17.68,0.0,-17.68],[0.0,0.0,-25.0],[17.68,0.0,-17.68]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":24,"a":0,"i":[8,9,10,8]},{"c":24,"a":0,"i":[11,12,13,11]},{"c":28,"a":0,"i":[14,15,16,17,18,19,20,21,14]}]}],"n":"wh5"},"629":{"v":[[0.0,0.0,8.96],[-6.33,0.0,6.33],[-8.96,0.0,0.0],[-6.33,0.0,-6.33],[-0.0,0.0,-8.96],[6.33,0.0,-6.33],[8.96,0.0,-0.0],[6.34,0.0,6.33]],"l":[{"s":2000.0,"p":[{"c":28,"a":0,"i":[0,1,2,3,4,5,6,7,0]}]}],"n":"pm1"},"637":{"v":[[400.0,0.0,400.0],[-400.0,0.0,400.0],[-400.0,0.0,-400.0],[400.0,0.0,-400.0],[150.0,0.0,150.0],[-150.0,0.0,150.0],[-150.0,0.0,-150.0],[150.0,0.0,-150.0],[15.0,0.0,370.0],[0.0,0.0,330.0],[15.0,0.0,330.0],[65.0,0.0,370.0],[65.0,0.0,330.0],[80.0,0.0,330.0],[25.0,0.0,0.0],[17.68,0.0,17.68],[-0.0,0.0,25.0],[-17.68,0.0,17.68],[-25.0,0.0,0.0],[-17.68,0.0,-17.68],[0.0,0.0,-25.0],[17.68,0.0,-17.68]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":24,"a":0,"i":[8,9,10,8]},{"c":24,"a":0,"i":[11,12,13,11]},{"c":28,"a":0,"i":[14,15,16,17,18,19,20,21,14]}]}],"n":"wt1"},"641":{"v":[[-5.5,0.0,-28.5],[5.5,0.0,-28.5],[5.5,0.0,19.0],[-2.5,0.0,28.5],[-5.5,0.0,28.5]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,4,0]}]}],"n":"cq1"},"645":{"v":[[55.0,0.0,50.0],[-55.0,0.0,50.0],[-55.0,0.0,-75.0],[55.0,0.0,-75.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"vm1"},"649":{"v":[[5.0,0.0,40.0],[-5.0,0.0,40.0],[-5.0,0.0,-40.0],[5.0,0.0,-40.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"rl1"},"653":{"v":[[50.0,0.0,50.0],[-50.0,0.0,50.0],[-50.0,0.0,-50.0],[50.0,0.0,-50.0],[40.0,0.0,50.0],[-40.0,0.0,50.0],[-15.0,0.0,-50.0],[15.0,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":23,"a":0,"i":[4,5,6,7,4]}]}],"n":"me1"},"662":{"v":[[10.0,0.0,50.0],[-10.0,0.0,50.0],[-10.0,0.0,-50.0],[10.0,0.0,-50.0]],"l":[{"s":50000.0,"p":[{"c":23,"a":0,"i":[0,1,2,3,0]}]}],"n":"md4"},"666":{"v":[[10.0,0.0,50.0],[-10.0,0.0,50.0],[-10.0,0.0,-50.0],[10.0,0.0,-50.0]],"l":[{"s":50000.0,"p":[{"c":23,"a":0,"i":[0,1,2,3,0]}]}],"n":"md3"},"683":{"v":[[60.0,0.0,50.0],[-55.0,0.0,50.0],[-55.0,0.0,30.0],[60.0,0.0,30.0]],"l":[{"s":10000.0,"p":[{"c":24,"a":0,"i":[0,1,2,3,0]}]}],"n":"hv5"},"687":{"v":[[60.0,0.0,50.0],[-55.0,0.0,50.0],[-55.0,0.0,-75.0],[60.0,0.0,-75.0],[40.0,0.0,20.0],[10.0,0.0,20.0],[-30.0,0.0,0.0],[-30.0,0.0,-20.0],[10.0,0.0,-35.0],[10.0,0.0,-55.0],[40.0,0.0,-55.0]],"l":[{"s":10.0,"p":[{"c":22,"a":0,"i":[0,1,2,3,0]},{"c":22,"a":0,"i":[4,5,6,7,8,9,10,4]}]},{"s":50000.0,"p":[{"c":22,"a":0,"i":[0,1,2,3,0]}]}],"n":"pl1"},"691":{"v":[[20.0,0.0,100.0],[-20.0,0.0,100.0],[-20.0,0.0,-100.0],[20.0,0.0,-100.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cr6"},"695":{"v":[[15.0,0.0,50.0],[-15.0,0.0,50.0],[-20.0,0.0,-50.0],[20.0,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cr5"},"708":{"v":[[325.0,0.0,325.0],[-300.0,0.0,325.0],[-300.0,0.0,-325.0],[325.0,0.0,-325.0],[75.0,0.0,75.0],[-50.0,0.0,75.0],[-50.0,0.0,-75.0],[75.0,0.0,-75.0],[-30.0,0.0,75.0],[-30.0,0.0,35.0],[-15.0,0.0,35.0],[-65.0,0.0,35.0],[-50.0,0.0,35.0],[25.0,0.0,0.0],[17.68,0.0,17.68],[-0.0,0.0,25.0],[-17.68,0.0,17.68],[-25.0,0.0,0.0],[-17.68,0.0,-17.68],[0.0,0.0,-25.0],[17.68,0.0,-17.68]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":24,"a":0,"i":[8,9,10,8]},{"c":24,"a":0,"i":[5,11,12,5]},{"c":28,"a":0,"i":[13,14,15,16,17,18,19,20,13]}]}],"n":"wh2"},"717":{"v":[[-30.0,0.0,55.0],[-155.0,0.0,5.0],[-145.0,0.0,-20.0],[-20.0,0.0,30.0],[50.0,0.0,-40.0],[-135.0,0.0,-115.0],[-120.0,0.0,-150.0],[65.0,0.0,-75.0],[100.0,0.0,15.0],[-10.0,0.0,-30.0],[25.0,0.0,-115.0],[135.0,0.0,-70.0],[40.0,0.0,90.0],[-70.0,0.0,45.0],[-25.0,0.0,-65.0],[85.0,0.0,-20.0],[-170.0,0.0,5.0],[-125.0,0.0,-105.0],[-80.0,0.0,-55.0],[-45.0,0.0,-140.0]],"l":[{"s":2.0,"p":[{"c":28,"a":0,"i":[0,1,2,3,0]},{"c":28,"a":0,"i":[4,5,6,7,4]},{"c":28,"a":0,"i":[8,9,10,11,8]},{"c":28,"a":0,"i":[12,13,14,15,12]}]},{"s":50000.0,"p":[{"c":28,"a":0,"i":[12,16,17,15,12]},{"c":28,"a":0,"i":[8,18,19,11,8]}]}],"n":"rf1"},"721":{"v":[[50.0,0.0,50.0],[-50.0,0.0,50.0],[-50.0,0.0,-50.0],[50.0,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cr7"},"725":{"v":[[-50.0,0.0,15.0],[-45.0,0.0,-15.0],[-35.0,0.0,-45.0],[-10.0,0.0,-50.0],[10.0,0.0,-50.0],[30.0,0.0,-35.0],[45.0,0.0,-15.0],[50.0,0.0,50.0],[-50.0,0.0,50.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,4,5,6,7,8,0]}]}],"n":"cc1"},"734":{"v":[[-15.0,0.0,9.0],[-27.0,0.0,-3.0],[-27.0,0.0,-36.0],[-15.0,0.0,-48.0],[15.0,0.0,50.0],[-15.0,0.0,50.0],[-15.0,0.0,-50.0],[15.0,0.0,-50.0],[-6.0,0.0,4.0],[-4.0,0.0,1.0],[4.0,0.0,1.0],[8.0,0.0,6.0],[8.0,0.0,40.0],[4.0,0.0,44.0],[-4.0,0.0,44.0],[-6.0,0.0,40.0],[-15.0,0.0,40.0],[-15.0,0.0,4.0]],"l":[{"s":10.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,12,13,14,15,16,17,8]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[4,5,6,7,4]}]}],"n":"cr3"},"743":{"v":[[-87.0,0.0,-34.0],[11.0,0.0,-34.0],[11.0,0.0,34.0],[-87.0,0.0,34.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cq2"},"748":{"v":[[400.0,0.0,400.0],[-400.0,0.0,400.0],[-400.0,0.0,-400.0],[400.0,0.0,-400.0],[150.0,0.0,150.0],[-150.0,0.0,150.0],[-150.0,0.0,-150.0],[150.0,0.0,-150.0],[20.0,0.0,150.0],[5.0,0.0,110.0],[20.0,0.0,110.0],[60.0,0.0,150.0],[60.0,0.0,110.0],[75.0,0.0,110.0],[25.0,0.0,0.0],[17.68,0.0,17.68],[-0.0,0.0,25.0],[-17.68,0.0,17.68],[-25.0,0.0,0.0],[-17.68,0.0,-17.68],[0.0,0.0,-25.0],[17.68,0.0,-17.68]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":24,"a":0,"i":[8,9,10,8]},{"c":24,"a":0,"i":[11,12,13,11]},{"c":28,"a":0,"i":[14,15,16,17,18,19,20,21,14]}]}],"n":"wh1"},"752":{"v":[[5.0,0.0,105.0],[-5.0,0.0,105.0],[-5.0,0.0,-105.0],[5.0,0.0,-105.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"rl3"},"760":{"v":[[0.0,0.0,8.14],[-5.76,0.0,5.76],[-8.14,0.0,0.0],[-5.76,0.0,-5.76],[-0.0,0.0,-8.14],[5.76,0.0,-5.76],[8.14,0.0,-0.0],[5.76,0.0,5.76]],"l":[{"s":1000.0,"p":[{"c":28,"a":0,"i":[0,1,2,3,4,5,6,7,0]}]}],"n":"ft2"},"767":{"v":[[5.0,0.0,69.3],[-5.0,0.0,69.3],[-5.0,0.0,-69.3],[5.0,0.0,-69.3]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"rp3"},"773":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0],[27.9,0.0,-50.0],[27.41,0.0,50.0],[24.0,0.0,50.0],[24.0,0.0,-50.0],[-22.5,0.0,-50.0],[-22.5,0.0,50.0],[-25.71,0.0,50.0],[-25.71,0.0,-50.0]],"l":[{"s":10.0,"p":[{"c":30,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn7"},"777":{"v":[[-25.0,0.0,-15.0],[25.0,0.0,-15.0],[25.0,0.0,-10.0],[10.0,0.0,15.0],[-10.0,0.0,15.0],[-25.0,0.0,-10.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,4,5,0]}]}],"n":"bp1"},"784":{"v":[[44.5,0.0,60.0],[-44.5,0.0,60.0],[-44.5,0.0,-50.0],[44.5,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn6"},"791":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cr8"},"797":{"v":[[22.5,0.0,75.0],[22.5,0.0,-75.0],[19.56,0.0,-93.54],[11.04,0.0,-110.27],[-2.23,0.0,-123.54],[-18.96,0.0,-132.06],[-37.5,0.0,-135.0],[-56.04,0.0,-132.06],[-72.77,0.0,-123.54],[-86.04,0.0,-110.27],[-94.56,0.0,-93.54],[-97.5,0.0,-75.0],[-94.56,0.0,-56.46],[-22.5,0.0,75.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,0]}]}],"n":"wh9"},"803":{"v":[[5.0,0.0,40.0],[5.0,0.0,-40.0],[-5.0,0.0,-40.0],[-5.0,0.0,40.0]],"l":[{"s":10.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"br1a"},"821":{"v":[[15.0,0.0,-35.0],[-15.0,0.0,-35.0],[-15.0,0.0,-41.0],[15.0,0.0,-41.0],[6.0,0.0,44.0],[5.0,0.0,47.0],[1.0,0.0,47.0],[-1.0,0.0,44.0],[-1.0,0.0,-35.0],[6.0,0.0,-35.0],[15.0,0.0,-18.0],[22.0,0.0,-18.0],[22.0,0.0,44.0],[15.0,0.0,44.0],[15.0,0.0,50.0],[-15.0,0.0,50.0],[-15.0,0.0,35.0],[-10.0,0.0,25.0],[-10.0,0.0,0.0],[-15.0,0.0,-10.0],[-15.0,0.0,-50.0],[15.0,0.0,-50.0]],"l":[{"s":5.0,"p":[{"c":51,"a":0,"i":[10,11,12,13,14,15,16,17,18,19,20,21,10]}]},{"s":100.0,"p":[{"c":51,"a":0,"i":[10,11,12,13,14,15,16,17,18,19,20,21,10]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[14,15,20,21,14]}]}],"n":"cr1a"},"826":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0],[27.9,0.0,-50.0],[27.41,0.0,50.0],[24.0,0.0,50.0],[24.0,0.0,-50.0],[-22.5,0.0,-50.0],[-22.5,0.0,50.0],[-25.71,0.0,50.0],[-25.71,0.0,-50.0]],"l":[{"s":10.0,"p":[{"c":30,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn5u"},"829":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0],[27.9,0.0,-50.0],[27.41,0.0,50.0],[24.0,0.0,50.0],[24.0,0.0,-50.0],[-22.5,0.0,-50.0],[-22.5,0.0,50.0],[-25.71,0.0,50.0],[-25.71,0.0,-50.0]],"l":[{"s":10.0,"p":[{"c":30,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn7u"},"833":{"v":[[44.5,0.0,47.5],[19.5,0.0,47.5],[19.5,0.0,52.5],[44.5,0.0,52.5],[-44.5,0.0,52.5],[-19.5,0.0,52.5],[-19.5,0.0,47.5],[-44.5,0.0,47.5]],"l":[{"s":1000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]}]}],"n":"cn3u"},"839":{"v":[[50.0,0.0,100.0],[-50.0,0.0,100.0],[-50.0,0.0,-100.0],[50.0,0.0,-100.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"br4"},"842":{"v":[[50.0,0.0,-150.0],[150.0,0.0,-50.0],[250.0,0.0,-50.0],[250.0,0.0,50.0],[150.0,0.0,50.0],[50.0,0.0,150.0],[50.0,0.0,250.0],[-50.0,0.0,250.0],[-50.0,0.0,150.0],[-150.0,0.0,50.0],[-250.0,0.0,50.0],[-250.0,0.0,-50.0],[-150.0,0.0,-50.0],[-50.0,0.0,-150.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,4,5,8,9,12,13,0]}]}],"n":"bre1"},"852":{"v":[[5.0,0.0,20.0],[-5.0,0.0,20.0],[-5.0,0.0,-20.0],[5.0,0.0,-20.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"rp1"},"856":{"v":[[5.0,0.0,54.45],[-5.0,0.0,54.45],[-5.0,0.0,-54.45],[5.0,0.0,-54.45]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"rp2"},"858":{"v":[[40.0,0.0,40.0],[40.0,0.0,-40.0],[-40.0,0.0,-40.0],[-40.0,0.0,40.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,1,2,3,0]}]}],"n":"sc50a"},"873":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0],[27.9,0.0,-50.0],[27.41,0.0,50.0],[24.0,0.0,50.0],[24.0,0.0,-50.0],[-22.5,0.0,-50.0],[-22.5,0.0,50.0],[-25.71,0.0,50.0],[-25.71,0.0,-50.0]],"l":[{"s":10.0,"p":[{"c":30,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn5n"},"878":{"v":[[0.0,0.0,8.14],[-5.76,0.0,5.76],[-8.14,0.0,0.0],[-5.76,0.0,-5.76],[-0.0,0.0,-8.14],[5.76,0.0,-5.76],[8.14,0.0,-0.0],[5.76,0.0,5.76]],"l":[{"s":1000.0,"p":[{"c":28,"a":0,"i":[0,1,2,3,4,5,6,7,0]}]}],"n":"ft2u"},"881":{"v":[[-50.0,0.0,-50.0],[-150.0,0.0,-150.0],[-150.0,0.0,-250.0],[150.0,0.0,-250.0],[150.0,0.0,-150.0],[50.0,0.0,-50.0],[50.0,0.0,-150.0],[50.0,0.0,-250.0],[-50.0,0.0,-250.0],[-50.0,0.0,-150.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[3,4,5,0,1,2]},{"c":51,"a":0,"i":[6,7,8,9,6]}]}],"n":"gar"},"884":{"v":[[-200.0,0.0,100.0],[0.0,0.0,-100.0],[100.0,0.0,100.0],[300.0,0.0,-100.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1]},{"c":51,"a":0,"i":[2,3]}]}],"n":"gar1"},"887":{"v":[[-200.0,0.0,100.0],[0.0,0.0,-100.0],[300.0,0.0,-100.0],[300.0,0.0,0.0],[100.0,0.0,0.0],[100.0,0.0,100.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,4,5]}]}],"n":"gar2"},"901":{"v":[[-50.0,0.0,150.0],[-150.0,0.0,50.0],[-250.0,0.0,50.0],[-250.0,0.0,-50.0],[-150.0,0.0,-50.0],[-50.0,0.0,-150.0],[50.0,0.0,-150.0],[150.0,0.0,-50.0],[250.0,0.0,-50.0],[250.0,0.0,50.0],[150.0,0.0,50.0],[50.0,0.0,150.0],[-50.0,0.0,50.0],[-50.0,0.0,-50.0],[50.0,0.0,-50.0],[50.0,0.0,50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,4,5,6,7,8,9,10,11,0]}]}],"n":"pit1"},"904":{"v":[[-50.0,0.0,150.0],[-150.0,0.0,50.0],[-250.0,0.0,50.0],[-250.0,0.0,-50.0],[-150.0,0.0,-50.0],[-50.0,0.0,-150.0],[-50.0,0.0,-250.0],[50.0,0.0,-250.0],[50.0,0.0,-150.0],[150.0,0.0,-50.0],[150.0,0.0,50.0],[50.0,0.0,150.0],[-50.0,0.0,50.0],[-50.0,0.0,-50.0],[50.0,0.0,-50.0],[50.0,0.0,50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,4,5,6,7,8,9,10,11,0]}]}],"n":"pit2"},"918":{"v":[[75.0,0.0,24.0],[25.0,0.0,24.0],[25.0,0.0,-25.0],[75.0,0.0,-25.0],[-25.0,0.0,24.0],[-75.0,0.0,24.0],[-75.0,0.0,-25.0],[-25.0,0.0,-25.0],[0.0,0.0,0.0],[-25.0,0.0,-12.0],[-25.0,0.0,10.0],[25.0,0.0,10.0],[25.0,0.0,-12.0],[75.0,0.0,20.0],[75.0,0.0,-22.0],[-75.0,0.0,-22.0],[-75.0,0.0,20.0]],"l":[{"s":5.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":26,"a":0,"i":[8,9,10,8]},{"c":26,"a":0,"i":[8,11,12,8]}]},{"s":50000.0,"p":[{"c":26,"a":0,"i":[8,13,14,8]},{"c":26,"a":0,"i":[8,15,16,8]}]}],"n":"drw_1"},"928":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"blkrspk"},"939":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"blkrquark"},"948":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"blkrbroc"},"955":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"blkrtran"},"982":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"blkrlepton"},"1006":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"blkrpuck"},"1021":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"blkrdragon"},"1036":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"blkrwasp"},"1051":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"dark"},"1062":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"neut"},"1075":{"v":[[-5.0,0.0,5.0],[5.0,0.0,5.0],[5.0,0.0,-5.0],[-5.0,0.0,-5.0],[-5.0,0.0,0.0],[5.0,0.0,0.0],[0.0,0.0,-5.0],[0.0,0.0,5.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,2]},{"c":56,"a":0,"i":[1,3]},{"c":30,"a":0,"i":[4,5]},{"c":30,"a":0,"i":[6,7]}]}],"n":"eject"}},"tracks":[{"key":"wise","name":"Wiseguy's Wake","noart":13,"i":[[524,12.51,3.84,2567.26,0.0,0.0,0.0,1.0],[524,-25.0,20.53,2749.43,0.0,0.0,0.0,1.0],[524,26.92,25.16,2848.15,0.0,-1.0,0.0,0.0],[524,0.0,28.23,2657.0,0.0,0.0,0.0,1.0],[524,0.0,28.23,2702.91,0.0,-1.0,0.0,0.0],[524,-12.25,27.56,644.52,0.0,0.0,0.0,1.0],[524,-12.12,27.56,654.14,0.0,-1.0,0.0,0.0],[524,-29.21,54.32,4069.38,0.0,0.0,0.0,1.0],[524,30.63,54.32,-1538.92,0.0,-1.0,0.0,0.0],[524,40.01,45.0,3880.0,0.0,-1.0,0.0,0.0],[524,16.02,18.18,1249.76,0.0,0.0,0.0,1.0],[524,-14.15,18.18,2350.36,0.0,-1.0,0.0,0.0],[524,-8.15,18.18,2350.36,0.0,-1.0,0.0,0.0],[524,10.82,16.48,154.67,0.0,-1.0,0.0,0.0],[524,10.02,18.18,1249.76,0.0,0.0,0.0,1.0],[524,0.0,5.0,1300.0,0.0,-1.0,0.0,0.0],[524,0.0,2.5,1250.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1200.0,0.0,0.0,0.0,1.0],[524,-8.74,38.3,1144.29,0.0,0.0,0.0,1.0],[524,4.73,6.18,748.06,0.0,0.0,0.0,1.0],[524,4.98,6.27,548.2,0.0,0.0,0.0,1.0],[524,10.0,10.0,825.0,0.0,0.0,0.0,1.0],[524,10.0,10.0,880.0,0.0,0.0,0.0,1.0],[524,30.0,0.0,850.0,0.0,0.0,0.0,1.0],[524,30.0,0.0,850.0,0.0,-1.0,0.0,0.0],[524,-40.0,45.0,-1350.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,400.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,1700.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,1600.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,2200.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,2100.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,2000.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,1800.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,1900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2500.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2500.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2400.0,0.0,-1.0,0.0,0.0],[524,0.0,5.0,2300.0,0.0,0.0,0.0,1.0],[524,0.0,2.5,2350.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,2999.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,3055.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,3130.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,3230.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,3530.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2600.0,0.0,0.0,0.0,1.0],[524,19.9,34.05,2602.59,0.0,0.0,0.0,1.0],[524,19.9,34.05,2582.59,0.0,0.0,0.0,1.0],[524,19.9,34.05,2642.59,0.0,0.0,0.0,1.0],[524,-20.0,34.05,2613.44,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2600.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2700.0,0.0,0.0,0.0,1.0],[524,0.0,2.85,2750.0,0.0,-1.0,0.0,0.0],[524,-20.0,34.05,2570.62,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2900.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-700.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,200.0,0.0,0.0,0.0,1.0],[524,0.0,3.0,-100.0,0.0,0.0,0.0,1.0],[524,-10.0,0.0,50.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,-10.0,18.0,101.0,0.0,0.0,0.0,1.0],[524,0.0,-1.5,150.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,3.0,-50.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-425.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-500.0,0.0,0.0,0.0,1.0],[524,10.78,0.0,750.19,0.0,-1.0,0.0,0.0],[524,10.84,31.0,699.95,0.0,0.0,0.0,1.0],[524,10.78,0.0,550.19,0.0,-1.0,0.0,0.0],[524,0.0,11.5,649.5,0.0,0.0,0.0,1.0],[524,10.83,27.81,601.23,0.0,0.0,0.0,1.0],[524,0.0,0.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,600.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,700.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,600.0,0.0,0.0,0.0,1.0],[524,-455.0,385.0,162.5,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,21.5,1149.5,0.0,0.0,0.0,1.0],[524,0.0,5.0,1445.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,700.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,1500.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,1400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,3.0,-150.0,0.0,-1.0,0.0,0.0],[524,-40.0,45.25,-1460.0,0.0,0.0,0.0,1.0],[524,40.0,45.25,3989.98,0.0,0.0,0.0,1.0],[524,101.61,53.73,4069.18,0.0,0.0,0.0,1.0],[524,40.0,88.0,3901.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,3430.0,0.0,-1.0,0.0,0.0],[524,0.67,79.88,3630.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,3330.0,0.0,-1.0,0.0,0.0],[524,14.79,13.0,3291.54,0.0,0.70711,0.0,0.70711],[524,-0.76,51.02,3029.74,0.0,0.0,0.0,1.0],[524,-29.74,26.22,2944.33,0.0,0.0,0.0,1.0],[524,0.0,1.0,2899.0,0.0,-1.0,0.0,0.0],[524,6.51,51.02,3029.78,0.0,0.0,0.0,1.0],[524,27.86,23.13,2944.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2650.0,0.0,-1.0,0.0,0.0],[524,1200.0,0.0,0.0,0.0,0.0,0.0,1.0]]},{"key":"yip","name":"Yip's Yahoorama","noart":13,"i":[[524,0.0,0.0,-1775.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1475.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1375.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1475.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3199.4,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1950.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1195.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-650.0,0.0,0.0,0.0,1.0],[524,-19.71,34.0,-732.95,0.0,-1.0,0.0,0.0],[524,-19.71,34.0,-752.95,0.0,-1.0,0.0,0.0],[524,-19.71,34.0,-792.95,0.0,-1.0,0.0,0.0],[524,20.0,34.0,-763.0,0.0,0.0,0.0,1.0],[524,20.0,34.0,-720.0,0.0,0.0,0.0,1.0],[524,-39.0,3.5,-2784.0,0.0,0.70711,0.0,0.70711],[524,-13.0,7.0,-2519.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-2530.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2470.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2350.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3274.4,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2800.0,0.0,0.0,0.0,1.0],[524,-10.0,0.1,-2887.2,0.0,0.0,0.0,1.0],[524,-10.0,20.1,-2764.7,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-2800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2650.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1175.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1275.0,0.0,0.0,0.0,1.0],[524,-8.99,1.0,511.98,0.0,0.0,0.0,1.0],[524,5.0,13.5,-1563.0,0.0,0.0,0.0,1.0],[524,5.0,1.0,-490.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-455.0,0.0,-1.0,0.0,0.0],[524,0.0,1.0,-555.0,0.0,-1.0,0.0,0.0],[524,-10.0,1.0,-325.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-155.0,0.0,-1.0,0.0,0.0],[524,0.0,1.0,-255.0,0.0,-1.0,0.0,0.0],[524,0.0,1.0,-355.0,0.0,-1.0,0.0,0.0],[524,0.0,1.0,645.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,545.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,445.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,145.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,245.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,345.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,285.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,745.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,845.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-17.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,7.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,945.0,0.0,-1.0,0.0,0.0],[524,25.0,5.0,-655.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-850.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-750.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-750.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1050.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-850.0,0.0,0.0,0.0,1.0],[524,25.0,5.0,-755.0,0.0,0.0,0.0,1.0],[524,25.0,5.0,-855.0,0.0,0.0,0.0,1.0],[524,25.0,5.0,-1055.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1145.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1045.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1045.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-1575.0,0.0,0.0,0.0,1.0],[524,5.0,13.5,-1663.0,0.0,0.0,0.0,1.0],[524,0.0,13.5,-1713.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-1675.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1875.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[524,-10.0,0.1,-2192.5,0.0,-1.0,0.0,0.0],[524,-13.0,-9.9,-2570.0,0.0,0.0,0.0,1.0],[524,-13.0,20.1,-2525.0,0.0,-1.0,0.0,0.0],[524,-13.0,0.0,-2450.0,0.0,0.0,0.0,1.0],[524,-13.0,-9.9,-2480.0,0.0,0.0,0.0,1.0],[524,-13.0,0.0,-2350.0,0.0,0.0,0.0,1.0],[524,-13.0,0.0,-2650.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-800.0,0.0,0.0,0.0,1.0],[524,-3.99,0.0,-2786.82,0.0,0.0,0.0,1.0],[524,13.01,0.0,-2786.82,0.0,0.0,0.0,1.0],[524,0.0,0.0,1370.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1270.0,0.0,-1.0,0.0,0.0],[524,90.0,382.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-5.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1470.0,0.0,-1.0,0.0,0.0],[524,40.0,45.0,1820.0,0.0,-1.0,0.0,0.0],[524,-40.0,-50.0,-3724.4,0.0,0.0,0.0,1.0],[524,-238.0,-45.0,-3708.65,0.0,0.0,0.0,1.0],[524,-251.0,-36.0,-3709.65,0.0,0.0,0.0,1.0],[524,40.0,45.0,1935.0,0.0,0.0,0.0,1.0],[524,-40.0,-50.0,-3837.65,0.0,-1.0,0.0,0.0],[524,-125.0,-36.0,-3931.65,0.0,-0.70711,0.0,0.70711],[524,-74.63,-50.0,-3912.17,0.0,0.0,0.0,1.0],[524,-4.63,-50.0,-3919.17,0.0,0.0,0.0,1.0],[524,-25.0,-36.0,-3931.65,0.0,-0.70711,0.0,0.70711],[524,-55.0,-39.0,-3926.65,0.0,-0.70711,0.0,0.70711],[524,-125.0,-39.0,-3919.65,0.0,-0.70711,0.0,0.70711],[524,-238.0,-45.0,-3808.65,0.0,0.0,0.0,1.0],[524,-251.0,-36.0,-3809.65,0.0,0.0,0.0,1.0],[524,168.0,-40.0,-3815.65,0.0,0.0,0.0,1.0],[524,158.0,-36.0,-3815.65,0.0,0.0,0.0,1.0],[524,168.0,-40.0,-3715.65,0.0,0.0,0.0,1.0],[524,158.0,-36.0,-3715.65,0.0,0.0,0.0,1.0],[524,184.0,-26.0,-3833.65,0.0,0.0,0.0,1.0],[524,1200.0,0.0,0.0,0.0,0.0,0.0,1.0]]},{"key":"pain","name":"Paingod's Passage","noart":11,"i":[[524,-33.0,-45.0,-2225.0,0.0,0.0,0.0,1.0],[524,2.87,25.0,-102.27,0.0,-1.0,0.0,0.0],[524,2.87,25.0,-472.27,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2525.0,0.0,0.0,0.0,1.0],[524,5.15,4.0,324.83,0.0,0.0,0.0,1.0],[524,0.0,10.0,2650.0,0.0,0.0,0.0,1.0],[524,-8.0,0.0,2740.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2425.0,0.0,0.0,0.0,1.0],[524,7.61,0.0,413.31,0.0,0.0,0.0,1.0],[524,7.61,0.0,518.31,0.0,0.0,0.0,1.0],[524,12.54,0.0,574.98,0.0,-1.0,0.0,0.0],[524,-9.0,0.0,475.0,0.0,0.0,0.0,1.0],[524,16.5,-7.0,795.0,0.0,0.0,0.0,1.0],[524,12.54,0.0,374.98,0.0,-1.0,0.0,0.0],[524,2.0,0.0,625.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,625.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,725.0,0.0,-1.0,0.0,0.0],[524,1.0,23.0,-975.0,0.0,0.0,0.0,1.0],[524,-4.0,23.0,-975.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-975.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-875.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-975.0,0.0,0.0,0.0,1.0],[524,17.03,-31.0,775.0,0.0,0.0,0.0,1.0],[524,-12.97,-31.0,775.0,0.0,0.0,0.0,1.0],[524,17.0,18.0,1145.0,0.0,0.0,0.0,1.0],[524,17.0,18.0,1045.0,0.0,0.0,0.0,1.0],[524,16.5,-7.0,1035.0,0.0,0.0,0.0,1.0],[524,17.0,18.0,945.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,925.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1025.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1125.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,925.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1025.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,975.0,0.0,-1.0,0.0,0.0],[524,2.0,0.0,975.0,0.0,0.0,0.0,1.0],[524,16.5,-7.0,915.0,0.0,0.0,0.0,1.0],[524,17.0,18.0,845.0,0.0,0.0,0.0,1.0],[524,-8.0,0.0,885.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,825.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,825.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,725.0,0.0,0.0,0.0,1.0],[524,-12.97,-31.0,2375.0,0.0,0.0,0.0,1.0],[524,17.03,-31.0,2375.0,0.0,0.0,0.0,1.0],[524,2.0,-30.0,2225.0,0.0,0.0,0.0,1.0],[524,2.0,-25.0,2225.0,0.0,0.0,0.0,1.0],[524,2.0,-25.0,2275.0,0.0,0.0,0.0,1.0],[524,2.0,-35.0,2175.0,0.0,0.0,0.0,1.0],[524,2.0,-35.0,2125.0,0.0,0.0,0.0,1.0],[524,2.0,-45.0,2075.0,0.0,0.0,0.0,1.0],[524,2.0,-40.0,2125.0,0.0,0.0,0.0,1.0],[524,2.0,-55.0,1975.0,0.0,0.0,0.0,1.0],[524,2.0,-45.0,2025.0,0.0,0.0,0.0,1.0],[524,2.0,-50.0,2025.0,0.0,0.0,0.0,1.0],[524,2.0,-55.0,1925.0,0.0,0.0,0.0,1.0],[524,2.0,-55.0,1925.0,0.0,0.0,0.0,1.0],[524,2.0,-15.0,2325.0,0.0,0.0,0.0,1.0],[524,2.0,-55.0,1875.0,0.0,0.0,0.0,1.0],[524,2.0,-55.0,1825.0,0.0,0.0,0.0,1.0],[524,2.0,-60.0,1725.0,0.0,0.0,0.0,1.0],[524,2.0,-70.0,1625.0,0.0,0.0,0.0,1.0],[524,2.0,-65.0,1625.0,0.0,0.0,0.0,1.0],[524,2.0,-65.0,1675.0,0.0,0.0,0.0,1.0],[524,2.0,-55.0,1725.0,0.0,0.0,0.0,1.0],[524,2.0,-55.0,1775.0,0.0,0.0,0.0,1.0],[524,2.0,-75.0,1575.0,0.0,0.0,0.0,1.0],[524,2.0,-75.0,1525.0,0.0,0.0,0.0,1.0],[524,2.0,-75.0,1525.0,0.0,0.0,0.0,1.0],[524,2.0,-55.0,1825.0,0.0,0.0,0.0,1.0],[524,2.0,-75.0,1475.0,0.0,-1.0,0.0,0.0],[524,2.0,-70.0,1425.0,0.0,-1.0,0.0,0.0],[524,2.0,-60.0,1325.0,0.0,-1.0,0.0,0.0],[524,2.0,-55.0,1275.0,0.0,-1.0,0.0,0.0],[524,2.0,-55.0,1325.0,0.0,-1.0,0.0,0.0],[524,2.0,-65.0,1375.0,0.0,-1.0,0.0,0.0],[524,2.0,-65.0,1425.0,0.0,-1.0,0.0,0.0],[524,2.0,-55.0,1225.0,0.0,-1.0,0.0,0.0],[524,2.0,-50.0,1125.0,0.0,-1.0,0.0,0.0],[524,2.0,-55.0,1175.0,0.0,-1.0,0.0,0.0],[524,2.0,-45.0,1125.0,0.0,-1.0,0.0,0.0],[524,2.0,-45.0,1075.0,0.0,-1.0,0.0,0.0],[524,2.0,-35.0,975.0,0.0,-1.0,0.0,0.0],[524,2.0,-35.0,1025.0,0.0,-1.0,0.0,0.0],[524,2.0,-25.0,875.0,0.0,-1.0,0.0,0.0],[524,2.0,-25.0,925.0,0.0,-1.0,0.0,0.0],[524,2.0,-15.0,825.0,0.0,-1.0,0.0,0.0],[524,2.0,-15.0,2375.0,0.0,0.0,0.0,1.0],[524,2.0,-20.0,2325.0,0.0,0.0,0.0,1.0],[524,2.0,-15.0,775.0,0.0,-1.0,0.0,0.0],[524,2.0,0.0,525.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1517.5,0.0,0.0,0.0,1.0],[524,2.0,0.0,2025.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1525.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1825.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,2025.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1322.5,0.0,0.0,0.0,1.0],[524,0.0,0.0,2750.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2325.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1225.0,0.0,-1.0,0.0,0.0],[524,2.0,0.0,2225.0,0.0,0.0,0.0,1.0],[524,2.0,15.5,1425.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1425.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1625.0,0.0,0.0,0.0,1.0],[524,-13.5,0.0,1925.0,0.0,0.0,0.0,1.0],[524,-13.5,0.0,2125.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1325.0,0.0,0.0,0.0,1.0],[524,2.0,25.0,-425.0,0.0,0.0,0.0,1.0],[524,2.0,25.0,-15.0,0.0,0.0,0.0,1.0],[524,2.0,25.0,-530.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,525.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,425.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,325.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,425.0,0.0,0.0,0.0,1.0],[524,2.0,25.0,25.0,0.0,0.0,0.0,1.0],[524,2.0,25.0,-675.0,0.0,-1.0,0.0,0.0],[524,2.0,25.0,-75.0,0.0,0.0,0.0,1.0],[524,2.0,25.0,-175.0,0.0,0.0,0.0,1.0],[524,2.0,25.0,-275.0,0.0,0.0,0.0,1.0],[524,2.0,25.0,-375.0,0.0,0.0,0.0,1.0],[524,2.0,25.0,-475.0,0.0,0.0,0.0,1.0],[524,2.0,25.0,-575.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-875.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-775.0,0.0,0.0,0.0,1.0],[524,-4.0,23.0,-775.0,0.0,0.0,0.0,1.0],[524,1.0,23.0,-775.0,0.0,0.0,0.0,1.0],[524,1.0,23.0,-875.0,0.0,0.0,0.0,1.0],[524,-4.0,23.0,-875.0,0.0,0.0,0.0,1.0],[524,-1.5,-2.0,-825.0,0.0,0.0,0.0,1.0],[524,-1.5,-2.0,-925.0,0.0,0.0,0.0,1.0],[524,2.0,10.0,250.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,125.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-1175.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-1075.0,0.0,0.0,0.0,1.0],[524,10.91,5.0,-1260.08,0.0,-1.0,0.0,0.0],[524,-36.38,8.5,-1262.3,0.0,0.70711,0.0,0.70711],[524,7.0,35.0,-1725.0,0.0,0.0,0.0,1.0],[524,10.91,5.0,-1295.08,0.0,-1.0,0.0,0.0],[524,-36.38,8.5,-1297.49,0.0,0.70711,0.0,0.70711],[524,-4.0,23.0,-1375.0,0.0,0.0,0.0,1.0],[524,1.0,23.0,-1375.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-1175.0,0.0,0.0,0.0,1.0],[524,-4.0,23.0,-1175.0,0.0,0.0,0.0,1.0],[524,1.0,23.0,-1175.0,0.0,0.0,0.0,1.0],[524,1.0,23.0,-1275.0,0.0,0.0,0.0,1.0],[524,-4.0,23.0,-1275.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-1200.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-1275.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-1375.0,0.0,0.0,0.0,1.0],[524,7.0,35.0,-1525.0,0.0,0.0,0.0,1.0],[524,-1.5,-2.0,-1225.0,0.0,0.0,0.0,1.0],[524,-1.5,-2.0,-1325.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,325.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-1075.0,0.0,0.0,0.0,1.0],[524,-4.0,23.0,-1075.0,0.0,0.0,0.0,1.0],[524,-1.5,-2.0,-1425.0,0.0,0.0,0.0,1.0],[524,1.0,23.0,-1375.0,0.0,0.0,0.0,1.0],[524,-1.5,-2.0,-1325.0,0.0,0.0,0.0,1.0],[524,1.0,23.0,-1275.0,0.0,0.0,0.0,1.0],[524,-1.5,-2.0,-1225.0,0.0,0.0,0.0,1.0],[524,1.0,23.0,-1175.0,0.0,0.0,0.0,1.0],[524,1.0,23.0,-1075.0,0.0,0.0,0.0,1.0],[524,-1.5,-2.0,-1125.0,0.0,0.0,0.0,1.0],[524,-8.0,0.0,339.98,0.0,-1.0,0.0,0.0],[524,2.0,25.0,-355.0,0.0,0.0,0.0,1.0],[524,2.0,25.0,-550.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1825.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1925.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,2025.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,2125.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1725.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1625.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1726.5,0.0,0.0,0.0,1.0],[524,0.0,0.0,2325.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2650.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,4725.0,0.0,-1.0,0.0,0.0],[524,-400.0,2.0,4625.0,0.0,-1.0,0.0,0.0],[524,45.0,0.0,2875.0,0.0,-1.0,0.0,0.0],[524,45.0,0.0,2825.0,0.0,-1.0,0.0,0.0],[524,-445.0,0.0,2875.0,0.0,0.0,0.0,1.0],[524,-445.0,0.0,2825.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,4025.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,3925.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,3975.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,4575.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,4675.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,4425.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,4525.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,4375.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,4475.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,4125.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,4225.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,4325.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,4075.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,4175.0,0.0,0.0,0.0,1.0],[524,-400.0,2.0,4275.0,0.0,0.0,0.0,1.0],[524,-440.0,2.0,4825.0,0.0,-1.0,0.0,0.0],[524,-390.0,10.0,3630.0,0.0,0.0,0.0,1.0],[524,-390.0,10.0,3570.0,0.0,0.0,0.0,1.0],[524,-400.0,0.0,3540.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,3950.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3850.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3850.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3650.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3650.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3750.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3750.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3550.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3350.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3250.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3350.0,0.0,-1.0,0.0,0.0],[524,-395.0,0.0,3325.0,0.0,0.0,0.0,1.0],[524,-400.0,0.0,3600.0,0.0,0.0,0.0,1.0],[524,-400.0,0.0,3600.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,2850.0,0.0,0.0,0.0,1.0],[524,-400.0,0.0,2550.0,0.0,0.0,0.0,1.0],[524,-400.0,0.0,2650.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,2650.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,2750.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,2750.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,2950.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3250.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3150.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3150.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3050.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3050.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3450.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3550.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3450.0,0.0,-1.0,0.0,0.0],[524,-470.0,87.0,4495.0,0.0,0.0,0.0,1.0],[524,-490.0,87.0,4495.0,0.0,0.0,0.0,1.0],[524,-300.0,0.0,2850.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,2850.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,2850.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,2850.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2950.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2950.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,3050.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,3050.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,3150.0,0.0,-1.0,0.0,0.0],[524,-490.0,-40.0,4885.0,0.0,0.0,0.0,1.0],[524,-33.0,-45.0,-2338.0,0.0,0.0,0.0,1.0],[524,-415.0,10.0,3630.0,0.0,0.0,0.0,1.0],[524,-415.0,10.0,3570.0,0.0,0.0,0.0,1.0],[524,-365.0,165.0,1595.0,0.0,0.0,0.0,1.0],[524,1200.0,0.0,0.0,0.0,0.0,0.0,1.0]]},{"key":"blade","name":"Blade's Edge","noart":13,"i":[[524,2.5,6.0,-2850.0,0.0,0.0,0.0,1.0],[524,2.5,6.0,-2750.0,0.0,0.0,0.0,1.0],[524,-2.0,7.8,-2550.0,0.0,-1.0,0.0,0.0],[524,21.0,16.0,-3121.0,0.0,0.0,0.0,1.0],[524,21.0,16.0,-3081.0,0.0,0.0,0.0,1.0],[524,3.0,15.0,-3100.0,0.0,0.0,0.0,1.0],[524,31.0,6.0,-3100.0,0.0,-1.0,0.0,0.0],[524,31.0,6.0,-3100.0,0.0,0.0,0.0,1.0],[524,3.0,6.0,-3150.0,0.0,0.0,0.0,1.0],[524,17.17,35.0,-3099.61,0.0,0.0,0.0,1.0],[524,6.17,35.0,-3099.61,0.0,-1.0,0.0,0.0],[524,18.18,35.0,-3100.15,0.0,0.0,0.0,1.0],[524,3.0,6.0,-3675.0,0.0,-1.0,0.0,0.0],[524,3.0,6.0,-3775.0,0.0,-1.0,0.0,0.0],[524,-37.0,-39.0,-4525.0,0.0,0.0,0.0,1.0],[524,3.0,6.0,-3875.0,0.0,0.0,0.0,1.0],[524,3.0,6.0,-3600.0,0.0,0.0,0.0,1.0],[524,-38.0,-38.5,-4638.0,0.0,0.0,0.0,1.0],[524,3.0,41.0,-4025.0,0.0,0.0,0.0,1.0],[524,-10.0,5.0,-3255.0,0.0,0.0,0.0,1.0],[524,3.0,6.0,-3550.0,0.0,0.0,0.0,1.0],[524,3.0,6.0,-3450.0,0.0,0.0,0.0,1.0],[524,3.0,6.0,-3350.0,0.0,0.0,0.0,1.0],[524,3.0,6.0,-3250.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,1120.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,970.0,0.0,0.0,0.0,1.0],[524,12.0,0.0,-1802.5,0.0,0.0,0.0,1.0],[524,9.18,20.0,-701.15,0.0,0.0,0.0,1.0],[524,-2.83,20.0,-700.61,0.0,-1.0,0.0,0.0],[524,8.17,20.0,-700.61,0.0,0.0,0.0,1.0],[524,0.0,0.0,-700.0,0.0,0.0,0.0,1.0],[524,0.0,19.0,-550.0,0.0,0.0,0.0,1.0],[524,-2.25,20.0,-806.15,0.0,-1.0,0.0,0.0],[524,-1.23,20.0,-806.69,0.0,-1.0,0.0,0.0],[524,9.77,20.0,-806.69,0.0,0.0,0.0,1.0],[524,0.0,0.0,-660.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-760.0,0.0,0.0,0.0,1.0],[524,0.0,25.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1440.0,0.0,0.0,0.0,1.0],[524,-38.39,23.34,-1390.19,0.0,-0.70711,0.0,0.70711],[524,9.11,20.0,-1387.44,0.0,-1.0,0.0,0.0],[524,41.0,31.0,-1473.0,0.0,0.70711,0.0,0.70711],[524,41.0,31.0,-1528.0,0.0,0.70711,0.0,0.70711],[524,-8.78,20.0,-1520.84,0.0,0.70711,0.0,0.70711],[524,-8.78,20.0,-1465.84,0.0,0.70711,0.0,0.70711],[524,38.0,31.0,-1500.0,0.0,0.0,0.0,1.0],[524,-24.92,5.0,-394.92,0.0,0.70711,0.0,0.70711],[524,-24.92,5.0,-294.92,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-860.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-760.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-395.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-295.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-860.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-100.0,0.0,0.0,0.0,1.0],[524,12.0,0.0,-527.5,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-1700.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1600.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1700.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1600.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-700.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-100.0,0.0,0.0,0.0,1.0],[524,12.0,20.0,-1310.0,0.0,0.0,0.0,1.0],[524,12.0,-10.0,-1265.0,0.0,0.0,0.0,1.0],[524,12.0,20.0,-1220.0,0.0,0.0,0.0,1.0],[524,12.0,-10.0,-1175.0,0.0,0.0,0.0,1.0],[524,12.0,20.0,-1130.0,0.0,0.0,0.0,1.0],[524,12.0,-10.0,-1085.0,0.0,0.0,0.0,1.0],[524,12.0,20.0,-1040.0,0.0,0.0,0.0,1.0],[524,12.0,-10.0,-995.0,0.0,0.0,0.0,1.0],[524,12.0,20.0,-950.0,0.0,0.0,0.0,1.0],[524,12.0,20.0,-1680.0,0.0,0.0,0.0,1.0],[524,12.0,-10.0,-1635.0,0.0,0.0,0.0,1.0],[524,12.0,20.0,-1590.0,0.0,0.0,0.0,1.0],[524,-13.0,0.0,-1050.0,0.0,0.0,0.0,1.0],[524,-13.0,0.0,-1150.0,0.0,0.0,0.0,1.0],[524,-13.0,0.0,-1250.0,0.0,0.0,0.0,1.0],[524,-13.0,0.0,-50.0,0.0,0.0,0.0,1.0],[524,-14.27,16.85,-950.39,0.0,0.70711,0.0,0.70711],[524,-14.27,16.85,-1650.39,0.0,0.70711,0.0,0.70711],[524,15.0,-10.0,-1460.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1500.0,0.0,0.0,0.0,1.0],[524,-38.39,23.34,-1450.19,0.0,-0.70711,0.0,0.70711],[524,9.11,20.0,-1447.44,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-1500.0,0.0,0.0,0.0,1.0],[524,-38.39,23.34,-1420.19,0.0,-0.70711,0.0,0.70711],[524,9.11,20.0,-1417.44,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-1470.0,0.0,0.0,0.0,1.0],[524,-1.0,23.0,441.5,0.0,0.0,0.0,1.0],[524,0.0,23.0,150.5,0.0,0.0,0.0,1.0],[524,-14.0,10.0,430.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,400.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,620.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,720.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,820.0,0.0,0.0,0.0,1.0],[524,16.0,0.0,413.0,0.0,0.0,0.0,1.0],[524,14.0,0.0,456.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,520.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,500.0,0.0,0.0,0.0,1.0],[524,1.0,0.0,224.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,250.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,250.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[524,-13.0,0.0,50.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,383.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,400.0,0.0,0.0,0.0,1.0],[524,-14.0,10.0,340.0,0.0,0.0,0.0,1.0],[524,-14.0,-20.0,385.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1900.0,0.0,0.0,0.0,1.0],[524,-2.0,9.8,-2525.0,0.0,0.0,0.0,1.0],[524,-14.0,5.0,-2945.0,0.0,-1.0,0.0,0.0],[524,38.0,6.0,-2600.0,0.0,-1.0,0.0,0.0],[524,-2.0,9.8,-2375.0,0.0,0.0,0.0,1.0],[524,-2.0,9.8,-2275.0,0.0,0.0,0.0,1.0],[524,-2.0,9.8,-2325.0,0.0,0.0,0.0,1.0],[524,-2.0,9.8,-2175.0,0.0,0.0,0.0,1.0],[524,-2.0,9.8,-2225.0,0.0,0.0,0.0,1.0],[524,-2.0,9.8,-2125.0,0.0,0.0,0.0,1.0],[524,-2.0,9.8,-2075.0,0.0,0.0,0.0,1.0],[524,-2.0,9.8,-2425.0,0.0,0.0,0.0,1.0],[524,-2.0,9.8,-2575.0,0.0,0.0,0.0,1.0],[524,-2.0,9.8,-2475.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2050.0,0.0,0.0,0.0,1.0],[524,-2.0,0.0,-1960.0,0.0,-1.0,0.0,0.0],[524,-2.0,8.0,-2100.0,0.0,0.0,0.0,1.0],[524,0.0,7.5,-2600.0,0.0,-1.0,0.0,0.0],[524,3.0,6.0,-2750.0,0.0,0.0,0.0,1.0],[524,3.0,6.0,-2650.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,663.0,0.0,0.0,0.0,1.0],[524,-1.0,10.0,1157.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,969.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1450.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1525.0,0.0,-1.0,0.0,0.0],[524,40.0,-45.0,2100.0,0.0,-1.0,0.0,0.0],[524,80.0,-42.0,1995.0,0.0,0.0,0.0,1.0],[524,-9.0,-45.0,2148.0,0.0,0.0,0.0,1.0],[524,0.0,35.0,1675.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1300.0,0.0,0.0,0.0,1.0],[524,-13.0,0.25,-550.0,0.0,0.0,0.0,1.0],[524,18.0,30.25,-363.0,0.0,0.0,0.0,1.0],[524,0.0,10.25,-395.0,0.0,0.0,0.0,1.0],[524,17.0,30.25,-326.0,0.0,0.0,0.0,1.0],[524,0.0,10.25,-295.0,0.0,0.0,0.0,1.0],[524,12.0,30.25,-105.0,0.0,0.0,0.0,1.0],[524,12.0,0.25,-60.0,0.0,0.0,0.0,1.0],[524,12.0,30.25,-15.0,0.0,0.0,0.0,1.0],[524,12.0,0.25,30.0,0.0,0.0,0.0,1.0],[524,12.0,30.25,165.0,0.0,0.0,0.0,1.0],[524,12.0,30.25,75.0,0.0,0.0,0.0,1.0],[524,12.0,0.25,120.0,0.0,0.0,0.0,1.0],[524,0.0,10.25,255.0,0.0,0.0,0.0,1.0],[524,0.0,0.25,375.0,0.0,-1.0,0.0,0.0],[524,12.0,30.25,345.0,0.0,0.0,0.0,1.0],[524,0.0,10.25,435.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,10.25,-195.0,0.0,0.0,0.0,1.0],[524,-6.41,30.25,-241.08,0.0,-1.0,0.0,0.0],[524,-7.42,30.25,-240.54,0.0,-1.0,0.0,0.0],[524,4.59,30.25,-241.08,0.0,0.0,0.0,1.0],[524,3.0,6.0,-3050.0,0.0,0.0,0.0,1.0],[524,3.0,6.0,-2950.0,0.0,0.0,0.0,1.0],[524,3.0,6.0,-2850.0,0.0,0.0,0.0,1.0],[524,-29.0,289.0,-822.0,0.0,0.0,0.0,1.0],[524,1200.0,0.0,0.0,0.0,0.0,0.0,1.0]]},{"key":"lyzlane","name":"Lyz's Lane","noart":11,"i":[[524,0.0,7.0,350.0,0.0,0.0,0.0,1.0],[524,-5.0,7.0,550.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1300.0,0.0,0.0,0.0,1.0],[524,-98.05,0.06,-1132.38,0.0,0.0,0.0,1.0],[524,-98.05,0.06,-1112.38,0.0,0.0,0.0,1.0],[524,-25.0,0.0,-1285.0,0.0,-1.0,0.0,0.0],[524,-25.0,0.0,-1215.0,0.0,0.0,0.0,1.0],[524,-15.0,5.0,-1280.0,0.0,0.0,0.0,1.0],[524,-4.84,1.0,-1258.25,0.0,-1.0,0.0,0.0],[524,-15.0,5.0,-1220.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,700.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1190.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1190.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1090.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,8.0,10.0,1190.0,0.0,-1.0,0.0,0.0],[524,64.05,0.06,1037.38,0.0,-1.0,0.0,0.0],[524,64.05,0.06,1087.38,0.0,-1.0,0.0,0.0],[524,-54.05,0.06,1002.62,0.0,0.0,0.0,1.0],[524,-54.05,0.06,1052.62,0.0,0.0,0.0,1.0],[524,2.0,10.0,900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1090.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-1100.0,0.0,-1.0,0.0,0.0],[524,0.0,1.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-955.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-1000.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-900.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-800.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-700.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-600.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-500.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-775.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-825.0,0.0,0.0,0.0,1.0],[524,10.0,1.0,-525.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,-635.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-1025.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-100.0,0.0,0.0,0.0,1.0],[524,12.0,1.0,75.0,0.0,0.0,0.0,1.0],[524,22.0,12.0,-25.0,0.0,0.0,0.0,1.0],[524,30.0,0.0,-50.0,0.0,0.0,0.0,1.0],[524,30.0,0.0,-140.0,0.0,-1.0,0.0,0.0],[524,15.0,1.0,-110.0,0.0,0.0,0.0,1.0],[524,15.0,1.0,-75.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1500.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-1500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2000.0,0.0,-1.0,0.0,0.0],[524,0.0,1.0,2200.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2200.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1690.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1590.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1590.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1490.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1490.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1390.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1390.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1290.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1290.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1890.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1790.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1790.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1690.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,600.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,500.0,0.0,0.0,0.0,1.0],[524,25.0,0.0,1365.0,0.0,-1.0,0.0,0.0],[524,25.0,0.0,1415.0,0.0,0.0,0.0,1.0],[524,10.0,1.0,1390.0,0.0,-1.0,0.0,0.0],[524,10.0,1.0,1490.0,0.0,-1.0,0.0,0.0],[524,25.0,0.0,1515.0,0.0,0.0,0.0,1.0],[524,25.0,0.0,1465.0,0.0,-1.0,0.0,0.0],[524,-10.0,1.0,1790.0,0.0,0.0,0.0,1.0],[524,-25.0,0.0,1765.0,0.0,-1.0,0.0,0.0],[524,-25.0,0.0,1815.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,630.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,575.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,530.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,285.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,325.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,375.0,0.0,0.0,0.0,1.0],[524,0.0,305.0,50.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,2325.0,0.0,-1.0,0.0,0.0],[524,0.0,1.0,-1625.0,0.0,0.0,0.0,1.0],[524,0.0,-8.0,2435.0,0.0,0.0,0.0,1.0],[524,5.0,-8.0,-1735.0,0.0,0.0,0.0,1.0],[524,1200.0,0.0,0.0,0.0,0.0,0.0,1.0]]},{"key":"otto","name":"Berserker's Bahnzai","noart":13,"i":[[524,40.0,45.0,1935.0,0.0,0.0,0.0,1.0],[524,40.0,45.0,1820.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1470.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1370.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1270.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1195.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1200.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1100.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1000.0,0.0,-1.0,0.0,0.0],[524,-5.2,0.0,990.0,0.0,-1.0,0.0,0.0],[524,5.2,0.0,990.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,945.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,900.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,800.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,800.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,700.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,700.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,600.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,600.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,500.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,400.0,0.0,-1.0,0.0,0.0],[524,5.2,0.0,310.0,0.0,0.0,0.0,1.0],[524,-5.2,0.0,310.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[524,-59.6,-9.15,230.0,0.0,0.70711,0.0,0.70711],[524,-59.6,-19.15,175.0,0.0,0.70711,0.0,0.70711],[524,-59.6,-9.15,170.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.9,100.0,0.0,0.0,0.0,1.0],[524,0.0,0.9,200.0,0.0,0.0,0.0,1.0],[524,0.0,0.9,200.0,0.0,0.0,0.0,1.0],[524,59.6,-9.15,230.0,0.0,-0.70711,0.0,0.70711],[524,59.6,-19.15,175.0,0.0,-0.70711,0.0,0.70711],[524,59.6,-9.15,170.0,0.0,-0.70711,0.0,0.70711],[524,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[524,-15.5,-5.0,132.5,0.0,-1.0,0.0,0.0],[524,15.5,-5.0,132.5,0.0,-1.0,0.0,0.0],[524,0.0,15.0,0.0,0.0,0.0,0.0,1.0],[524,90.0,382.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-100.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-500.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-600.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-700.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-800.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-900.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-950.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-1000.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-1100.0,0.0,-1.0,0.0,0.0],[524,10.0,20.0,-50.8,0.0,-1.0,0.0,0.0],[524,6.0,0.0,-85.0,0.0,-1.0,0.0,0.0],[524,-2.6,20.0,-228.9,0.0,-1.0,0.0,0.0],[524,15.0,20.0,-119.3,0.0,0.0,0.0,1.0],[524,0.5,15.0,-257.5,0.0,0.0,0.0,1.0],[524,0.5,15.0,-314.5,0.0,0.0,0.0,1.0],[524,0.5,15.0,-371.5,0.0,-1.0,0.0,0.0],[524,0.5,15.0,-428.5,0.0,0.0,0.0,1.0],[524,0.5,15.0,-485.5,0.0,0.0,0.0,1.0],[524,0.5,15.0,-542.5,0.0,-1.0,0.0,0.0],[524,0.5,15.0,-599.5,0.0,0.0,0.0,1.0],[524,0.5,15.0,-713.5,0.0,0.0,0.0,1.0],[524,0.5,15.0,-770.5,0.0,-1.0,0.0,0.0],[524,0.5,15.0,-827.5,0.0,0.0,0.0,1.0],[524,0.5,15.0,-884.5,0.0,0.0,0.0,1.0],[524,0.5,15.0,-941.5,0.0,-1.0,0.0,0.0],[524,0.5,15.0,-998.5,0.0,0.0,0.0,1.0],[524,0.5,15.0,-1055.5,0.0,0.0,0.0,1.0],[524,0.5,20.0,-1084.1,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-1150.0,0.0,-1.0,0.0,0.0],[524,10.0,0.0,-1175.0,0.0,0.0,0.0,1.0],[524,-10.0,0.0,-1175.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-1200.0,0.0,-1.0,0.0,0.0],[524,10.0,0.0,-1225.0,0.0,0.0,0.0,1.0],[524,-10.0,0.0,-1225.0,0.0,0.0,0.0,1.0],[524,15.0,-10.0,-1290.0,0.0,0.0,0.0,1.0],[524,-15.0,-10.0,-1290.0,0.0,0.0,0.0,1.0],[524,0.0,-14.0,150.0,0.0,0.0,0.0,1.0],[524,15.0,-30.0,150.0,0.0,0.0,0.0,1.0],[524,-15.0,-30.0,150.0,0.0,0.0,0.0,1.0],[524,0.0,-14.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,50.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-50.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-100.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-150.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-250.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-350.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-450.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-500.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-550.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-600.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-650.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-700.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-750.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-800.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-850.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-900.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-950.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-1000.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-1050.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-1100.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-1150.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-1200.0,0.0,0.0,0.0,1.0],[524,0.0,-34.0,-1250.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,-1300.0,0.0,-1.0,0.0,0.0],[524,0.0,-24.0,-1350.0,0.0,0.0,0.0,1.0],[524,15.0,-40.0,-1350.0,0.0,0.0,0.0,1.0],[524,-15.0,-40.0,-1350.0,0.0,0.0,0.0,1.0],[524,0.0,-9.0,-1400.0,0.0,0.0,0.0,1.0],[524,0.0,-9.0,-1400.0,0.0,-1.0,0.0,0.0],[524,0.0,-9.0,-1500.0,0.0,0.0,0.0,1.0],[524,15.0,-10.0,-1650.0,0.0,-0.70711,0.0,0.70711],[524,13.0,-5.0,-1650.0,0.0,0.0,0.0,1.0],[524,-15.0,-10.0,-1800.0,0.0,0.70711,0.0,0.70711],[524,-13.0,-5.0,-1800.0,0.0,0.0,0.0,1.0],[524,15.0,-10.0,-2100.0,0.0,-0.70711,0.0,0.70711],[524,13.0,-5.0,-2100.0,0.0,-1.0,0.0,0.0],[524,-15.0,-10.0,-1950.0,0.0,0.70711,0.0,0.70711],[524,-13.0,-5.0,-1950.0,0.0,0.0,0.0,1.0],[524,15.0,-10.0,-2250.0,0.0,-0.70711,0.0,0.70711],[524,13.0,-5.0,-2250.0,0.0,-1.0,0.0,0.0],[524,-15.0,-10.0,-2400.0,0.0,0.70711,0.0,0.70711],[524,-13.0,-5.0,-2400.0,0.0,0.0,0.0,1.0],[524,15.0,-10.0,-2550.0,0.0,-0.70711,0.0,0.70711],[524,13.0,-5.0,-2550.0,0.0,-1.0,0.0,0.0],[524,-15.0,-10.0,-2700.0,0.0,0.70711,0.0,0.70711],[524,-13.0,-5.0,-2700.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-1200.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-1300.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-1500.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-1600.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-1700.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-1800.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-1900.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-2000.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-2100.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-2200.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-2300.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-2400.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-2500.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-2600.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-2700.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-2800.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-2900.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-3000.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-1190.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-1270.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-1350.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-1430.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-1510.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-1590.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-1670.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-1750.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-1830.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-1910.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-1990.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-2070.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-2150.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-2230.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-2310.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-2390.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-2470.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-2550.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-2630.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-2710.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-2790.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-2870.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-2030.0,0.0,0.0,0.0,1.0],[524,0.0,-11.0,-1425.0,0.0,0.0,0.0,1.0],[524,0.0,-11.0,-1725.0,0.0,0.0,0.0,1.0],[524,0.0,-11.0,-1875.0,0.0,0.0,0.0,1.0],[524,0.0,-11.0,-2025.0,0.0,0.0,0.0,1.0],[524,0.0,-11.0,-2175.0,0.0,0.0,0.0,1.0],[524,0.0,-11.0,-2325.0,0.0,0.0,0.0,1.0],[524,0.0,-11.0,-2475.0,0.0,0.0,0.0,1.0],[524,0.0,-11.0,-2625.0,0.0,0.0,0.0,1.0],[524,0.0,-11.0,-2775.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,-3015.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-3100.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-3199.4,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-3200.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-3274.4,0.0,0.0,0.0,1.0],[524,-40.0,-60.0,-3724.4,0.0,0.0,0.0,1.0],[524,-40.0,-60.0,-3837.65,0.0,-1.0,0.0,0.0],[524,1200.0,0.0,0.0,0.0,0.0,0.0,1.0]]},{"key":"frstrm","name":"Firestorm's Fury","noart":13,"i":[[524,40.0,45.0,1935.0,0.0,0.0,0.0,1.0],[524,40.0,45.0,1820.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1470.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1370.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1270.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1195.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1145.0,0.0,-1.0,0.0,0.0],[524,0.0,50.0,1145.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,1045.0,0.0,-1.0,0.0,0.0],[524,0.0,50.0,945.0,0.0,0.0,-1.0,0.0],[524,0.0,0.0,1045.0,0.0,-1.0,0.0,0.0],[524,0.0,50.0,1045.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,945.0,0.0,-1.0,0.0,0.0],[524,0.0,50.0,945.0,-1.0,0.0,0.0,0.0],[524,-32.0,31.0,1145.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,1145.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,1145.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,1145.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,1145.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,1145.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,1045.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,1045.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,1045.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,1045.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,1045.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,1045.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,945.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,945.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,945.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,945.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,945.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,945.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,1170.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,1170.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,1120.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,1120.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,1070.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,1070.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,1020.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,1020.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,970.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,970.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,920.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,920.0,0.0,0.0,0.0,1.0],[524,15.0,0.0,935.0,0.0,-1.0,0.0,0.0],[524,-15.0,0.0,935.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,845.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,745.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,645.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,545.0,0.0,0.0,0.0,1.0],[524,-6.99,10.0,511.98,0.0,0.0,0.0,1.0],[524,0.0,10.0,445.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,345.0,0.0,0.0,0.0,1.0],[524,6.99,10.0,285.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,245.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,145.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,45.0,0.0,0.0,0.0,1.0],[524,90.0,382.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-55.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-17.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-155.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,-255.0,0.0,-1.0,0.0,0.0],[524,-6.99,10.0,-325.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-355.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,-455.0,0.0,-1.0,0.0,0.0],[524,6.99,10.0,-490.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-555.0,0.0,-1.0,0.0,0.0],[524,15.0,0.0,-645.0,0.0,0.0,0.0,1.0],[524,-15.0,0.0,-645.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-650.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-650.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-750.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-750.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-750.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-750.0,0.0,0.0,-1.0,0.0],[524,0.0,0.0,-850.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-850.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-850.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-850.0,0.0,0.0,-1.0,0.0],[524,0.0,0.0,-950.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-950.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-950.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-950.0,0.0,0.0,-1.0,0.0],[524,0.0,0.0,-1050.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-1050.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-1050.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-1050.0,0.0,0.0,-1.0,0.0],[524,-32.0,31.0,-650.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-650.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-650.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-650.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-650.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-650.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-750.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-750.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-750.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-750.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-750.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-750.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-850.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-850.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-850.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-850.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-850.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-850.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-950.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-950.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-950.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-950.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-950.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-950.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-1050.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-1050.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-1050.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-1050.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-1050.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-1050.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-625.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-625.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-675.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-675.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-725.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-725.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-775.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-775.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-825.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-825.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-875.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-875.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-925.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-925.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-975.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-975.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-1025.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-1025.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-1075.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-1075.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1100.0,0.0,0.0,0.0,1.0],[524,9.8,4.0,-1159.0,0.0,-1.0,0.0,0.0],[524,16.3,9.0,-1204.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1175.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1275.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1375.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-1475.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1475.0,0.0,0.0,0.0,1.0],[524,0.0,15.0,-1575.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1575.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1675.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1775.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1875.0,0.0,0.0,0.0,1.0],[524,-16.3,9.0,-1848.0,0.0,0.0,0.0,1.0],[524,-9.8,4.0,-1893.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1950.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-2000.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-2000.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-2100.0,0.0,0.0,-1.0,0.0],[524,0.0,50.0,-2100.0,-1.0,0.0,0.0,0.0],[524,0.0,50.0,-2200.0,0.0,0.0,-1.0,0.0],[524,0.0,50.0,-2200.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-2200.0,0.0,0.0,0.0,1.0],[524,15.0,5.0,-2240.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-2300.0,0.0,0.0,-1.0,0.0],[524,0.0,50.0,-2300.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-2300.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-2500.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-2400.0,0.0,0.0,-1.0,0.0],[524,0.0,50.0,-2400.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-2400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2500.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-2500.0,0.0,0.0,-1.0,0.0],[524,0.0,50.0,-2500.0,-1.0,0.0,0.0,0.0],[524,0.0,50.0,-2600.0,0.0,0.0,-1.0,0.0],[524,0.0,0.0,-2600.0,0.0,0.0,0.0,1.0],[524,15.0,5.0,-2650.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-2600.0,-1.0,0.0,0.0,0.0],[524,0.0,50.0,-2700.0,0.0,0.0,-1.0,0.0],[524,0.0,50.0,-2700.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-2700.0,0.0,-1.0,0.0,0.0],[524,0.0,50.0,-2800.0,0.0,0.0,-1.0,0.0],[524,0.0,50.0,-2800.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-2800.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-2900.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-2900.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-2900.0,0.0,0.0,-1.0,0.0],[524,0.0,0.0,-2900.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-3000.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-3000.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-3000.0,0.0,0.0,-1.0,0.0],[524,0.0,0.0,-3000.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-3100.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-3100.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-3100.0,0.0,0.0,-1.0,0.0],[524,-32.0,31.0,-2000.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-2000.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-2000.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-2000.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-2000.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-2000.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-2100.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-2100.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-2100.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-2100.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-2100.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-2100.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-2200.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-2200.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-2200.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-2200.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-2200.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-2200.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-2300.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-2300.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-2300.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-2300.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-2300.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-2300.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-2400.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-2400.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-2400.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-2400.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-2400.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-2400.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-2500.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-2500.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-2500.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-2500.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-2500.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-2500.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-2600.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-2600.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-2600.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-2600.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-2600.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-2600.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-2700.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-2700.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-2700.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-2700.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-2700.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-2700.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-2800.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-2800.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-2800.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-2800.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-2800.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-2800.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-2900.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-2900.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-2900.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-2900.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-2900.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-2900.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-3000.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-3000.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-3000.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-3000.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-3000.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-3000.0,0.0,0.0,0.0,1.0],[524,-32.0,31.0,-3100.0,0.0,0.0,0.0,1.0],[524,-29.0,36.5,-3100.0,0.0,0.0,0.0,1.0],[524,-26.5,42.0,-3100.0,0.0,0.0,0.0,1.0],[524,32.0,31.0,-3100.0,0.0,0.0,0.0,1.0],[524,29.0,36.5,-3100.0,0.0,0.0,0.0,1.0],[524,26.5,42.0,-3100.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-1975.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-1975.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-2025.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-2025.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-2075.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-2075.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-2125.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-2125.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-2375.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-2375.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-2425.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-2425.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-2475.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-2475.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-2525.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-2525.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-2775.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-2775.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-2825.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-2825.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-2875.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-2875.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-2925.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-2925.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-2975.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-2975.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-3025.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-3025.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-3075.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-3075.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-3125.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-3125.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-3175.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-3175.0,0.0,0.0,0.0,1.0],[524,-36.0,25.0,-3225.0,0.0,0.0,0.0,1.0],[524,36.0,25.0,-3225.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3100.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-3100.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-3199.4,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3200.0,0.0,0.0,0.0,1.0],[524,0.0,50.0,-3200.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-3274.4,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3374.4,0.0,0.0,0.0,1.0],[524,-40.0,45.0,-3724.4,0.0,0.0,0.0,1.0],[524,-40.0,45.0,-3837.65,0.0,-1.0,0.0,0.0],[524,1200.0,0.0,0.0,0.0,0.0,0.0,1.0]]},{"key":"burnt","name":"Burnt Cookies","noart":11,"i":[[524,45.0,9.0,2365.0,0.0,0.0,0.0,1.0],[524,45.0,4.0,2365.0,0.0,0.0,0.0,1.0],[524,-45.0,9.0,2365.0,0.0,0.70711,0.0,0.70711],[524,-45.0,4.0,2365.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,2485.0,0.0,0.70711,0.0,0.70711],[524,0.0,5.0,2515.0,0.0,-0.70711,0.0,0.70711],[524,163.0,55.0,2551.0,-0.65328,0.2706,0.2706,0.65328],[524,163.0,5.0,2551.0,-0.65328,0.2706,0.2706,0.65328],[524,-163.0,55.0,2551.0,-0.65328,-0.2706,-0.2706,0.65328],[524,-163.0,5.0,2551.0,-0.65328,-0.2706,-0.2706,0.65328],[524,51.0,55.0,2663.0,-0.65328,0.2706,0.2706,0.65328],[524,51.0,5.0,2663.0,-0.65328,0.2706,0.2706,0.65328],[524,-51.0,55.0,2663.0,-0.65328,-0.2706,-0.2706,0.65328],[524,-51.0,5.0,2663.0,-0.65328,-0.2706,-0.2706,0.65328],[524,163.0,105.0,2449.0,0.65328,-0.2706,0.2706,0.65328],[524,163.0,55.0,2449.0,0.65328,-0.2706,0.2706,0.65328],[524,-163.0,105.0,2449.0,0.65328,0.2706,-0.2706,0.65328],[524,-163.0,55.0,2449.0,0.65328,0.2706,-0.2706,0.65328],[524,-47.5,20.5,2340.0,-0.2706,0.65328,0.65328,0.2706],[524,-47.5,76.5,2340.0,-0.2706,0.65328,0.65328,0.2706],[524,-54.5,20.5,2347.0,-0.2706,0.65328,0.65328,0.2706],[524,-54.5,76.5,2347.0,-0.2706,0.65328,0.65328,0.2706],[524,-61.5,20.5,2354.0,-0.2706,0.65328,0.65328,0.2706],[524,-61.5,76.5,2354.0,-0.2706,0.65328,0.65328,0.2706],[524,-92.8,55.0,2407.2,-0.65328,0.2706,0.2706,0.65328],[524,47.5,20.5,2340.0,0.65328,0.2706,-0.2706,0.65328],[524,47.5,76.5,2340.0,0.65328,0.2706,-0.2706,0.65328],[524,54.5,20.5,2347.0,0.65328,0.2706,-0.2706,0.65328],[524,54.5,76.5,2347.0,0.65328,0.2706,-0.2706,0.65328],[524,61.5,20.5,2354.0,0.65328,0.2706,-0.2706,0.65328],[524,61.5,76.5,2354.0,0.65328,0.2706,-0.2706,0.65328],[524,92.8,55.0,2407.2,0.2706,0.65328,-0.65328,0.2706],[524,-92.8,55.0,2592.8,-0.2706,0.65328,0.65328,0.2706],[524,92.8,55.0,2592.8,0.65328,0.2706,-0.2706,0.65328],[524,-70.0,-35.0,2330.0,0.70711,0.0,0.0,0.70711],[524,70.0,-35.0,2330.0,0.70711,0.0,0.0,0.70711],[524,0.0,65.0,2360.0,-0.5,-0.5,0.5,0.5],[524,0.0,55.0,2640.0,0.70711,0.0,0.0,0.70711],[524,140.0,55.0,2500.0,0.5,0.5,-0.5,0.5],[524,-140.0,55.0,2500.0,-0.5,0.5,0.5,0.5],[524,15.0,5.0,2500.0,0.0,0.0,0.0,1.0],[524,-15.0,5.0,2500.0,0.0,-1.0,0.0,0.0],[524,0.0,5.0,2500.0,0.0,0.0,0.0,1.0],[524,0.0,40.0,2500.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,2500.0,0.0,0.0,0.0,1.0],[524,0.0,5.1,2600.0,0.0,0.0,0.0,1.0],[524,200.0,-15.0,2500.0,0.0,0.0,0.0,1.0],[524,-200.0,-15.0,2500.0,0.0,0.0,0.0,1.0],[524,100.0,-15.0,2600.0,0.0,0.0,0.0,1.0],[524,100.0,-15.0,2500.0,0.0,0.0,0.0,1.0],[524,100.0,-15.0,2400.0,0.0,0.0,0.0,1.0],[524,-100.0,-15.0,2600.0,0.0,0.0,0.0,1.0],[524,-100.0,-15.0,2500.0,0.0,0.0,0.0,1.0],[524,-100.0,-15.0,2400.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,2700.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,2600.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,2500.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,2400.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,2250.0,0.0,0.0,0.0,1.0],[524,-70.0,-35.0,2170.0,-0.70711,0.0,0.0,0.70711],[524,70.0,-35.0,2170.0,-0.70711,0.0,0.0,0.70711],[524,0.0,65.0,2170.0,-0.5,-0.5,0.5,0.5],[524,100.0,65.0,2170.0,-0.5,-0.5,0.5,0.5],[524,-100.0,65.0,2170.0,-0.5,-0.5,0.5,0.5],[524,0.0,20.0,2149.8,0.0,0.0,0.0,1.0],[524,0.0,2.5,2150.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2000.0,0.0,0.0,0.0,1.0],[524,0.0,21.0,2055.2,0.0,-1.0,0.0,0.0],[524,0.0,3.0,2050.0,0.0,0.0,0.0,1.0],[524,0.0,21.0,2044.8,0.0,0.0,0.0,1.0],[524,10.0,0.0,1970.0,0.0,-1.0,0.0,0.0],[524,-10.0,25.0,1950.2,0.0,-1.0,0.0,0.0],[524,0.0,5.0,1950.2,0.0,-1.0,0.0,0.0],[524,-10.0,0.0,1970.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2000.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,1900.0,0.0,0.0,0.0,1.0],[524,-7.0,10.0,1800.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,1800.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,1700.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,1600.0,0.0,0.0,0.0,1.0],[524,7.0,10.0,1500.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,1500.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,1400.0,0.0,0.0,0.0,1.0],[524,-7.0,10.0,1300.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,1300.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,1200.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,1100.0,0.0,0.0,0.0,1.0],[524,7.0,10.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,1045.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,900.0,0.0,-1.0,0.0,0.0],[524,0.0,5.0,849.8,0.0,0.0,0.0,1.0],[524,10.0,25.0,849.8,0.0,0.0,0.0,1.0],[524,0.0,-10.0,795.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,893.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,793.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,793.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,693.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,693.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,593.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,593.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,493.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,493.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,393.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,343.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,143.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-7.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,0.0,0.0,0.0,0.0,1.0],[524,90.0,382.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-93.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-143.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-343.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-493.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-493.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-593.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-593.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-693.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-693.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-793.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-793.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-893.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-893.0,0.0,0.0,0.0,1.0],[524,-10.0,-10.0,-795.0,0.0,-1.0,0.0,0.0],[524,10.0,-10.0,-795.0,0.0,-1.0,0.0,0.0],[524,0.0,5.0,-849.8,0.0,-1.0,0.0,0.0],[524,-10.0,25.0,-849.8,0.0,-1.0,0.0,0.0],[524,15.0,-5.0,343.0,0.0,0.0,0.0,1.0],[524,-15.0,-5.0,343.0,0.0,0.0,0.0,1.0],[524,15.0,-5.0,243.0,0.0,0.0,0.0,1.0],[524,-15.0,-5.0,243.0,0.0,0.0,0.0,1.0],[524,15.0,-5.0,143.0,0.0,0.0,0.0,1.0],[524,-15.0,-5.0,143.0,0.0,0.0,0.0,1.0],[524,15.0,-5.0,-143.0,0.0,0.0,0.0,1.0],[524,-15.0,-5.0,-143.0,0.0,0.0,0.0,1.0],[524,15.0,-5.0,-243.0,0.0,0.0,0.0,1.0],[524,-15.0,-5.0,-243.0,0.0,0.0,0.0,1.0],[524,15.0,-5.0,-343.0,0.0,0.0,0.0,1.0],[524,-15.0,-5.0,-343.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,240.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,160.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,80.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,-80.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,-160.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,-240.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-900.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1000.0,0.0,0.0,0.0,1.0],[524,-7.0,10.0,-1000.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1100.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1200.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1300.0,0.0,0.0,0.0,1.0],[524,7.0,10.0,-1300.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1400.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1500.0,0.0,0.0,0.0,1.0],[524,-7.0,10.0,-1500.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1600.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1700.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1755.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1800.0,0.0,0.0,0.0,1.0],[524,7.0,10.0,-1800.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1900.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-2000.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1950.2,0.0,0.0,0.0,1.0],[524,10.0,25.0,-1950.2,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1970.0,0.0,0.0,0.0,1.0],[524,45.0,9.0,-2365.0,0.0,0.0,0.0,1.0],[524,45.0,4.0,-2365.0,0.0,-1.0,0.0,0.0],[524,-45.0,9.0,-2365.0,0.0,0.0,0.0,1.0],[524,-45.0,4.0,-2365.0,0.0,-1.0,0.0,0.0],[524,0.0,5.0,-2485.0,0.0,-0.70711,0.0,0.70711],[524,0.0,5.0,-2515.0,0.0,0.70711,0.0,0.70711],[524,0.0,2.5,-2150.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[524,0.0,20.0,-2149.8,0.0,-0.99999,0.0,0.005],[524,0.0,21.0,-2055.2,0.0,0.0,0.0,1.0],[524,0.0,21.0,-2044.8,0.0,-1.0,0.0,0.0],[524,0.0,3.0,-2050.0,0.0,0.0,0.0,1.0],[524,163.0,55.0,-2551.0,0.65328,-0.2706,0.2706,0.65328],[524,163.0,105.0,-2551.0,0.65328,-0.2706,0.2706,0.65328],[524,-163.0,55.0,-2551.0,0.65328,0.2706,-0.2706,0.65328],[524,-163.0,105.0,-2551.0,0.65328,0.2706,-0.2706,0.65328],[524,163.0,55.0,-2449.0,-0.65328,0.2706,0.2706,0.65328],[524,163.0,5.0,-2449.0,-0.65328,0.2706,0.2706,0.65328],[524,-163.0,55.0,-2449.0,-0.65328,-0.2706,-0.2706,0.65328],[524,-163.0,5.0,-2449.0,-0.65328,-0.2706,-0.2706,0.65328],[524,-51.0,55.0,-2663.0,0.65328,0.2706,-0.2706,0.65328],[524,-51.0,105.0,-2663.0,0.65328,0.2706,-0.2706,0.65328],[524,51.0,55.0,-2663.0,0.65328,-0.2706,0.2706,0.65328],[524,51.0,105.0,-2663.0,0.65328,-0.2706,0.2706,0.65328],[524,-92.8,55.0,-2592.8,-0.65328,0.2706,0.2706,0.65328],[524,92.8,55.0,-2592.8,0.2706,0.65328,-0.65328,0.2706],[524,-92.8,55.0,-2407.2,-0.2706,0.65328,0.65328,0.2706],[524,-58.0,20.5,-2350.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-58.0,76.5,-2350.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-65.0,20.5,-2357.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-65.0,76.5,-2357.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-72.0,20.5,-2364.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-72.0,76.5,-2364.2,-0.2706,-0.65328,-0.65328,0.2706],[524,92.8,55.0,-2407.2,0.65328,0.2706,-0.2706,0.65328],[524,58.0,20.5,-2350.2,0.65328,-0.2706,0.2706,0.65328],[524,58.0,76.5,-2350.2,0.65328,-0.2706,0.2706,0.65328],[524,65.0,20.5,-2357.2,0.65328,-0.2706,0.2706,0.65328],[524,65.0,76.5,-2357.2,0.65328,-0.2706,0.2706,0.65328],[524,72.0,20.5,-2364.2,0.65328,-0.2706,0.2706,0.65328],[524,72.0,76.5,-2364.2,0.65328,-0.2706,0.2706,0.65328],[524,-70.0,-35.0,-2330.0,-0.70711,0.0,0.0,0.70711],[524,70.0,-35.0,-2330.0,-0.70711,0.0,0.0,0.70711],[524,0.0,65.0,-2360.0,0.5,0.5,0.5,0.5],[524,0.0,55.0,-2640.0,-0.70711,0.0,0.0,0.70711],[524,140.0,55.0,-2500.0,0.5,0.5,-0.5,0.5],[524,-140.0,55.0,-2500.0,-0.5,0.5,0.5,0.5],[524,-15.0,5.0,-2500.0,0.0,-1.0,0.0,0.0],[524,15.0,5.0,-2500.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-2500.0,0.0,0.0,0.0,1.0],[524,0.0,40.0,-2500.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-2500.0,0.0,-1.0,0.0,0.0],[524,0.0,5.0,-2600.0,0.0,0.0,0.0,1.0],[524,200.0,-15.0,-2500.0,0.0,0.0,0.0,1.0],[524,-300.0,-15.0,-2500.0,0.0,0.0,0.0,1.0],[524,-200.0,-15.0,-2500.0,0.0,0.0,0.0,1.0],[524,100.0,-15.0,-2600.0,0.0,0.0,0.0,1.0],[524,100.0,-15.0,-2500.0,0.0,0.0,0.0,1.0],[524,100.0,-15.0,-2400.0,0.0,0.0,0.0,1.0],[524,-100.0,-15.0,-2600.0,0.0,0.0,0.0,1.0],[524,-100.0,-15.0,-2500.0,0.0,0.0,0.0,1.0],[524,-100.0,-15.0,-2400.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,-2700.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,-2600.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,-2500.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,-2400.0,0.0,0.0,0.0,1.0],[524,0.0,-16.0,-2300.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-2250.0,0.0,0.0,0.0,1.0],[524,-70.0,-35.0,-2170.0,0.70711,0.0,0.0,0.70711],[524,70.0,-35.0,-2170.0,0.70711,0.0,0.0,0.70711],[524,0.0,65.0,-2170.0,0.5,0.5,0.5,0.5],[524,100.0,65.0,-2170.0,0.5,0.5,0.5,0.5],[524,-100.0,65.0,-2170.0,0.5,0.5,0.5,0.5],[524,1200.0,0.0,0.0,0.0,0.0,0.0,1.0]]},{"key":"brewers","name":"Brewer's Bane","noart":12,"i":[[524,0.0,-25.0,1700.0,0.0,0.70711,0.0,0.70711],[524,0.0,-28.0,1703.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,40.0,4.0,2475.0,0.0,-1.0,0.0,0.0],[524,0.0,-41.0,2150.0,0.0,-1.0,0.0,0.0],[524,40.0,4.0,2585.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1900.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,2000.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,2100.0,0.0,0.70711,0.0,0.70711],[524,0.0,-41.0,2000.0,0.0,0.0,0.0,1.0],[524,0.0,-41.0,1900.0,0.0,0.0,0.0,1.0],[524,0.0,16.0,2000.0,0.0,0.0,-1.0,0.0],[524,0.0,16.0,1900.0,0.0,0.0,-1.0,0.0],[524,0.0,-41.0,2100.0,0.0,0.0,0.0,1.0],[524,0.0,-41.0,2000.0,0.0,0.0,0.0,1.0],[524,0.0,-41.0,1900.0,0.0,0.0,0.0,1.0],[524,0.0,16.0,2100.0,0.0,0.0,-1.0,0.0],[524,0.0,16.0,2000.0,0.0,0.0,-1.0,0.0],[524,0.0,16.0,1900.0,0.0,0.0,-1.0,0.0],[524,-65.0,-40.0,1830.0,0.70711,0.0,0.0,0.70711],[524,65.0,-40.0,1830.0,0.70711,0.0,0.0,0.70711],[524,40.0,-64.0,1880.0,0.0,0.0,0.0,1.0],[524,-9.0,-30.0,1750.0,0.0,-1.0,0.0,0.0],[524,-9.0,0.0,1640.0,0.0,0.0,0.0,1.0],[524,-9.0,0.0,1560.0,0.0,0.0,0.0,1.0],[524,-9.0,0.0,1480.0,0.0,0.0,0.0,1.0],[524,-9.0,0.0,1400.0,0.0,0.0,0.0,1.0],[524,-9.0,0.0,1320.0,0.0,0.0,0.0,1.0],[524,-9.0,0.0,1240.0,0.0,0.0,0.0,1.0],[524,-9.0,0.0,1160.0,0.0,0.0,0.0,1.0],[524,-9.0,0.0,1080.0,0.0,0.0,0.0,1.0],[524,-9.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,-9.0,0.0,920.0,0.0,0.0,0.0,1.0],[524,-9.0,0.0,840.0,0.0,0.0,0.0,1.0],[524,-9.0,0.0,760.0,0.0,0.0,0.0,1.0],[524,-9.0,0.0,680.0,0.0,0.0,0.0,1.0],[524,0.0,-35.0,1800.0,0.0,-1.0,0.0,0.0],[524,0.0,-35.0,1700.0,0.0,0.0,0.0,1.0],[524,0.0,-35.0,1600.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,1600.0,0.0,0.0,0.0,1.0],[524,0.0,-35.0,1500.0,0.0,0.0,0.0,1.0],[524,0.0,-35.0,1400.0,0.0,-1.0,0.0,0.0],[524,0.0,-35.0,1300.0,0.0,0.0,0.0,1.0],[524,0.0,-35.0,1200.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,1200.0,0.0,0.0,0.0,1.0],[524,0.0,-35.0,1100.0,0.0,-1.0,0.0,0.0],[524,0.0,-35.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,-35.0,900.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,900.0,0.0,0.0,0.0,1.0],[524,0.0,-35.0,800.0,0.0,-1.0,0.0,0.0],[524,0.0,-35.0,700.0,0.0,0.0,0.0,1.0],[524,0.0,-35.0,600.0,0.0,0.0,0.0,1.0],[524,8.0,-30.0,550.0,0.0,0.0,0.0,1.0],[524,0.0,-22.0,575.0,0.0,0.0,0.0,1.0],[524,-14.9,-40.0,650.0,0.0,0.0,0.0,1.0],[524,-14.9,-20.0,650.0,0.0,0.0,0.0,1.0],[524,0.0,-35.0,550.0,0.0,0.0,0.0,1.0],[524,-65.0,-40.0,570.0,-0.70711,0.0,0.0,0.70711],[524,65.0,-40.0,570.0,-0.70711,0.0,0.0,0.70711],[524,40.0,-64.0,520.0,0.0,0.0,0.0,1.0],[524,0.0,-40.0,470.0,0.0,0.0,0.0,1.0],[524,0.0,-41.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,-41.0,400.0,0.0,0.0,0.0,1.0],[524,0.0,-41.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,-41.0,200.0,0.0,0.0,0.0,1.0],[524,0.0,-41.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,16.0,500.0,0.0,0.0,-1.0,0.0],[524,0.0,16.0,400.0,0.0,0.0,-1.0,0.0],[524,0.0,16.0,300.0,0.0,0.0,-1.0,0.0],[524,0.0,16.0,200.0,0.0,0.0,-1.0,0.0],[524,0.0,16.0,100.0,0.0,0.0,-1.0,0.0],[524,0.0,16.0,400.0,0.0,0.0,-1.0,0.0],[524,0.0,16.0,300.0,0.0,0.0,-1.0,0.0],[524,0.0,16.0,200.0,0.0,0.0,-1.0,0.0],[524,0.0,16.0,100.0,0.0,0.0,-1.0,0.0],[524,0.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-10.0,-36.0,200.0,0.0,0.0,0.0,1.0],[524,40.0,-70.0,200.0,0.0,0.0,0.0,1.0],[524,0.0,-30.0,210.0,0.0,0.0,0.0,1.0],[524,10.0,-46.0,250.0,0.0,-1.0,0.0,0.0],[524,10.0,-46.0,150.0,0.0,0.0,0.0,1.0],[524,75.0,0.0,-125.0,0.0,0.70711,0.0,0.70711],[524,-75.0,0.0,-125.0,0.0,0.0,0.0,1.0],[524,75.0,0.0,-275.0,0.0,-0.70711,0.0,0.70711],[524,-75.0,0.0,-275.0,0.0,-1.0,0.0,0.0],[524,75.0,0.0,-325.0,0.0,0.70711,0.0,0.70711],[524,125.0,0.0,-375.0,0.0,0.0,0.0,1.0],[524,175.0,0.0,-425.0,0.0,-0.70711,0.0,0.70711],[524,225.0,0.0,-475.0,0.0,-1.0,0.0,0.0],[524,275.0,0.0,-525.0,0.0,0.0,0.0,1.0],[524,400.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,500.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,300.0,0.0,-500.0,0.0,0.0,0.0,1.0],[524,275.0,0.0,-425.0,0.0,0.0,0.0,1.0],[524,200.0,0.0,-400.0,0.0,0.0,0.0,1.0],[524,175.0,0.0,-325.0,0.0,0.0,0.0,1.0],[524,100.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,425.0,0.0,-575.0,0.0,0.0,0.0,1.0],[524,475.0,0.0,-575.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,90.0,168.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,139.0,0.0,0.0,0.0,1.0],[524,35.0,5.0,45.1,0.0,0.0,0.0,1.0],[524,-35.0,5.0,45.1,0.0,0.0,0.0,1.0],[524,55.0,5.0,45.1,0.0,0.0,0.0,1.0],[524,-55.0,5.0,45.1,0.0,0.0,0.0,1.0],[524,-30.0,0.0,40.0,0.70711,0.0,0.0,0.70711],[524,30.0,0.0,40.0,0.70711,0.0,0.0,0.70711],[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,50.0,0.0,-350.0,0.0,0.0,0.0,1.0],[524,250.0,0.0,-550.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,49.0,0.0,0.0,0.0,1.0],[524,35.0,5.0,-45.0,0.0,0.0,0.0,1.0],[524,-35.0,5.0,-45.0,0.0,0.0,0.0,1.0],[524,55.0,5.0,-45.0,0.0,0.0,0.0,1.0],[524,-55.0,5.0,-45.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,45.0,-200.0,0.0,0.0,-1.0,0.0],[524,25.0,0.0,-225.0,0.0,0.0,0.0,1.0],[524,25.0,0.0,-175.0,0.0,0.0,0.0,1.0],[524,-25.0,0.0,-225.0,0.0,0.0,0.0,1.0],[524,-25.0,0.0,-175.0,0.0,0.0,0.0,1.0],[524,60.6,5.0,-53.5,0.0,0.38268,0.0,0.92388],[524,74.8,5.0,-67.6,0.0,0.38268,0.0,0.92388],[524,92.8,-20.0,-107.2,0.65328,0.2706,-0.2706,0.65328],[524,132.5,5.0,-125.4,0.0,0.38268,0.0,0.92388],[524,146.5,5.0,-139.5,0.0,0.38268,0.0,0.92388],[524,140.0,30.0,-200.0,0.5,0.5,-0.5,0.5],[524,160.6,5.0,-253.5,0.0,0.38268,0.0,0.92388],[524,174.8,5.0,-267.6,0.0,0.38268,0.0,0.92388],[524,192.8,-20.0,-307.2,0.65328,0.2706,-0.2706,0.65328],[524,232.5,5.0,-325.4,0.0,0.38268,0.0,0.92388],[524,246.5,5.0,-339.5,0.0,0.38268,0.0,0.92388],[524,260.6,5.0,-353.5,0.0,0.38268,0.0,0.92388],[524,274.8,5.0,-367.6,0.0,0.38268,0.0,0.92388],[524,292.8,-20.0,-407.2,0.65328,0.2706,-0.2706,0.65328],[524,332.5,5.0,-425.4,0.0,0.38268,0.0,0.92388],[524,346.5,5.0,-439.5,0.0,0.38268,0.0,0.92388],[524,340.0,-20.0,-500.0,0.5,0.5,-0.5,0.5],[524,400.0,-20.0,-560.0,0.70711,0.0,0.0,0.70711],[524,500.0,-20.0,-560.0,0.70711,0.0,0.0,0.70711],[524,-60.6,5.0,-53.5,0.0,-0.38268,0.0,0.92388],[524,-74.8,5.0,-67.6,0.0,-0.38268,0.0,0.92388],[524,-92.8,-20.0,-107.2,0.65328,-0.2706,0.2706,0.65328],[524,-132.5,5.0,-125.4,0.0,-0.38268,0.0,0.92388],[524,-146.5,5.0,-139.5,0.0,-0.38268,0.0,0.92388],[524,-140.0,-20.0,-200.0,0.5,-0.5,0.5,0.5],[524,-146.5,5.0,-260.6,0.0,0.38268,0.0,0.92388],[524,-132.4,5.0,-274.7,0.0,0.38268,0.0,0.92388],[524,-92.8,-20.0,-292.8,0.2706,-0.65328,0.65328,0.2706],[524,-74.7,5.0,-332.4,0.0,0.38268,0.0,0.92388],[524,-60.6,5.0,-346.5,0.0,0.38268,0.0,0.92388],[524,-46.5,5.0,-360.6,0.0,0.38268,0.0,0.92388],[524,-32.4,5.0,-374.7,0.0,0.38268,0.0,0.92388],[524,7.2,-20.0,-392.8,0.2706,-0.65328,0.65328,0.2706],[524,25.3,5.0,-432.4,0.0,0.38268,0.0,0.92388],[524,39.4,5.0,-446.5,0.0,0.38268,0.0,0.92388],[524,53.5,5.0,-460.6,0.0,0.38268,0.0,0.92388],[524,67.6,5.0,-474.7,0.0,0.38268,0.0,0.92388],[524,107.2,-20.0,-492.8,0.2706,-0.65328,0.65328,0.2706],[524,125.3,5.0,-532.4,0.0,0.38268,0.0,0.92388],[524,139.4,5.0,-546.5,0.0,0.38268,0.0,0.92388],[524,153.5,5.0,-560.6,0.0,0.38268,0.0,0.92388],[524,167.6,5.0,-574.7,0.0,0.38268,0.0,0.92388],[524,207.2,-20.0,-592.8,0.2706,-0.65328,0.65328,0.2706],[524,225.3,5.0,-632.4,0.0,0.38268,0.0,0.92388],[524,239.4,5.0,-646.5,0.0,0.38268,0.0,0.92388],[524,300.0,-20.0,-640.0,0.0,-0.70711,0.70711,0.0],[524,400.0,-20.0,-640.0,0.0,-0.70711,0.70711,0.0],[524,500.0,-20.0,-640.0,0.0,-0.70711,0.70711,0.0],[524,0.0,-20.0,-100.0,0.0,0.0,0.0,1.0],[524,100.0,-20.0,-100.0,0.0,0.0,0.0,1.0],[524,-100.0,-20.0,-100.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-200.0,0.0,0.0,0.0,1.0],[524,100.0,-20.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-100.0,-20.0,-200.0,0.0,0.70711,0.0,0.70711],[524,200.0,-20.0,-300.0,0.0,0.0,0.0,1.0],[524,100.0,-20.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-300.0,0.0,0.0,0.0,1.0],[524,-100.0,-20.0,-300.0,0.0,0.0,0.0,1.0],[524,300.0,-20.0,-400.0,0.0,0.0,0.0,1.0],[524,200.0,-20.0,-400.0,0.0,0.0,0.0,1.0],[524,100.0,-20.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-400.0,0.0,0.0,0.0,1.0],[524,400.0,-20.0,-500.0,0.0,0.0,0.0,1.0],[524,300.0,-20.0,-500.0,0.0,0.0,0.0,1.0],[524,200.0,-20.0,-500.0,0.0,0.0,0.0,1.0],[524,100.0,-20.0,-500.0,0.0,0.0,0.0,1.0],[524,500.0,-20.0,-600.0,0.0,0.0,0.0,1.0],[524,400.0,-20.0,-600.0,0.0,0.0,0.0,1.0],[524,300.0,-20.0,-600.0,0.0,0.0,0.0,1.0],[524,200.0,-20.0,-600.0,0.0,0.0,0.0,1.0],[524,500.0,-20.0,-700.0,0.0,0.0,0.0,1.0],[524,400.0,-20.0,-700.0,0.0,0.0,0.0,1.0],[524,300.0,-20.0,-700.0,0.0,0.0,0.0,1.0],[524,200.0,-20.0,-700.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,-100.0,0.0,0.0,-1.0,0.0],[524,100.0,30.0,-100.0,0.0,0.0,-1.0,0.0],[524,-100.0,30.0,-100.0,0.0,0.0,-1.0,0.0],[524,0.0,30.0,-200.0,0.70711,0.0,-0.70711,0.0],[524,100.0,30.0,-200.0,0.70711,0.0,-0.70711,0.0],[524,-100.0,30.0,-200.0,0.70711,0.0,-0.70711,0.0],[524,200.0,30.0,-300.0,0.0,0.0,-1.0,0.0],[524,100.0,30.0,-300.0,0.0,0.0,-1.0,0.0],[524,0.0,30.0,-300.0,0.0,0.0,-1.0,0.0],[524,-100.0,30.0,-300.0,0.0,0.0,-1.0,0.0],[524,300.0,30.0,-400.0,0.0,0.0,-1.0,0.0],[524,200.0,30.0,-400.0,0.0,0.0,-1.0,0.0],[524,100.0,30.0,-400.0,0.0,0.0,-1.0,0.0],[524,0.0,30.0,-400.0,0.0,0.0,-1.0,0.0],[524,400.0,30.0,-500.0,0.0,0.0,-1.0,0.0],[524,300.0,30.0,-500.0,0.0,0.0,-1.0,0.0],[524,200.0,30.0,-500.0,0.0,0.0,-1.0,0.0],[524,100.0,30.0,-500.0,0.0,0.0,-1.0,0.0],[524,500.0,30.0,-600.0,0.0,0.0,-1.0,0.0],[524,400.0,30.0,-600.0,0.0,0.0,-1.0,0.0],[524,300.0,30.0,-600.0,0.0,0.0,-1.0,0.0],[524,200.0,30.0,-600.0,0.0,0.0,-1.0,0.0],[524,500.0,30.0,-700.0,0.0,0.0,-1.0,0.0],[524,400.0,30.0,-700.0,0.0,0.0,-1.0,0.0],[524,300.0,30.0,-700.0,0.0,0.0,-1.0,0.0],[524,200.0,30.0,-700.0,0.0,0.0,-1.0,0.0],[524,545.1,5.0,-555.0,0.0,0.70711,0.0,0.70711],[524,545.1,5.0,-645.0,0.0,0.70711,0.0,0.70711],[524,520.0,-55.1,-640.0,0.0,0.70711,0.0,0.70711],[524,520.0,-34.1,-640.0,0.0,0.70711,0.0,0.70711],[524,520.0,0.1,-640.0,0.0,0.70711,0.0,0.70711],[524,600.0,-20.0,-660.0,0.0,0.0,0.0,1.0],[524,700.0,-20.0,-660.0,0.0,0.0,0.0,1.0],[524,800.0,-20.0,-660.0,0.0,0.0,0.0,1.0],[524,700.0,-63.0,-640.0,0.0,0.70711,0.0,0.70711],[524,750.0,-39.0,-590.0,0.0,-0.70711,0.0,0.70711],[524,600.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[524,700.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[524,800.0,-40.0,-600.0,0.0,-0.70711,0.0,0.70711],[524,900.0,10.0,-600.0,0.0,0.0,0.0,1.0],[524,880.0,-34.1,-640.0,0.0,0.70711,0.0,0.70711],[524,880.0,-68.25,-640.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,-625.0,0.0,0.70711,0.0,0.70711],[524,900.0,-34.2,-585.0,0.0,0.70711,0.0,0.70711],[524,920.0,-34.1,-640.0,0.0,0.70711,0.0,0.70711],[524,920.0,-68.3,-640.0,0.0,0.70711,0.0,0.70711],[524,855.3,0.0,-584.0,0.0,0.0,0.0,1.0],[524,855.3,0.0,-661.0,0.0,0.0,0.0,1.0],[524,860.0,5.0,-607.0,0.0,0.0,0.0,1.0],[524,860.0,5.0,-638.0,0.0,0.0,0.0,1.0],[524,880.0,5.0,-607.0,0.0,0.0,0.0,1.0],[524,880.0,5.0,-638.0,0.0,0.0,0.0,1.0],[524,900.0,5.0,-607.0,0.0,0.0,0.0,1.0],[524,900.0,5.0,-638.0,0.0,0.0,0.0,1.0],[524,920.0,5.0,-607.0,0.0,0.0,0.0,1.0],[524,920.0,5.0,-638.0,0.0,0.0,0.0,1.0],[524,940.0,5.0,-607.0,0.0,0.0,0.0,1.0],[524,940.0,5.0,-638.0,0.0,0.0,0.0,1.0],[524,944.7,0.0,-584.0,0.0,-1.0,0.0,0.0],[524,944.7,0.0,-661.0,0.0,-1.0,0.0,0.0],[524,855.3,-34.2,-554.0,0.0,0.0,0.0,1.0],[524,855.3,-34.2,-631.0,0.0,0.0,0.0,1.0],[524,860.0,-29.2,-577.0,0.0,0.0,0.0,1.0],[524,860.0,-29.2,-608.0,0.0,0.0,0.0,1.0],[524,880.0,-29.2,-577.0,0.0,0.0,0.0,1.0],[524,880.0,-29.2,-608.0,0.0,0.0,0.0,1.0],[524,900.0,-29.2,-577.0,0.0,0.0,0.0,1.0],[524,900.0,-29.2,-608.0,0.0,0.0,0.0,1.0],[524,920.0,-29.2,-577.0,0.0,0.0,0.0,1.0],[524,920.0,-29.2,-608.0,0.0,0.0,0.0,1.0],[524,940.0,-29.2,-577.0,0.0,0.0,0.0,1.0],[524,940.0,-29.2,-608.0,0.0,0.0,0.0,1.0],[524,944.7,-34.2,-554.0,0.0,-1.0,0.0,0.0],[524,944.7,-34.2,-631.0,0.0,-1.0,0.0,0.0],[524,1050.0,-39.0,-590.0,0.0,0.70711,0.0,0.70711],[524,1100.0,-63.0,-640.0,0.0,0.70711,0.0,0.70711],[524,1000.0,-20.0,-660.0,0.0,0.0,0.0,1.0],[524,1100.0,-20.0,-660.0,0.0,0.0,0.0,1.0],[524,1200.0,-20.0,-660.0,0.0,0.0,0.0,1.0],[524,1000.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[524,1100.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[524,1200.0,-40.0,-600.0,0.0,-0.70711,0.0,0.70711],[524,600.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,700.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,800.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,1100.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,1200.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,600.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,700.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,800.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,1000.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,1100.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,1200.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,1500.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,1255.0,5.0,-555.0,0.0,0.70711,0.0,0.70711],[524,1255.0,5.0,-645.0,0.0,0.70711,0.0,0.70711],[524,1300.0,-20.0,-600.0,0.0,-1.0,0.0,0.0],[524,1400.0,-20.0,-500.0,0.0,0.0,0.0,1.0],[524,1400.0,-20.0,-600.0,0.0,0.70711,0.0,0.70711],[524,1400.0,-20.0,-700.0,0.0,0.0,0.0,1.0],[524,1500.0,-20.0,-400.0,0.0,0.0,0.0,1.0],[524,1500.0,-20.0,-500.0,0.0,0.0,0.0,1.0],[524,1500.0,-20.0,-700.0,0.0,0.0,0.0,1.0],[524,1500.0,-20.0,-800.0,0.0,0.0,0.0,1.0],[524,1600.0,-20.0,-500.0,0.0,0.0,0.0,1.0],[524,1600.0,-20.0,-600.0,0.0,0.70711,0.0,0.70711],[524,1600.0,-20.0,-700.0,0.0,0.0,0.0,1.0],[524,1700.0,-20.0,-600.0,0.0,-1.0,0.0,0.0],[524,1300.0,30.0,-600.0,-1.0,0.0,0.0,0.0],[524,1400.0,30.0,-500.0,0.0,0.0,-1.0,0.0],[524,1400.0,30.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,1400.0,30.0,-700.0,0.0,0.0,-1.0,0.0],[524,1500.0,30.0,-400.0,0.0,0.0,-1.0,0.0],[524,1500.0,30.0,-500.0,0.0,0.0,-1.0,0.0],[524,1500.0,30.0,-700.0,0.0,0.0,-1.0,0.0],[524,1500.0,30.0,-800.0,0.0,0.0,-1.0,0.0],[524,1600.0,30.0,-500.0,0.0,0.0,-1.0,0.0],[524,1600.0,30.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,1600.0,30.0,-700.0,0.0,0.0,-1.0,0.0],[524,1700.0,30.0,-600.0,-1.0,0.0,0.0,0.0],[524,1500.0,-20.0,-600.0,0.0,0.0,0.0,1.0],[524,1500.0,30.0,-600.0,0.0,0.0,-1.0,0.0],[524,1745.0,5.0,-555.0,0.0,0.70711,0.0,0.70711],[524,1745.0,5.0,-645.0,0.0,0.70711,0.0,0.70711],[524,1240.0,-50.0,-600.0,0.0,0.0,-0.70711,0.70711],[524,1759.9,-50.0,-600.0,0.0,0.0,0.70711,0.70711],[524,1500.0,10.0,-600.0,0.0,0.0,0.0,1.0],[524,1500.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,1500.0,45.0,-600.0,0.0,0.0,-1.0,0.0],[524,1400.0,0.0,-575.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,-625.0,0.0,0.0,0.0,1.0],[524,1600.0,0.0,-575.0,0.0,0.0,0.0,1.0],[524,1600.0,0.0,-625.0,0.0,0.0,0.0,1.0],[524,1475.0,0.0,-675.0,0.0,0.0,0.0,1.0],[524,1525.0,0.0,-675.0,0.0,0.0,0.0,1.0],[524,1475.0,0.0,-525.0,0.0,0.0,0.0,1.0],[524,1525.0,0.0,-525.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,1600.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,1300.0,-20.0,-640.0,-0.70711,0.0,0.0,0.70711],[524,1500.0,4.4,-740.0,-0.70711,0.0,0.0,0.70711],[524,1700.0,-20.0,-640.0,-0.70711,0.0,0.0,0.70711],[524,1300.0,-20.0,-560.0,0.70711,0.0,0.0,0.70711],[524,1500.0,4.4,-460.0,0.70711,0.0,0.0,0.70711],[524,1700.0,-20.0,-560.0,0.70711,0.0,0.0,0.70711],[524,1560.6,5.0,-453.5,0.0,0.38268,0.0,0.92388],[524,1574.8,5.0,-467.6,0.0,0.38268,0.0,0.92388],[524,1592.8,-20.0,-507.2,0.65328,0.2706,-0.2706,0.65328],[524,1632.5,5.0,-525.4,0.0,0.38268,0.0,0.92388],[524,1646.5,5.0,-539.5,0.0,0.38268,0.0,0.92388],[524,1646.5,5.0,-660.6,0.0,-0.38268,0.0,0.92388],[524,1632.5,5.0,-674.7,0.0,-0.38268,0.0,0.92388],[524,1592.8,-20.0,-692.8,0.2706,0.65328,-0.65328,0.2706],[524,1574.8,5.0,-732.4,0.0,-0.38268,0.0,0.92388],[524,1560.6,5.0,-746.5,0.0,-0.38268,0.0,0.92388],[524,1439.4,5.0,-453.5,0.0,-0.38268,0.0,0.92388],[524,1425.2,5.0,-467.6,0.0,-0.38268,0.0,0.92388],[524,1407.2,-20.0,-507.2,0.65328,-0.2706,0.2706,0.65328],[524,1367.5,5.0,-525.4,0.0,-0.38268,0.0,0.92388],[524,1353.5,5.0,-539.5,0.0,-0.38268,0.0,0.92388],[524,1353.5,5.0,-660.6,0.0,0.38268,0.0,0.92388],[524,1367.5,5.0,-674.7,0.0,0.38268,0.0,0.92388],[524,1407.2,-20.0,-692.8,0.2706,-0.65328,0.65328,0.2706],[524,1425.2,5.0,-732.4,0.0,0.38268,0.0,0.92388],[524,1439.4,5.0,-746.5,0.0,0.38268,0.0,0.92388],[524,1800.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,1900.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,2000.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,2200.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,2300.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,2400.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,1800.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,1900.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,2000.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,2200.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,2300.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,2400.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,1800.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[524,1900.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[524,2000.0,-40.0,-600.0,0.0,-0.70711,0.0,0.70711],[524,1800.0,-20.0,-540.0,0.0,-1.0,0.0,0.0],[524,1900.0,-20.0,-540.0,0.0,-1.0,0.0,0.0],[524,2000.0,-20.0,-540.0,0.0,-1.0,0.0,0.0],[524,1900.0,-63.0,-640.0,0.0,0.70711,0.0,0.70711],[524,1950.0,-39.0,-610.0,0.0,-0.70711,0.0,0.70711],[524,2100.0,10.0,-600.0,0.0,0.0,0.0,1.0],[524,2080.0,-34.1,-640.0,0.0,0.70711,0.0,0.70711],[524,2080.0,-68.25,-640.0,0.0,0.70711,0.0,0.70711],[524,2100.0,0.0,-580.0,0.0,0.70711,0.0,0.70711],[524,2100.0,-34.2,-615.0,0.0,0.70711,0.0,0.70711],[524,2120.0,-34.1,-640.0,0.0,0.70711,0.0,0.70711],[524,2120.0,-68.3,-640.0,0.0,0.70711,0.0,0.70711],[524,2055.3,0.0,-539.0,0.0,0.0,0.0,1.0],[524,2055.3,0.0,-616.0,0.0,0.0,0.0,1.0],[524,2060.0,5.0,-562.0,0.0,0.0,0.0,1.0],[524,2060.0,5.0,-593.0,0.0,0.0,0.0,1.0],[524,2080.0,5.0,-562.0,0.0,0.0,0.0,1.0],[524,2080.0,5.0,-593.0,0.0,0.0,0.0,1.0],[524,2100.0,5.0,-562.0,0.0,0.0,0.0,1.0],[524,2100.0,5.0,-593.0,0.0,0.0,0.0,1.0],[524,2120.0,5.0,-562.0,0.0,0.0,0.0,1.0],[524,2120.0,5.0,-593.0,0.0,0.0,0.0,1.0],[524,2140.0,5.0,-562.0,0.0,0.0,0.0,1.0],[524,2140.0,5.0,-593.0,0.0,0.0,0.0,1.0],[524,2144.7,0.0,-539.0,0.0,-1.0,0.0,0.0],[524,2144.7,0.0,-616.0,0.0,-1.0,0.0,0.0],[524,2055.3,-34.2,-569.0,0.0,0.0,0.0,1.0],[524,2055.3,-34.2,-646.0,0.0,0.0,0.0,1.0],[524,2060.0,-29.2,-592.0,0.0,0.0,0.0,1.0],[524,2060.0,-29.2,-623.0,0.0,0.0,0.0,1.0],[524,2080.0,-29.2,-592.0,0.0,0.0,0.0,1.0],[524,2080.0,-29.2,-623.0,0.0,0.0,0.0,1.0],[524,2100.0,-29.2,-592.0,0.0,0.0,0.0,1.0],[524,2100.0,-29.2,-623.0,0.0,0.0,0.0,1.0],[524,2120.0,-29.2,-592.0,0.0,0.0,0.0,1.0],[524,2120.0,-29.2,-623.0,0.0,0.0,0.0,1.0],[524,2140.0,-29.2,-592.0,0.0,0.0,0.0,1.0],[524,2140.0,-29.2,-623.0,0.0,0.0,0.0,1.0],[524,2144.7,-34.2,-569.0,0.0,-1.0,0.0,0.0],[524,2144.7,-34.2,-646.0,0.0,-1.0,0.0,0.0],[524,2200.0,-20.0,-540.0,0.0,-1.0,0.0,0.0],[524,2300.0,-20.0,-540.0,0.0,-1.0,0.0,0.0],[524,2400.0,-20.0,-540.0,0.0,-1.0,0.0,0.0],[524,2250.0,-39.0,-610.0,0.0,0.70711,0.0,0.70711],[524,2300.0,-63.0,-640.0,0.0,0.70711,0.0,0.70711],[524,2200.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[524,2300.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[524,2400.0,-40.0,-600.0,0.0,-0.70711,0.0,0.70711],[524,2700.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,2500.0,-20.0,-600.0,0.0,0.0,0.0,1.0],[524,2600.0,-20.0,-500.0,0.0,0.0,0.0,1.0],[524,2600.0,-20.0,-600.0,0.0,0.70711,0.0,0.70711],[524,2600.0,-20.0,-700.0,0.0,0.0,0.0,1.0],[524,2700.0,-20.0,-400.0,0.0,0.0,0.0,1.0],[524,2700.0,-20.0,-500.0,0.0,0.0,0.0,1.0],[524,2700.0,-20.0,-700.0,0.0,0.0,0.0,1.0],[524,2700.0,-20.0,-800.0,0.0,0.70711,0.0,0.70711],[524,2800.0,-20.0,-500.0,0.0,0.0,0.0,1.0],[524,2800.0,-20.0,-600.0,0.0,0.70711,0.0,0.70711],[524,2800.0,-20.0,-700.0,0.0,0.0,0.0,1.0],[524,2900.0,-20.0,-600.0,0.0,0.0,0.0,1.0],[524,2440.0,-50.0,-600.0,0.0,0.0,-0.70711,0.70711],[524,2500.0,30.0,-600.0,0.0,0.0,-1.0,0.0],[524,2600.0,30.0,-500.0,0.0,0.0,-1.0,0.0],[524,2600.0,30.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,2600.0,30.0,-700.0,0.0,0.0,-1.0,0.0],[524,2700.0,30.0,-400.0,0.0,0.0,-1.0,0.0],[524,2700.0,30.0,-500.0,0.0,0.0,-1.0,0.0],[524,2700.0,30.0,-700.0,0.0,0.0,-1.0,0.0],[524,2700.0,30.0,-800.0,0.70711,0.0,-0.70711,0.0],[524,2800.0,30.0,-500.0,0.0,0.0,-1.0,0.0],[524,2800.0,30.0,-600.0,0.70711,0.0,-0.70711,0.0],[524,2800.0,30.0,-700.0,0.0,0.0,-1.0,0.0],[524,2900.0,30.0,-600.0,0.0,0.0,-1.0,0.0],[524,2700.0,-50.0,-860.0,0.5,0.5,0.5,0.5],[524,2700.0,-20.0,-600.0,0.0,0.0,0.0,1.0],[524,2700.0,30.0,-600.0,0.0,0.0,-1.0,0.0],[524,2700.0,10.0,-600.0,0.0,0.0,0.0,1.0],[524,2700.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,2700.0,45.0,-600.0,0.0,0.0,-1.0,0.0],[524,2600.0,0.0,-575.0,0.0,0.0,0.0,1.0],[524,2600.0,0.0,-625.0,0.0,0.0,0.0,1.0],[524,2800.0,0.0,-575.0,0.0,0.0,0.0,1.0],[524,2800.0,0.0,-625.0,0.0,0.0,0.0,1.0],[524,2675.0,0.0,-675.0,0.0,0.0,0.0,1.0],[524,2725.0,0.0,-675.0,0.0,0.0,0.0,1.0],[524,2675.0,0.0,-525.0,0.0,0.0,0.0,1.0],[524,2725.0,0.0,-525.0,0.0,0.0,0.0,1.0],[524,2525.0,0.0,-625.0,0.0,0.0,0.0,1.0],[524,2475.0,0.0,-575.0,0.0,0.0,0.0,1.0],[524,2455.0,5.0,-555.0,0.0,0.70711,0.0,0.70711],[524,2455.0,5.0,-645.0,0.0,0.70711,0.0,0.70711],[524,2500.0,-20.0,-560.0,0.70711,0.0,0.0,0.70711],[524,2500.0,-20.0,-640.0,-0.70711,0.0,0.0,0.70711],[524,2660.0,-20.0,-800.0,0.5,-0.5,0.5,0.5],[524,2700.0,4.4,-460.0,0.70711,0.0,0.0,0.70711],[524,2740.0,-20.0,-800.0,0.5,0.5,-0.5,0.5],[524,2840.0,4.4,-600.0,0.5,0.5,-0.5,0.5],[524,2760.6,5.0,-453.5,0.0,0.38268,0.0,0.92388],[524,2774.8,5.0,-467.6,0.0,0.38268,0.0,0.92388],[524,2792.8,-20.0,-507.2,0.65328,0.2706,-0.2706,0.65328],[524,2832.5,5.0,-525.4,0.0,0.38268,0.0,0.92388],[524,2846.5,5.0,-539.5,0.0,0.38268,0.0,0.92388],[524,2846.5,5.0,-660.6,0.0,-0.38268,0.0,0.92388],[524,2832.5,5.0,-674.7,0.0,-0.38268,0.0,0.92388],[524,2792.8,-20.0,-692.8,0.2706,0.65328,-0.65328,0.2706],[524,2774.8,5.0,-732.4,0.0,-0.38268,0.0,0.92388],[524,2760.6,5.0,-746.5,0.0,-0.38268,0.0,0.92388],[524,2639.4,5.0,-453.5,0.0,-0.38268,0.0,0.92388],[524,2625.2,5.0,-467.6,0.0,-0.38268,0.0,0.92388],[524,2607.2,-20.0,-507.2,0.65328,-0.2706,0.2706,0.65328],[524,2567.5,5.0,-525.4,0.0,-0.38268,0.0,0.92388],[524,2553.5,5.0,-539.5,0.0,-0.38268,0.0,0.92388],[524,2553.5,5.0,-660.6,0.0,0.38268,0.0,0.92388],[524,2567.5,5.0,-674.7,0.0,0.38268,0.0,0.92388],[524,2607.2,-20.0,-692.8,0.2706,-0.65328,0.65328,0.2706],[524,2625.2,5.0,-732.4,0.0,0.38268,0.0,0.92388],[524,2639.4,5.0,-746.5,0.0,0.38268,0.0,0.92388],[524,2745.0,5.0,-845.0,0.0,0.0,0.0,1.0],[524,2655.0,5.0,-845.0,0.0,0.0,0.0,1.0],[524,2700.0,-40.0,-900.0,0.0,0.0,0.0,1.0],[524,2591.0,-47.0,-950.0,0.0,0.0,0.0,1.0],[524,2700.0,-40.0,-1100.0,0.0,0.0,0.0,1.0],[524,2700.0,-42.0,-1100.0,0.0,0.0,0.0,1.0],[524,2675.0,-39.0,-860.0,0.0,0.70711,0.0,0.70711],[524,2675.0,-39.0,-920.0,0.0,0.70711,0.0,0.70711],[524,2690.0,-39.0,-970.0,0.0,0.0,0.0,1.0],[524,2710.0,-39.0,-970.0,0.0,0.0,0.0,1.0],[524,2700.0,-40.0,-1000.0,0.0,0.0,0.0,1.0],[524,2700.0,-40.0,-1100.0,0.0,0.0,0.0,1.0],[524,2700.0,-40.0,-1200.0,0.0,0.0,0.0,1.0],[524,2700.0,-40.0,-1300.0,0.0,0.0,0.0,1.0],[524,2700.0,38.0,-900.0,0.0,0.0,-1.0,0.0],[524,2700.0,38.0,-1000.0,0.0,0.0,-1.0,0.0],[524,2700.0,38.0,-1100.0,0.0,0.0,-1.0,0.0],[524,2700.0,38.0,-1200.0,0.0,0.0,-1.0,0.0],[524,2700.0,38.0,-1300.0,0.0,0.0,-1.0,0.0],[524,2700.0,38.0,-1400.0,0.0,0.0,-1.0,0.0],[524,2700.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,2700.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,2700.0,0.0,-1100.0,0.0,0.70711,0.0,0.70711],[524,2700.0,0.0,-1200.0,0.0,0.70711,0.0,0.70711],[524,2700.0,0.0,-1300.0,0.0,0.70711,0.0,0.70711],[524,2700.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,2690.0,-29.0,-890.0,0.0,0.0,0.0,1.0],[524,2710.0,-29.0,-910.0,0.0,0.70711,0.0,0.70711],[524,2745.0,-35.0,-1565.0,0.0,0.0,0.0,1.0],[524,2745.0,-40.0,-1565.0,0.0,-1.0,0.0,0.0],[524,2655.0,-35.0,-1565.0,0.0,0.0,0.0,1.0],[524,2655.0,-40.0,-1565.0,0.0,-1.0,0.0,0.0],[524,2700.0,-39.0,-1685.0,0.0,-0.70711,0.0,0.70711],[524,2700.0,-39.0,-1715.0,0.0,0.70711,0.0,0.70711],[524,2863.0,10.0,-1751.0,0.65328,-0.2706,0.2706,0.65328],[524,2863.0,60.0,-1751.0,0.65328,-0.2706,0.2706,0.65328],[524,2537.0,10.0,-1751.0,0.65328,0.2706,-0.2706,0.65328],[524,2537.0,60.0,-1751.0,0.65328,0.2706,-0.2706,0.65328],[524,2863.0,10.0,-1649.0,-0.65328,0.2706,0.2706,0.65328],[524,2863.0,-40.0,-1649.0,-0.65328,0.2706,0.2706,0.65328],[524,2537.0,10.0,-1649.0,-0.65328,-0.2706,-0.2706,0.65328],[524,2537.0,-40.0,-1649.0,-0.65328,-0.2706,-0.2706,0.65328],[524,2649.0,10.0,-1863.0,0.65328,0.2706,-0.2706,0.65328],[524,2649.0,60.0,-1863.0,0.65328,0.2706,-0.2706,0.65328],[524,2751.0,10.0,-1863.0,0.65328,-0.2706,0.2706,0.65328],[524,2751.0,60.0,-1863.0,0.65328,-0.2706,0.2706,0.65328],[524,2607.2,11.0,-1792.8,-0.65328,0.2706,0.2706,0.65328],[524,2792.8,11.0,-1792.8,0.2706,0.65328,-0.65328,0.2706],[524,2607.2,11.0,-1607.2,-0.2706,0.65328,0.65328,0.2706],[524,2642.0,-24.5,-1550.2,-0.2706,-0.65328,-0.65328,0.2706],[524,2642.0,32.5,-1550.2,-0.2706,-0.65328,-0.65328,0.2706],[524,2635.0,-24.5,-1557.2,-0.2706,-0.65328,-0.65328,0.2706],[524,2635.0,32.5,-1557.2,-0.2706,-0.65328,-0.65328,0.2706],[524,2628.0,-24.5,-1564.2,-0.2706,-0.65328,-0.65328,0.2706],[524,2628.0,32.5,-1564.2,-0.2706,-0.65328,-0.65328,0.2706],[524,2792.8,11.0,-1607.2,0.65328,0.2706,-0.2706,0.65328],[524,2758.0,-24.5,-1550.2,0.65328,-0.2706,0.2706,0.65328],[524,2758.0,32.5,-1550.2,0.65328,-0.2706,0.2706,0.65328],[524,2765.0,-24.5,-1557.2,0.65328,-0.2706,0.2706,0.65328],[524,2765.0,32.5,-1557.2,0.65328,-0.2706,0.2706,0.65328],[524,2772.0,-24.5,-1564.2,0.65328,-0.2706,0.2706,0.65328],[524,2772.0,32.5,-1564.2,0.65328,-0.2706,0.2706,0.65328],[524,2630.0,-79.0,-1530.0,-0.70711,0.0,0.0,0.70711],[524,2770.0,-79.0,-1530.0,-0.70711,0.0,0.0,0.70711],[524,2700.0,21.0,-1560.0,0.5,0.5,0.5,0.5],[524,2700.0,11.0,-1840.0,-0.70711,0.0,0.0,0.70711],[524,2840.0,11.0,-1700.0,0.5,0.5,-0.5,0.5],[524,2560.0,11.0,-1700.0,-0.5,0.5,0.5,0.5],[524,2685.0,-39.0,-1700.0,0.0,-1.0,0.0,0.0],[524,2715.0,-39.0,-1700.0,0.0,0.0,0.0,1.0],[524,2700.0,-39.0,-1700.0,0.0,0.0,0.0,1.0],[524,2700.0,-4.0,-1700.0,0.0,0.0,0.0,1.0],[524,2700.0,-39.0,-1700.0,0.0,-1.0,0.0,0.0],[524,2700.0,-39.0,-1800.0,0.0,0.0,0.0,1.0],[524,2900.0,-59.0,-1700.0,0.0,0.0,0.0,1.0],[524,2400.0,-59.0,-1700.0,0.0,0.0,0.0,1.0],[524,2500.0,-59.0,-1700.0,0.0,0.0,0.0,1.0],[524,2800.0,-59.0,-1800.0,0.0,0.0,0.0,1.0],[524,2800.0,-59.0,-1700.0,0.0,0.0,0.0,1.0],[524,2800.0,-59.0,-1600.0,0.0,0.0,0.0,1.0],[524,2600.0,-59.0,-1800.0,0.0,0.0,0.0,1.0],[524,2600.0,-59.0,-1700.0,0.0,0.0,0.0,1.0],[524,2600.0,-59.0,-1600.0,0.0,0.0,0.0,1.0],[524,2700.0,-59.0,-1900.0,0.0,0.0,0.0,1.0],[524,2700.0,-59.0,-1800.0,0.0,0.0,0.0,1.0],[524,2700.0,-59.0,-1700.0,0.0,0.0,0.0,1.0],[524,2700.0,-59.0,-1600.0,0.0,0.0,0.0,1.0],[524,2700.0,-60.0,-1500.0,0.0,0.0,0.0,1.0],[524,2700.0,-39.0,-1450.0,0.0,0.0,0.0,1.0],[524,2630.0,-79.0,-1370.0,0.70711,0.0,0.0,0.70711],[524,2770.0,-79.0,-1370.0,0.70711,0.0,0.0,0.70711],[524,2700.0,21.0,-1370.0,0.5,0.5,0.5,0.5],[524,2800.0,21.0,-1370.0,0.5,0.5,0.5,0.5],[524,2600.0,21.0,-1370.0,0.5,0.5,0.5,0.5],[524,1200.0,0.0,0.0,0.0,0.0,0.0,1.0]]},{"key":"headoff","name":"Freezemoon's Freeway","noart":13,"i":[[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,45.0,-1.0,1665.0,0.0,0.0,0.0,1.0],[524,45.0,-6.0,1665.0,0.0,0.0,0.0,1.0],[524,-45.0,-1.0,1665.0,0.0,0.70711,0.0,0.70711],[524,-45.0,-6.0,1665.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,1785.0,0.0,0.70711,0.0,0.70711],[524,0.0,-5.0,1815.0,0.0,-0.70711,0.0,0.70711],[524,163.0,45.0,1851.0,-0.65328,0.2706,0.2706,0.65328],[524,163.0,-5.0,1851.0,-0.65328,0.2706,0.2706,0.65328],[524,-163.0,45.0,1851.0,-0.65328,-0.2706,-0.2706,0.65328],[524,-163.0,-5.0,1851.0,-0.65328,-0.2706,-0.2706,0.65328],[524,51.0,45.0,1963.0,-0.65328,0.2706,0.2706,0.65328],[524,51.0,-5.0,1963.0,-0.65328,0.2706,0.2706,0.65328],[524,-51.0,45.0,1963.0,-0.65328,-0.2706,-0.2706,0.65328],[524,-51.0,-5.0,1963.0,-0.65328,-0.2706,-0.2706,0.65328],[524,163.0,95.0,1749.0,0.65328,-0.2706,0.2706,0.65328],[524,163.0,45.0,1749.0,0.65328,-0.2706,0.2706,0.65328],[524,-163.0,95.0,1749.0,0.65328,0.2706,-0.2706,0.65328],[524,-163.0,45.0,1749.0,0.65328,0.2706,-0.2706,0.65328],[524,-47.5,10.5,1640.0,-0.2706,0.65328,0.65328,0.2706],[524,-47.5,66.5,1640.0,-0.2706,0.65328,0.65328,0.2706],[524,-54.5,10.5,1647.0,-0.2706,0.65328,0.65328,0.2706],[524,-54.5,66.5,1647.0,-0.2706,0.65328,0.65328,0.2706],[524,-61.5,10.5,1654.0,-0.2706,0.65328,0.65328,0.2706],[524,-61.5,66.5,1654.0,-0.2706,0.65328,0.65328,0.2706],[524,-92.8,45.0,1707.2,-0.65328,0.2706,0.2706,0.65328],[524,47.5,10.5,1640.0,0.65328,0.2706,-0.2706,0.65328],[524,47.5,66.5,1640.0,0.65328,0.2706,-0.2706,0.65328],[524,54.5,10.5,1647.0,0.65328,0.2706,-0.2706,0.65328],[524,54.5,66.5,1647.0,0.65328,0.2706,-0.2706,0.65328],[524,61.5,10.5,1654.0,0.65328,0.2706,-0.2706,0.65328],[524,61.5,66.5,1654.0,0.65328,0.2706,-0.2706,0.65328],[524,92.8,45.0,1707.2,0.2706,0.65328,-0.65328,0.2706],[524,-92.8,45.0,1892.8,-0.2706,0.65328,0.65328,0.2706],[524,92.8,45.0,1892.8,0.65328,0.2706,-0.2706,0.65328],[524,-70.0,-45.0,1630.0,0.70711,0.0,0.0,0.70711],[524,70.0,-45.0,1630.0,0.70711,0.0,0.0,0.70711],[524,0.0,55.0,1660.0,-0.5,-0.5,0.5,0.5],[524,0.0,45.0,1940.0,0.70711,0.0,0.0,0.70711],[524,140.0,45.0,1800.0,0.5,0.5,-0.5,0.5],[524,-140.0,45.0,1800.0,-0.5,0.5,0.5,0.5],[524,15.0,-5.0,1800.0,0.0,0.0,0.0,1.0],[524,-15.0,-5.0,1800.0,0.0,-1.0,0.0,0.0],[524,0.0,-5.0,1800.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,1800.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,1800.0,0.0,0.0,0.0,1.0],[524,0.0,-4.9,1900.0,0.0,0.0,0.0,1.0],[524,200.0,-25.0,1800.0,0.0,0.0,0.0,1.0],[524,-200.0,-25.0,1800.0,0.0,0.0,0.0,1.0],[524,100.0,-25.0,1900.0,0.0,0.0,0.0,1.0],[524,100.0,-25.0,1800.0,0.0,0.0,0.0,1.0],[524,100.0,-25.0,1700.0,0.0,0.0,0.0,1.0],[524,-100.0,-25.0,1900.0,0.0,0.0,0.0,1.0],[524,-100.0,-25.0,1800.0,0.0,0.0,0.0,1.0],[524,-100.0,-25.0,1700.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,2000.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,1900.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,1800.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,1700.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,1550.0,0.0,0.0,0.0,1.0],[524,-70.0,-45.0,1470.0,-0.70711,0.0,0.0,0.70711],[524,70.0,-45.0,1470.0,-0.70711,0.0,0.0,0.70711],[524,0.0,55.0,1470.0,-0.5,-0.5,0.5,0.5],[524,100.0,55.0,1470.0,-0.5,-0.5,0.5,0.5],[524,-100.0,55.0,1470.0,-0.5,-0.5,0.5,0.5],[524,0.0,-7.5,1450.0,0.0,-1.0,0.0,0.0],[524,0.0,-10.0,1400.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,1150.0,0.0,0.0,0.0,1.0],[524,-11.0,-10.0,1005.0,0.0,-1.0,0.0,0.0],[524,0.0,-10.0,900.0,0.0,0.0,0.0,1.0],[524,-11.0,10.0,920.0,0.0,-1.0,0.0,0.0],[524,-11.0,20.0,860.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,780.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,700.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,700.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,620.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,540.0,0.0,0.0,0.0,1.0],[524,11.0,-9.0,500.0,0.0,0.0,0.0,1.0],[524,11.0,-9.0,450.0,0.0,0.0,0.0,1.0],[524,11.0,-9.0,400.0,0.0,0.0,0.0,1.0],[524,11.0,-9.0,350.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,460.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,380.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,300.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,220.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,140.0,0.0,0.0,0.0,1.0],[524,-11.0,10.0,80.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,185.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,1400.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,1300.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,1200.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,1100.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,1000.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,900.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,800.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,700.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,600.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,400.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,200.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,0.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,-100.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,-200.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,1300.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,1200.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,1100.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,900.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,800.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,700.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,600.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,400.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,200.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-55.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-100.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-145.0,0.0,0.0,0.0,1.0],[524,0.0,6.0,-150.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-155.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-245.0,0.0,0.0,0.0,1.0],[524,0.0,6.0,-250.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-255.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-345.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,150.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-100.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-300.0,0.0,0.0,0.0,1.0],[524,-65.0,0.0,-370.0,0.70711,0.0,0.0,0.70711],[524,65.0,0.0,-370.0,0.70746,0.0,0.0,0.70675],[524,40.0,-24.1,-380.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-400.0,0.0,0.0,0.0,1.0],[524,11.0,1.5,-450.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,-450.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-500.0,0.0,-1.0,0.0,0.0],[524,0.0,5.0,-600.0,0.0,0.0,0.0,1.0],[524,-11.0,1.5,-650.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-650.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-700.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-800.0,0.0,0.0,0.0,1.0],[524,-11.0,1.5,-850.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-850.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-900.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1000.0,0.0,-1.0,0.0,0.0],[524,11.0,1.5,-1050.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,-1050.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1100.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1200.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1250.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1300.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1350.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1400.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,-1450.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1500.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1550.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1600.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1700.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1750.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1800.0,0.0,0.0,0.0,1.0],[524,5.0,10.0,-1750.0,0.0,0.0,0.0,1.0],[524,5.0,10.0,-1775.0,0.0,0.0,0.0,1.0],[524,5.0,10.0,-1800.0,0.0,0.0,0.0,1.0],[524,5.0,10.0,-1825.0,0.0,0.0,0.0,1.0],[524,-65.0,0.0,-1830.0,-0.70711,0.0,0.0,0.70711],[524,65.0,0.0,-1830.0,-0.70746,0.0,0.0,0.70675],[524,40.0,-24.1,-1820.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1870.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2000.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-2000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2300.0,0.0,0.0,0.0,1.0],[524,45.0,9.0,-2665.0,0.0,0.0,0.0,1.0],[524,45.0,4.0,-2665.0,0.0,-1.0,0.0,0.0],[524,-45.0,9.0,-2665.0,0.0,0.0,0.0,1.0],[524,-45.0,4.0,-2665.0,0.0,-1.0,0.0,0.0],[524,0.0,5.0,-2785.0,0.0,-0.70711,0.0,0.70711],[524,0.0,5.0,-2815.0,0.0,0.70711,0.0,0.70711],[524,0.0,2.5,-2450.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2400.0,0.0,0.0,0.0,1.0],[524,163.0,55.0,-2851.0,0.65328,-0.2706,0.2706,0.65328],[524,163.0,105.0,-2851.0,0.65328,-0.2706,0.2706,0.65328],[524,-163.0,55.0,-2851.0,0.65328,0.2706,-0.2706,0.65328],[524,-163.0,105.0,-2851.0,0.65328,0.2706,-0.2706,0.65328],[524,163.0,55.0,-2749.0,-0.65328,0.2706,0.2706,0.65328],[524,163.0,5.0,-2749.0,-0.65328,0.2706,0.2706,0.65328],[524,-163.0,55.0,-2749.0,-0.65328,-0.2706,-0.2706,0.65328],[524,-163.0,5.0,-2749.0,-0.65328,-0.2706,-0.2706,0.65328],[524,-51.0,55.0,-2963.0,0.65328,0.2706,-0.2706,0.65328],[524,-51.0,105.0,-2963.0,0.65328,0.2706,-0.2706,0.65328],[524,51.0,55.0,-2963.0,0.65328,-0.2706,0.2706,0.65328],[524,51.0,105.0,-2963.0,0.65328,-0.2706,0.2706,0.65328],[524,-92.8,55.0,-2892.8,-0.65328,0.2706,0.2706,0.65328],[524,92.8,55.0,-2892.8,0.2706,0.65328,-0.65328,0.2706],[524,-92.8,55.0,-2707.2,-0.2706,0.65328,0.65328,0.2706],[524,-58.0,20.5,-2650.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-58.0,76.5,-2650.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-65.0,20.5,-2657.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-65.0,76.5,-2657.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-72.0,20.5,-2664.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-72.0,76.5,-2664.2,-0.2706,-0.65328,-0.65328,0.2706],[524,92.8,55.0,-2707.2,0.65328,0.2706,-0.2706,0.65328],[524,58.0,20.5,-2650.2,0.65328,-0.2706,0.2706,0.65328],[524,58.0,76.5,-2650.2,0.65328,-0.2706,0.2706,0.65328],[524,65.0,20.5,-2657.2,0.65328,-0.2706,0.2706,0.65328],[524,65.0,76.5,-2657.2,0.65328,-0.2706,0.2706,0.65328],[524,72.0,20.5,-2664.2,0.65328,-0.2706,0.2706,0.65328],[524,72.0,76.5,-2664.2,0.65328,-0.2706,0.2706,0.65328],[524,-70.0,-35.0,-2630.0,-0.70711,0.0,0.0,0.70711],[524,70.0,-35.0,-2630.0,-0.70711,0.0,0.0,0.70711],[524,0.0,65.0,-2660.0,0.5,0.5,0.5,0.5],[524,0.0,55.0,-2940.0,-0.70711,0.0,0.0,0.70711],[524,140.0,55.0,-2800.0,0.5,0.5,-0.5,0.5],[524,-140.0,55.0,-2800.0,-0.5,0.5,0.5,0.5],[524,-15.0,5.0,-2800.0,0.0,-1.0,0.0,0.0],[524,15.0,5.0,-2800.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-2800.0,0.0,0.0,0.0,1.0],[524,0.0,40.0,-2800.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-2800.0,0.0,-1.0,0.0,0.0],[524,0.0,5.0,-2900.0,0.0,0.0,0.0,1.0],[524,200.0,-15.0,-2800.0,0.0,0.0,0.0,1.0],[524,-300.0,-15.0,-2800.0,0.0,0.0,0.0,1.0],[524,-200.0,-15.0,-2800.0,0.0,0.0,0.0,1.0],[524,100.0,-15.0,-2900.0,0.0,0.0,0.0,1.0],[524,100.0,-15.0,-2800.0,0.0,0.0,0.0,1.0],[524,100.0,-15.0,-2700.0,0.0,0.0,0.0,1.0],[524,-100.0,-15.0,-2900.0,0.0,0.0,0.0,1.0],[524,-100.0,-15.0,-2800.0,0.0,0.0,0.0,1.0],[524,-100.0,-15.0,-2700.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,-3000.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,-2900.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,-2800.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,-2700.0,0.0,0.0,0.0,1.0],[524,0.0,-16.0,-2600.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-2550.0,0.0,0.0,0.0,1.0],[524,-70.0,-35.0,-2470.0,0.70711,0.0,0.0,0.70711],[524,70.0,-35.0,-2470.0,0.70711,0.0,0.0,0.70711],[524,0.0,65.0,-2470.0,0.5,0.5,0.5,0.5],[524,100.0,65.0,-2470.0,0.5,0.5,0.5,0.5],[524,-100.0,65.0,-2470.0,0.5,0.5,0.5,0.5],[524,1200.0,0.0,0.0,0.0,0.0,0.0,1.0]]},{"key":"headmf","name":"Freezemoon's Freeway (Football)","noart":11,"i":[[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,45.0,-1.0,1665.0,0.0,0.0,0.0,1.0],[524,45.0,-6.0,1665.0,0.0,0.0,0.0,1.0],[524,-45.0,-1.0,1665.0,0.0,0.70711,0.0,0.70711],[524,-45.0,-6.0,1665.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,1785.0,0.0,0.70711,0.0,0.70711],[524,0.0,-5.0,1815.0,0.0,-0.70711,0.0,0.70711],[524,163.0,45.0,1851.0,-0.65328,0.2706,0.2706,0.65328],[524,163.0,-5.0,1851.0,-0.65328,0.2706,0.2706,0.65328],[524,-163.0,45.0,1851.0,-0.65328,-0.2706,-0.2706,0.65328],[524,-163.0,-5.0,1851.0,-0.65328,-0.2706,-0.2706,0.65328],[524,51.0,45.0,1963.0,-0.65328,0.2706,0.2706,0.65328],[524,51.0,-5.0,1963.0,-0.65328,0.2706,0.2706,0.65328],[524,-51.0,45.0,1963.0,-0.65328,-0.2706,-0.2706,0.65328],[524,-51.0,-5.0,1963.0,-0.65328,-0.2706,-0.2706,0.65328],[524,163.0,95.0,1749.0,0.65328,-0.2706,0.2706,0.65328],[524,163.0,45.0,1749.0,0.65328,-0.2706,0.2706,0.65328],[524,-163.0,95.0,1749.0,0.65328,0.2706,-0.2706,0.65328],[524,-163.0,45.0,1749.0,0.65328,0.2706,-0.2706,0.65328],[524,-47.5,10.5,1640.0,-0.2706,0.65328,0.65328,0.2706],[524,-47.5,66.5,1640.0,-0.2706,0.65328,0.65328,0.2706],[524,-54.5,10.5,1647.0,-0.2706,0.65328,0.65328,0.2706],[524,-54.5,66.5,1647.0,-0.2706,0.65328,0.65328,0.2706],[524,-61.5,10.5,1654.0,-0.2706,0.65328,0.65328,0.2706],[524,-61.5,66.5,1654.0,-0.2706,0.65328,0.65328,0.2706],[524,-92.8,45.0,1707.2,-0.65328,0.2706,0.2706,0.65328],[524,47.5,10.5,1640.0,0.65328,0.2706,-0.2706,0.65328],[524,47.5,66.5,1640.0,0.65328,0.2706,-0.2706,0.65328],[524,54.5,10.5,1647.0,0.65328,0.2706,-0.2706,0.65328],[524,54.5,66.5,1647.0,0.65328,0.2706,-0.2706,0.65328],[524,61.5,10.5,1654.0,0.65328,0.2706,-0.2706,0.65328],[524,61.5,66.5,1654.0,0.65328,0.2706,-0.2706,0.65328],[524,92.8,45.0,1707.2,0.2706,0.65328,-0.65328,0.2706],[524,-92.8,45.0,1892.8,-0.2706,0.65328,0.65328,0.2706],[524,92.8,45.0,1892.8,0.65328,0.2706,-0.2706,0.65328],[524,-70.0,-45.0,1630.0,0.70711,0.0,0.0,0.70711],[524,70.0,-45.0,1630.0,0.70711,0.0,0.0,0.70711],[524,0.0,55.0,1660.0,-0.5,-0.5,0.5,0.5],[524,0.0,45.0,1940.0,0.70711,0.0,0.0,0.70711],[524,140.0,45.0,1800.0,0.5,0.5,-0.5,0.5],[524,-140.0,45.0,1800.0,-0.5,0.5,0.5,0.5],[524,15.0,-5.0,1800.0,0.0,0.0,0.0,1.0],[524,-15.0,-5.0,1800.0,0.0,-1.0,0.0,0.0],[524,0.0,-5.0,1800.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,1800.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,1800.0,0.0,0.0,0.0,1.0],[524,0.0,-4.9,1900.0,0.0,0.0,0.0,1.0],[524,200.0,-25.0,1800.0,0.0,0.0,0.0,1.0],[524,-200.0,-25.0,1800.0,0.0,0.0,0.0,1.0],[524,100.0,-25.0,1900.0,0.0,0.0,0.0,1.0],[524,100.0,-25.0,1800.0,0.0,0.0,0.0,1.0],[524,100.0,-25.0,1700.0,0.0,0.0,0.0,1.0],[524,-100.0,-25.0,1900.0,0.0,0.0,0.0,1.0],[524,-100.0,-25.0,1800.0,0.0,0.0,0.0,1.0],[524,-100.0,-25.0,1700.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,2000.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,1900.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,1800.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,1700.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,1550.0,0.0,0.0,0.0,1.0],[524,-9.0,0.0,1451.0,0.0,-1.0,0.0,0.0],[524,9.0,0.0,1451.0,0.0,-1.0,0.0,0.0],[524,-27.0,0.0,1451.0,0.0,-1.0,0.0,0.0],[524,27.0,0.0,1451.0,0.0,-1.0,0.0,0.0],[524,-9.0,0.0,1451.0,0.0,0.0,0.0,1.0],[524,9.0,0.0,1451.0,0.0,0.0,0.0,1.0],[524,-27.0,0.0,1451.0,0.0,0.0,0.0,1.0],[524,27.0,0.0,1451.0,0.0,0.0,0.0,1.0],[524,-70.0,-45.0,1470.0,-0.70711,0.0,0.0,0.70711],[524,70.0,-45.0,1470.0,-0.70711,0.0,0.0,0.70711],[524,0.0,55.0,1470.0,-0.5,-0.5,0.5,0.5],[524,100.0,55.0,1470.0,-0.5,-0.5,0.5,0.5],[524,-100.0,55.0,1470.0,-0.5,-0.5,0.5,0.5],[524,0.0,-7.5,1450.0,0.0,-1.0,0.0,0.0],[524,0.0,-10.0,1400.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,1250.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,1150.0,0.0,0.0,0.0,1.0],[524,-11.0,-10.0,1005.0,0.0,-1.0,0.0,0.0],[524,0.0,-10.0,900.0,0.0,0.0,0.0,1.0],[524,-11.0,10.0,920.0,0.0,-1.0,0.0,0.0],[524,-11.0,20.0,860.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,780.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,700.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,700.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,620.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,540.0,0.0,0.0,0.0,1.0],[524,11.0,-9.0,500.0,0.0,0.0,0.0,1.0],[524,11.0,-9.0,450.0,0.0,0.0,0.0,1.0],[524,11.0,-9.0,400.0,0.0,0.0,0.0,1.0],[524,11.0,-9.0,350.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,460.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,380.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,300.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,220.0,0.0,0.0,0.0,1.0],[524,-11.0,20.0,140.0,0.0,0.0,0.0,1.0],[524,-11.0,10.0,80.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,185.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,1400.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,1300.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,1200.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,1100.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,1000.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,900.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,800.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,700.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,600.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,400.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,200.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,0.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,-100.0,0.0,0.0,0.0,1.0],[524,0.0,30.0,-200.0,0.0,-1.0,0.0,0.0],[524,0.0,30.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,1300.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,1200.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,1100.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,900.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,800.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,700.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,600.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,400.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,200.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-55.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-100.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-145.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-155.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-245.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-255.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,-20.0,-345.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,150.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-100.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,-10.0,-300.0,0.0,0.0,0.0,1.0],[524,-65.0,0.0,-370.0,0.70711,0.0,0.0,0.70711],[524,65.0,0.0,-370.0,0.70746,0.0,0.0,0.70675],[524,40.0,-24.1,-380.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-450.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-500.0,0.0,-1.0,0.0,0.0],[524,0.0,5.0,-600.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-650.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-700.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-800.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,-850.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-900.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1000.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1050.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1100.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1200.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1250.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1300.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1350.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1400.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,-1450.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1500.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1550.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1600.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1700.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,-1750.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1800.0,0.0,0.0,0.0,1.0],[524,5.0,10.0,-1750.0,0.0,0.0,0.0,1.0],[524,5.0,10.0,-1775.0,0.0,0.0,0.0,1.0],[524,5.0,10.0,-1800.0,0.0,0.0,0.0,1.0],[524,5.0,10.0,-1825.0,0.0,0.0,0.0,1.0],[524,-65.0,0.0,-1830.0,-0.70711,0.0,0.0,0.70711],[524,65.0,0.0,-1830.0,-0.70746,0.0,0.0,0.70675],[524,40.0,-24.1,-1820.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1870.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2000.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-2000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2300.0,0.0,0.0,0.0,1.0],[524,45.0,9.0,-2665.0,0.0,0.0,0.0,1.0],[524,45.0,4.0,-2665.0,0.0,-1.0,0.0,0.0],[524,-45.0,9.0,-2665.0,0.0,0.0,0.0,1.0],[524,-45.0,4.0,-2665.0,0.0,-1.0,0.0,0.0],[524,0.0,5.0,-2785.0,0.0,-0.70711,0.0,0.70711],[524,0.0,5.0,-2815.0,0.0,0.70711,0.0,0.70711],[524,0.0,2.5,-2450.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2400.0,0.0,0.0,0.0,1.0],[524,163.0,55.0,-2851.0,0.65328,-0.2706,0.2706,0.65328],[524,163.0,105.0,-2851.0,0.65328,-0.2706,0.2706,0.65328],[524,-163.0,55.0,-2851.0,0.65328,0.2706,-0.2706,0.65328],[524,-163.0,105.0,-2851.0,0.65328,0.2706,-0.2706,0.65328],[524,163.0,55.0,-2749.0,-0.65328,0.2706,0.2706,0.65328],[524,163.0,5.0,-2749.0,-0.65328,0.2706,0.2706,0.65328],[524,-163.0,55.0,-2749.0,-0.65328,-0.2706,-0.2706,0.65328],[524,-163.0,5.0,-2749.0,-0.65328,-0.2706,-0.2706,0.65328],[524,-51.0,55.0,-2963.0,0.65328,0.2706,-0.2706,0.65328],[524,-51.0,105.0,-2963.0,0.65328,0.2706,-0.2706,0.65328],[524,51.0,55.0,-2963.0,0.65328,-0.2706,0.2706,0.65328],[524,51.0,105.0,-2963.0,0.65328,-0.2706,0.2706,0.65328],[524,-92.8,55.0,-2892.8,-0.65328,0.2706,0.2706,0.65328],[524,92.8,55.0,-2892.8,0.2706,0.65328,-0.65328,0.2706],[524,-92.8,55.0,-2707.2,-0.2706,0.65328,0.65328,0.2706],[524,-58.0,20.5,-2650.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-58.0,76.5,-2650.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-65.0,20.5,-2657.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-65.0,76.5,-2657.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-72.0,20.5,-2664.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-72.0,76.5,-2664.2,-0.2706,-0.65328,-0.65328,0.2706],[524,92.8,55.0,-2707.2,0.65328,0.2706,-0.2706,0.65328],[524,58.0,20.5,-2650.2,0.65328,-0.2706,0.2706,0.65328],[524,58.0,76.5,-2650.2,0.65328,-0.2706,0.2706,0.65328],[524,65.0,20.5,-2657.2,0.65328,-0.2706,0.2706,0.65328],[524,65.0,76.5,-2657.2,0.65328,-0.2706,0.2706,0.65328],[524,72.0,20.5,-2664.2,0.65328,-0.2706,0.2706,0.65328],[524,72.0,76.5,-2664.2,0.65328,-0.2706,0.2706,0.65328],[524,-70.0,-35.0,-2630.0,-0.70711,0.0,0.0,0.70711],[524,70.0,-35.0,-2630.0,-0.70711,0.0,0.0,0.70711],[524,0.0,65.0,-2660.0,0.5,0.5,0.5,0.5],[524,0.0,55.0,-2940.0,-0.70711,0.0,0.0,0.70711],[524,140.0,55.0,-2800.0,0.5,0.5,-0.5,0.5],[524,-140.0,55.0,-2800.0,-0.5,0.5,0.5,0.5],[524,-15.0,5.0,-2800.0,0.0,-1.0,0.0,0.0],[524,15.0,5.0,-2800.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-2800.0,0.0,0.0,0.0,1.0],[524,0.0,40.0,-2800.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-2800.0,0.0,-1.0,0.0,0.0],[524,0.0,5.0,-2900.0,0.0,0.0,0.0,1.0],[524,200.0,-15.0,-2800.0,0.0,0.0,0.0,1.0],[524,-300.0,-15.0,-2800.0,0.0,0.0,0.0,1.0],[524,-200.0,-15.0,-2800.0,0.0,0.0,0.0,1.0],[524,100.0,-15.0,-2900.0,0.0,0.0,0.0,1.0],[524,100.0,-15.0,-2800.0,0.0,0.0,0.0,1.0],[524,100.0,-15.0,-2700.0,0.0,0.0,0.0,1.0],[524,-100.0,-15.0,-2900.0,0.0,0.0,0.0,1.0],[524,-100.0,-15.0,-2800.0,0.0,0.0,0.0,1.0],[524,-100.0,-15.0,-2700.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,-3000.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,-2900.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,-2800.0,0.0,0.0,0.0,1.0],[524,0.0,-15.0,-2700.0,0.0,0.0,0.0,1.0],[524,0.0,-16.0,-2600.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-2550.0,0.0,0.0,0.0,1.0],[524,-9.0,10.0,-2451.0,0.0,-1.0,0.0,0.0],[524,9.0,10.0,-2451.0,0.0,-1.0,0.0,0.0],[524,-27.0,10.0,-2451.0,0.0,-1.0,0.0,0.0],[524,27.0,10.0,-2451.0,0.0,-1.0,0.0,0.0],[524,-9.0,10.0,-2451.0,0.0,0.0,0.0,1.0],[524,9.0,10.0,-2451.0,0.0,0.0,0.0,1.0],[524,-27.0,10.0,-2451.0,0.0,0.0,0.0,1.0],[524,27.0,10.0,-2451.0,0.0,0.0,0.0,1.0],[524,-70.0,-35.0,-2470.0,0.70711,0.0,0.0,0.70711],[524,70.0,-35.0,-2470.0,0.70711,0.0,0.0,0.70711],[524,0.0,65.0,-2470.0,0.5,0.5,0.5,0.5],[524,100.0,65.0,-2470.0,0.5,0.5,0.5,0.5],[524,-100.0,65.0,-2470.0,0.5,0.5,0.5,0.5],[524,1200.0,0.0,0.0,0.0,0.0,0.0,1.0]]},{"key":"donut","name":"-- Donut --","noart":11,"i":[[524,-1400.0,0.0,-1400.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,1400.0,0.0,0.0,0.0,1.0],[524,1200.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,-1440.0,-10.0,-1200.0,0.5,-0.5,0.5,0.5],[524,-1400.0,-10.0,-1600.0,0.0,0.70711,0.0,0.70711],[524,-1400.0,40.0,-1600.0,0.70711,0.0,-0.70711,0.0],[524,-1360.0,-10.0,-1200.0,0.5,0.5,-0.5,0.5],[524,-1460.6,15.0,-1546.5,0.0,0.38268,0.0,0.92388],[524,-1339.4,15.0,-1546.5,0.0,-0.38268,0.0,0.92388],[524,-1474.8,15.0,-1532.4,0.0,0.38268,0.0,0.92388],[524,-1325.2,15.0,-1532.4,0.0,-0.38268,0.0,0.92388],[524,-1500.0,-10.0,-1500.0,0.0,0.0,0.0,1.0],[524,-1500.0,40.0,-1500.0,0.0,0.0,-1.0,0.0],[524,-1400.0,-10.0,-1500.0,0.0,0.0,0.0,1.0],[524,-1400.0,40.0,-1500.0,0.0,0.0,-1.0,0.0],[524,-1300.0,-10.0,-1500.0,0.0,0.0,0.0,1.0],[524,-1300.0,40.0,-1500.0,0.0,0.0,-1.0,0.0],[524,-1492.8,-10.0,-1492.8,0.2706,-0.65328,0.65328,0.2706],[524,-1307.2,-10.0,-1492.8,0.2706,0.65328,-0.65328,0.2706],[524,-1532.5,15.0,-1474.7,0.0,0.38268,0.0,0.92388],[524,-1267.5,15.0,-1474.7,0.0,-0.38268,0.0,0.92388],[524,-1546.5,15.0,-1460.6,0.0,0.38268,0.0,0.92388],[524,-1253.5,15.0,-1460.6,0.0,-0.38268,0.0,0.92388],[524,-1200.0,-10.0,-1440.0,-0.70711,0.0,0.0,0.70711],[524,-1600.0,-10.0,-1400.0,0.0,0.0,0.0,1.0],[524,-1600.0,40.0,-1400.0,0.0,0.0,-1.0,0.0],[524,-1500.0,-10.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,-1500.0,40.0,-1400.0,0.70711,0.0,-0.70711,0.0],[524,-1400.0,-10.0,-1400.0,0.0,0.0,0.0,1.0],[524,-1400.0,10.0,-1400.0,0.0,-1.0,0.0,0.0],[524,-1400.0,40.0,-1400.0,0.0,0.0,-1.0,0.0],[524,-1300.0,-10.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,-1300.0,40.0,-1400.0,0.70711,0.0,-0.70711,0.0],[524,-1540.0,14.4,-1400.0,0.5,-0.5,0.5,0.5],[524,-1200.0,-10.0,-1400.0,0.0,0.0,0.0,1.0],[524,-1200.0,40.0,-1400.0,0.0,0.0,-1.0,0.0],[524,-1200.0,-10.0,-1360.0,0.70711,0.0,0.0,0.70711],[524,-1546.5,15.0,-1339.5,0.0,-0.38268,0.0,0.92388],[524,-1253.5,15.0,-1339.5,0.0,0.38268,0.0,0.92388],[524,-1532.5,15.0,-1325.4,0.0,-0.38268,0.0,0.92388],[524,-1267.5,15.0,-1325.4,0.0,0.38268,0.0,0.92388],[524,-1492.8,-10.0,-1307.2,0.65328,-0.2706,0.2706,0.65328],[524,-1307.2,-10.0,-1307.2,0.65328,0.2706,-0.2706,0.65328],[524,-1500.0,-10.0,-1300.0,0.0,0.0,0.0,1.0],[524,-1500.0,40.0,-1300.0,0.0,0.0,-1.0,0.0],[524,-1400.0,-10.0,-1300.0,0.0,0.0,0.0,1.0],[524,-1400.0,40.0,-1300.0,0.0,0.0,-1.0,0.0],[524,-1300.0,-10.0,-1300.0,0.0,0.0,0.0,1.0],[524,-1300.0,40.0,-1300.0,0.0,0.0,-1.0,0.0],[524,-1474.8,15.0,-1267.6,0.0,-0.38268,0.0,0.92388],[524,-1325.2,15.0,-1267.6,0.0,0.38268,0.0,0.92388],[524,-1400.0,14.4,-1540.0,-0.70711,0.0,0.0,0.70711],[524,-1460.6,15.0,-1253.5,0.0,-0.38268,0.0,0.92388],[524,-1339.4,15.0,-1253.5,0.0,0.38268,0.0,0.92388],[524,-1400.0,-10.0,-1200.0,0.0,0.0,0.0,1.0],[524,-1400.0,40.0,-1200.0,0.0,0.0,-1.0,0.0],[524,1400.0,40.0,1600.0,0.0,0.0,-1.0,0.0],[524,1400.0,-10.0,1600.0,0.0,0.0,0.0,1.0],[524,1460.6,15.0,1546.5,0.0,0.38268,0.0,0.92388],[524,1339.4,15.0,1546.5,0.0,-0.38268,0.0,0.92388],[524,1400.0,14.4,1540.0,0.70711,0.0,0.0,0.70711],[524,1474.8,15.0,1532.4,0.0,0.38268,0.0,0.92388],[524,1325.2,15.0,1532.4,0.0,-0.38268,0.0,0.92388],[524,1500.0,40.0,1500.0,0.0,0.0,-1.0,0.0],[524,1500.0,-10.0,1500.0,0.0,0.0,0.0,1.0],[524,1400.0,40.0,1500.0,0.0,0.0,-1.0,0.0],[524,1400.0,-10.0,1500.0,0.0,0.0,0.0,1.0],[524,1300.0,40.0,1500.0,0.0,0.0,-1.0,0.0],[524,1300.0,-10.0,1500.0,0.0,0.0,0.0,1.0],[524,1492.8,-10.0,1492.8,0.65328,0.2706,-0.2706,0.65328],[524,1307.2,-10.0,1492.8,0.65328,-0.2706,0.2706,0.65328],[524,1532.5,15.0,1474.6,0.0,0.38268,0.0,0.92388],[524,1267.5,15.0,1474.6,0.0,-0.38268,0.0,0.92388],[524,1546.5,15.0,1460.5,0.0,0.38268,0.0,0.92388],[524,1253.5,15.0,1460.5,0.0,-0.38268,0.0,0.92388],[524,1200.0,-10.0,1440.0,0.70711,0.0,0.0,0.70711],[524,1600.0,40.0,1400.0,0.0,0.0,-1.0,0.0],[524,1600.0,-10.0,1400.0,0.0,0.0,0.0,1.0],[524,1540.0,14.4,1400.0,0.5,0.5,-0.5,0.5],[524,1500.0,40.0,1400.0,0.70711,0.0,-0.70711,0.0],[524,1500.0,-10.0,1400.0,0.0,0.70711,0.0,0.70711],[524,1400.0,40.0,1400.0,0.0,0.0,-1.0,0.0],[524,1400.0,10.0,1400.0,0.0,0.0,0.0,1.0],[524,1400.0,-10.0,1400.0,0.0,0.0,0.0,1.0],[524,1300.0,40.0,1400.0,0.70711,0.0,-0.70711,0.0],[524,1300.0,-10.0,1400.0,0.0,0.70711,0.0,0.70711],[524,1200.0,40.0,1400.0,0.0,0.0,-1.0,0.0],[524,1200.0,-10.0,1400.0,0.0,0.0,0.0,1.0],[524,1200.0,-10.0,1360.0,-0.70711,0.0,0.0,0.70711],[524,1546.5,15.0,1339.4,0.0,-0.38268,0.0,0.92388],[524,1253.5,15.0,1339.4,0.0,0.38268,0.0,0.92388],[524,1532.5,15.0,1325.3,0.0,-0.38268,0.0,0.92388],[524,1267.5,15.0,1325.3,0.0,0.38268,0.0,0.92388],[524,1492.8,-10.0,1307.2,0.2706,0.65328,-0.65328,0.2706],[524,1307.2,-10.0,1307.2,0.2706,-0.65328,0.65328,0.2706],[524,1500.0,40.0,1300.0,0.0,0.0,-1.0,0.0],[524,1500.0,-10.0,1300.0,0.0,0.0,0.0,1.0],[524,1400.0,40.0,1300.0,0.0,0.0,-1.0,0.0],[524,1400.0,-10.0,1300.0,0.0,0.0,0.0,1.0],[524,1300.0,40.0,1300.0,0.0,0.0,-1.0,0.0],[524,1300.0,-10.0,1300.0,0.0,0.0,0.0,1.0],[524,1474.8,15.0,1267.6,0.0,-0.38268,0.0,0.92388],[524,1325.2,15.0,1267.6,0.0,0.38268,0.0,0.92388],[524,1460.6,15.0,1253.5,0.0,-0.38268,0.0,0.92388],[524,1339.4,15.0,1253.5,0.0,0.38268,0.0,0.92388],[524,1440.0,-10.0,1200.0,0.5,0.5,-0.5,0.5],[524,1400.0,40.0,1200.0,0.70711,0.0,-0.70711,0.0],[524,1400.0,-10.0,1200.0,0.0,0.70711,0.0,0.70711],[524,1360.0,-10.0,1200.0,0.5,-0.5,0.5,0.5],[524,1400.0,40.0,-1200.0,0.0,0.0,-1.0,0.0],[524,1400.0,-10.0,-1200.0,0.0,0.0,0.0,1.0],[524,1460.6,15.0,-1253.5,0.0,0.38268,0.0,0.92388],[524,1339.4,15.0,-1253.5,0.0,-0.38268,0.0,0.92388],[524,1400.0,14.4,-1540.0,-0.70711,0.0,0.0,0.70711],[524,1474.8,15.0,-1267.6,0.0,0.38268,0.0,0.92388],[524,1325.2,15.0,-1267.6,0.0,-0.38268,0.0,0.92388],[524,1500.0,40.0,-1300.0,0.0,0.0,-1.0,0.0],[524,1500.0,-10.0,-1300.0,0.0,0.0,0.0,1.0],[524,1400.0,40.0,-1300.0,0.0,0.0,-1.0,0.0],[524,1400.0,-10.0,-1300.0,0.0,0.0,0.0,1.0],[524,1300.0,40.0,-1300.0,0.0,0.0,-1.0,0.0],[524,1300.0,-10.0,-1300.0,0.0,0.0,0.0,1.0],[524,1492.8,-10.0,-1307.2,0.65328,0.2706,-0.2706,0.65328],[524,1307.2,-10.0,-1307.2,0.65328,-0.2706,0.2706,0.65328],[524,1532.5,15.0,-1325.4,0.0,0.38268,0.0,0.92388],[524,1267.5,15.0,-1325.4,0.0,-0.38268,0.0,0.92388],[524,1546.5,15.0,-1339.5,0.0,0.38268,0.0,0.92388],[524,1253.5,15.0,-1339.5,0.0,-0.38268,0.0,0.92388],[524,1200.0,-10.0,-1360.0,0.70711,0.0,0.0,0.70711],[524,1600.0,40.0,-1400.0,0.0,0.0,-1.0,0.0],[524,1600.0,-10.0,-1400.0,0.0,0.0,0.0,1.0],[524,1540.0,14.4,-1400.0,0.5,0.5,-0.5,0.5],[524,1500.0,40.0,-1400.0,0.70711,0.0,-0.70711,0.0],[524,1500.0,-10.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,1400.0,40.0,-1400.0,0.0,0.0,-1.0,0.0],[524,1400.0,10.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,1400.0,-10.0,-1400.0,0.0,0.0,0.0,1.0],[524,1300.0,40.0,-1400.0,0.70711,0.0,-0.70711,0.0],[524,1300.0,-10.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,1200.0,40.0,-1400.0,0.0,0.0,-1.0,0.0],[524,1200.0,-10.0,-1400.0,0.0,0.0,0.0,1.0],[524,1200.0,-10.0,-1440.0,-0.70711,0.0,0.0,0.70711],[524,1546.5,15.0,-1460.6,0.0,-0.38268,0.0,0.92388],[524,1253.5,15.0,-1460.6,0.0,0.38268,0.0,0.92388],[524,1532.5,15.0,-1474.7,0.0,-0.38268,0.0,0.92388],[524,1267.5,15.0,-1474.7,0.0,0.38268,0.0,0.92388],[524,1492.8,-10.0,-1492.8,0.2706,0.65328,-0.65328,0.2706],[524,1307.2,-10.0,-1492.8,0.2706,-0.65328,0.65328,0.2706],[524,1500.0,40.0,-1500.0,0.0,0.0,-1.0,0.0],[524,1500.0,-10.0,-1500.0,0.0,0.0,0.0,1.0],[524,1400.0,40.0,-1500.0,0.0,0.0,-1.0,0.0],[524,1400.0,-10.0,-1500.0,0.0,0.0,0.0,1.0],[524,1300.0,40.0,-1500.0,0.0,0.0,-1.0,0.0],[524,1300.0,-10.0,-1500.0,0.0,0.0,0.0,1.0],[524,1474.8,15.0,-1532.4,0.0,-0.38268,0.0,0.92388],[524,1325.2,15.0,-1532.4,0.0,0.38268,0.0,0.92388],[524,1460.6,15.0,-1546.5,0.0,-0.38268,0.0,0.92388],[524,1339.4,15.0,-1546.5,0.0,0.38268,0.0,0.92388],[524,1440.0,-10.0,-1200.0,0.5,0.5,-0.5,0.5],[524,1400.0,40.0,-1600.0,0.70711,0.0,-0.70711,0.0],[524,1400.0,-10.0,-1600.0,0.0,0.70711,0.0,0.70711],[524,1360.0,-10.0,-1200.0,0.5,-0.5,0.5,0.5],[524,-1100.0,10.0,-1400.0,0.0,0.70711,0.0,-0.70711],[524,-1000.0,10.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,1000.0,10.0,-1400.0,0.0,0.70711,0.0,-0.70711],[524,1100.0,10.0,-1400.0,0.0,0.70711,0.0,0.70711],[524,-1400.0,10.0,-1100.0,0.0,-1.0,0.0,0.0],[524,1400.0,10.0,-1100.0,0.0,-1.0,0.0,0.0],[524,-1400.0,10.0,-1000.0,0.0,0.0,0.0,1.0],[524,1400.0,10.0,-1000.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,-900.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,-900.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,-800.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,-800.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,-700.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,-700.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,-500.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,-500.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,-400.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,-400.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,-200.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,-200.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,-100.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,-100.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,100.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,100.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,200.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,200.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,300.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,300.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,400.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,400.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,500.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,500.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,600.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,600.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,700.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,700.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,800.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,800.0,0.0,0.0,0.0,1.0],[524,-1400.0,0.0,900.0,0.0,0.0,0.0,1.0],[524,1400.0,0.0,900.0,0.0,0.0,0.0,1.0],[524,-1400.0,10.0,1000.0,0.0,-1.0,0.0,0.0],[524,1400.0,10.0,1000.0,0.0,-1.0,0.0,0.0],[524,-1400.0,10.0,1100.0,0.0,0.0,0.0,1.0],[524,1400.0,10.0,1100.0,0.0,0.0,0.0,1.0],[524,-1100.0,10.0,1400.0,0.0,0.70711,0.0,-0.70711],[524,-1000.0,10.0,1400.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[524,1000.0,10.0,1400.0,0.0,0.70711,0.0,-0.70711],[524,1100.0,10.0,1400.0,0.0,0.70711,0.0,0.70711],[524,-1440.0,-10.0,1200.0,0.5,-0.5,0.5,0.5],[524,-1400.0,-10.0,1200.0,0.0,0.70711,0.0,0.70711],[524,-1400.0,40.0,1200.0,0.70711,0.0,-0.70711,0.0],[524,-1360.0,-10.0,1200.0,0.5,0.5,-0.5,0.5],[524,-1460.6,15.0,1253.5,0.0,0.38268,0.0,0.92388],[524,-1339.4,15.0,1253.5,0.0,-0.38268,0.0,0.92388],[524,-1474.8,15.0,1267.6,0.0,0.38268,0.0,0.92388],[524,-1325.2,15.0,1267.6,0.0,-0.38268,0.0,0.92388],[524,-1500.0,-10.0,1300.0,0.0,0.0,0.0,1.0],[524,-1500.0,40.0,1300.0,0.0,0.0,-1.0,0.0],[524,-1400.0,-10.0,1300.0,0.0,0.0,0.0,1.0],[524,-1400.0,40.0,1300.0,0.0,0.0,-1.0,0.0],[524,-1300.0,-10.0,1300.0,0.0,0.0,0.0,1.0],[524,-1300.0,40.0,1300.0,0.0,0.0,-1.0,0.0],[524,-1492.8,-10.0,1307.2,0.2706,-0.65328,0.65328,0.2706],[524,-1307.2,-10.0,1307.2,0.2706,0.65328,-0.65328,0.2706],[524,-1532.5,15.0,1325.3,0.0,0.38268,0.0,0.92388],[524,-1267.5,15.0,1325.3,0.0,-0.38268,0.0,0.92388],[524,-1546.5,15.0,1339.4,0.0,0.38268,0.0,0.92388],[524,-1253.5,15.0,1339.4,0.0,-0.38268,0.0,0.92388],[524,-1200.0,-10.0,1360.0,-0.70711,0.0,0.0,0.70711],[524,-1600.0,-10.0,1400.0,0.0,0.0,0.0,1.0],[524,-1600.0,40.0,1400.0,0.0,0.0,-1.0,0.0],[524,-1500.0,-10.0,1400.0,0.0,0.70711,0.0,0.70711],[524,-1500.0,40.0,1400.0,0.70711,0.0,-0.70711,0.0],[524,-1400.0,-10.0,1400.0,0.0,0.0,0.0,1.0],[524,-1400.0,10.0,1400.0,0.0,-0.70711,0.0,0.70711],[524,-1400.0,40.0,1400.0,0.0,0.0,-1.0,0.0],[524,-1300.0,-10.0,1400.0,0.0,0.70711,0.0,0.70711],[524,-1300.0,40.0,1400.0,0.70711,0.0,-0.70711,0.0],[524,-1540.0,14.4,1400.0,0.5,-0.5,0.5,0.5],[524,-1200.0,-10.0,1400.0,0.0,0.0,0.0,1.0],[524,-1200.0,40.0,1400.0,0.0,0.0,-1.0,0.0],[524,-1200.0,-10.0,1440.0,0.70711,0.0,0.0,0.70711],[524,-1546.5,15.0,1460.5,0.0,-0.38268,0.0,0.92388],[524,-1253.5,15.0,1460.5,0.0,0.38268,0.0,0.92388],[524,-1532.5,15.0,1474.6,0.0,-0.38268,0.0,0.92388],[524,-1267.5,15.0,1474.6,0.0,0.38268,0.0,0.92388],[524,-1492.8,-10.0,1492.8,0.65328,-0.2706,0.2706,0.65328],[524,-1307.2,-10.0,1492.8,0.65328,0.2706,-0.2706,0.65328],[524,-1500.0,-10.0,1500.0,0.0,0.0,0.0,1.0],[524,-1500.0,40.0,1500.0,0.0,0.0,-1.0,0.0],[524,-1400.0,-10.0,1500.0,0.0,0.0,0.0,1.0],[524,-1400.0,40.0,1500.0,0.0,0.0,-1.0,0.0],[524,-1300.0,-10.0,1500.0,0.0,0.0,0.0,1.0],[524,-1300.0,40.0,1500.0,0.0,0.0,-1.0,0.0],[524,-1474.8,15.0,1532.4,0.0,-0.38268,0.0,0.92388],[524,-1325.2,15.0,1532.4,0.0,0.38268,0.0,0.92388],[524,-1400.0,14.4,1540.0,0.70711,0.0,0.0,0.70711],[524,-1460.6,15.0,1546.5,0.0,-0.38268,0.0,0.92388],[524,-1339.4,15.0,1546.5,0.0,0.38268,0.0,0.92388],[524,-1400.0,-10.0,1600.0,0.0,0.0,0.0,1.0],[524,-1400.0,40.0,1600.0,0.0,0.0,-1.0,0.0],[524,0.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,8000.0,0.0,0.0,0.0,1.0]]},{"key":"wiserguys","name":"-- Wiserguy's --","noart":14,"i":[[524,12.51,3.84,2567.26,0.0,0.0,0.0,1.0],[524,-25.0,20.53,2749.43,0.0,0.0,0.0,1.0],[524,0.0,0.0,1700.0,0.0,0.0,0.0,1.0],[524,-5.0,5.0,1950.0,0.0,0.0,0.70711,0.70711],[524,0.0,28.23,2702.91,0.0,-1.0,0.0,0.0],[524,-12.25,27.56,644.52,0.0,0.0,0.0,1.0],[524,-12.12,27.56,654.14,0.0,-1.0,0.0,0.0],[524,-29.21,54.32,4069.38,0.0,0.0,0.0,1.0],[524,30.63,54.32,-1538.92,0.0,-1.0,0.0,0.0],[524,40.01,-50.0,3880.0,0.0,-1.0,0.0,0.0],[524,16.02,18.18,1249.76,0.0,0.0,0.0,1.0],[524,-14.15,18.18,2350.36,0.0,-1.0,0.0,0.0],[524,-8.15,18.18,2350.36,0.0,-1.0,0.0,0.0],[524,0.0,0.0,154.67,0.0,-1.0,0.0,0.0],[524,10.02,18.18,1249.76,0.0,0.0,0.0,1.0],[524,0.0,5.0,1300.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1250.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1200.0,0.0,0.0,0.0,1.0],[524,-8.74,38.3,1144.29,0.0,0.0,0.0,1.0],[524,0.0,0.0,-525.0,0.0,1.0,0.0,0.0],[524,10.0,10.0,825.0,0.0,0.0,0.0,1.0],[524,10.0,10.0,880.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,850.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,850.0,0.0,-1.0,0.0,0.0],[524,-40.0,-50.0,-1350.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,400.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,1700.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,1600.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,2200.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,2100.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,2000.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,1800.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,1900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2500.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2500.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2400.0,0.0,-1.0,0.0,0.0],[524,0.0,5.0,2300.0,0.0,0.0,0.0,1.0],[524,0.0,2.5,2350.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,2999.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,3055.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,3130.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,3230.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,3530.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2600.0,0.0,0.0,0.0,1.0],[524,19.9,34.05,2602.59,0.0,0.0,0.0,1.0],[524,19.9,34.05,2582.59,0.0,0.0,0.0,1.0],[524,19.9,34.05,2642.59,0.0,0.0,0.0,1.0],[524,-20.0,34.05,2613.44,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2600.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2700.0,0.0,0.0,0.0,1.0],[524,0.0,2.85,2750.0,0.0,-1.0,0.0,0.0],[524,-20.0,34.05,2570.62,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2900.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-700.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-800.0,0.0,1.0,0.0,0.0],[524,0.0,-0.99,0.0,-0.0,0.0,-1.0,0.0],[524,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,200.0,0.0,0.0,0.0,1.0],[524,0.0,3.0,-100.0,0.0,0.0,0.0,1.0],[524,-10.0,0.0,50.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,-10.0,18.0,101.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,2000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,3.0,-50.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-425.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-500.0,0.0,0.0,0.0,1.0],[524,10.78,0.0,750.19,0.0,-1.0,0.0,0.0],[524,10.84,31.0,699.95,0.0,0.0,0.0,1.0],[524,10.78,0.0,550.19,0.0,-1.0,0.0,0.0],[524,0.0,11.5,649.5,0.0,0.0,0.0,1.0],[524,10.83,27.81,601.23,0.0,0.0,0.0,1.0],[524,0.0,0.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,600.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,700.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,600.0,0.0,0.0,0.0,1.0],[524,-455.0,385.0,162.5,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,21.5,1149.5,0.0,0.0,0.0,1.0],[524,0.0,5.0,1445.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,700.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,1500.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,1400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,-12.0,2200.0,0.0,0.0,0.0,1.0],[524,-40.0,0.0,-1460.0,0.0,0.0,0.0,1.0],[524,40.0,0.0,3989.98,0.0,0.0,0.0,1.0],[524,101.61,53.73,4069.18,0.0,0.0,0.0,1.0],[524,40.0,88.0,3901.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,3430.0,0.0,-1.0,0.0,0.0],[524,0.67,79.88,3630.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,3330.0,0.0,-1.0,0.0,0.0],[524,14.79,13.0,3291.54,0.0,0.70711,0.0,0.70711],[524,-0.76,51.02,3029.74,0.0,0.0,0.0,1.0],[524,-29.74,26.22,2944.33,0.0,0.0,0.0,1.0],[524,0.0,1.0,2899.0,0.0,-1.0,0.0,0.0],[524,6.51,51.02,3029.78,0.0,0.0,0.0,1.0],[524,27.86,23.13,2944.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2650.0,0.0,-1.0,0.0,0.0],[524,1200.0,0.0,0.0,0.0,0.0,0.0,1.0]]},{"key":"tourdemars","name":"-- Tour De Mars --","noart":12,"i":[[524,40.0,55.0,5040.0,0.0,0.0,0.0,1.0],[524,40.0,55.0,4925.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,4575.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,4475.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,4375.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,4305.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,4300.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,4205.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,4105.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,4005.0,0.0,-1.0,0.0,0.0],[524,-5.2,10.0,3995.0,0.0,-1.0,0.0,0.0],[524,5.2,10.0,3995.0,0.0,-1.0,0.0,0.0],[524,0.0,20.0,3950.0,0.0,0.0,0.0,1.0],[524,0.0,20.0,3905.0,0.0,0.0,0.0,1.0],[524,0.0,20.0,3805.0,0.0,-1.0,0.0,0.0],[524,0.0,20.0,3805.0,0.0,-1.0,0.0,0.0],[524,0.0,20.0,3705.0,0.0,-1.0,0.0,0.0],[524,0.0,20.0,3705.0,0.0,0.0,0.0,1.0],[524,0.0,20.0,3605.0,0.0,-1.0,0.0,0.0],[524,0.0,20.0,3605.0,0.0,-1.0,0.0,0.0],[524,0.0,20.0,3505.0,0.0,-1.0,0.0,0.0],[524,0.0,20.0,3505.0,0.0,0.0,0.0,1.0],[524,0.0,20.0,3405.0,0.0,-1.0,0.0,0.0],[524,5.2,10.0,3315.0,0.0,0.0,0.0,1.0],[524,-5.2,10.0,3315.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,3305.0,0.0,0.0,0.0,1.0],[524,-59.6,0.85,3235.0,0.0,0.70711,0.0,0.70711],[524,59.6,0.85,3235.0,0.0,-0.70711,0.0,0.70711],[524,0.0,10.9,3205.0,0.0,0.0,0.0,1.0],[524,0.0,10.9,3205.0,0.0,0.0,0.0,1.0],[524,-59.6,-9.15,3180.0,0.0,0.70711,0.0,0.70711],[524,59.6,-9.15,3180.0,0.0,-0.70711,0.0,0.70711],[524,-59.6,0.85,3175.0,0.0,0.70711,0.0,0.70711],[524,59.6,0.85,3175.0,0.0,-0.70711,0.0,0.70711],[524,0.0,-4.0,3155.0,0.0,0.0,0.0,1.0],[524,15.0,-20.0,3155.0,0.0,0.0,0.0,1.0],[524,-15.0,-20.0,3155.0,0.0,0.0,0.0,1.0],[524,-15.5,5.0,3137.5,0.0,-1.0,0.0,0.0],[524,15.5,5.0,3137.5,0.0,-1.0,0.0,0.0],[524,0.0,10.9,3105.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,3105.0,0.0,0.0,0.0,1.0],[524,0.0,-4.0,3105.0,0.0,0.0,0.0,1.0],[524,0.0,-14.0,3055.0,0.0,0.0,0.0,1.0],[524,0.0,25.0,3005.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-10123.0,0.0,-1.0,0.0,0.0],[524,0.0,-14.0,3005.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-9023.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2955.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-8823.0,0.0,0.0,0.0,1.0],[524,-6.0,10.0,2920.0,0.0,0.0,0.0,1.0],[524,0.0,25.0,2905.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2905.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-8923.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2855.0,0.0,0.0,0.0,1.0],[524,0.0,25.0,2805.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2805.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-8723.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2755.0,0.0,0.0,0.0,1.0],[524,0.5,25.0,2747.5,0.0,0.0,0.0,1.0],[524,0.0,25.0,2705.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2705.0,0.0,0.0,0.0,1.0],[524,0.5,25.0,2690.5,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2655.0,0.0,0.0,0.0,1.0],[524,0.5,25.0,2633.5,0.0,-1.0,0.0,0.0],[524,0.0,25.0,2605.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2605.0,0.0,0.0,0.0,1.0],[524,0.5,25.0,2576.5,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2555.0,0.0,0.0,0.0,1.0],[524,0.5,25.0,2519.5,0.0,0.0,0.0,1.0],[524,0.0,25.0,2505.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2505.0,0.0,0.0,0.0,1.0],[524,0.5,25.0,2462.5,0.0,-1.0,0.0,0.0],[524,0.0,-24.0,2455.0,0.0,0.0,0.0,1.0],[524,0.5,25.0,2405.5,0.0,0.0,0.0,1.0],[524,0.0,25.0,2405.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2405.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2355.0,0.0,0.0,0.0,1.0],[524,0.0,25.0,2305.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2305.0,0.0,0.0,0.0,1.0],[524,0.5,25.0,2291.5,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2255.0,0.0,0.0,0.0,1.0],[524,0.5,25.0,2234.5,0.0,-1.0,0.0,0.0],[524,0.0,25.0,2205.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2205.0,0.0,0.0,0.0,1.0],[524,0.5,25.0,2177.5,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2155.0,0.0,0.0,0.0,1.0],[524,0.5,25.0,2120.5,0.0,0.0,0.0,1.0],[524,0.0,25.0,2105.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2105.0,0.0,0.0,0.0,1.0],[524,0.5,25.0,2063.5,0.0,-1.0,0.0,0.0],[524,0.0,25.0,2055.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2055.0,0.0,0.0,0.0,1.0],[524,0.5,25.0,2006.5,0.0,0.0,0.0,1.0],[524,0.0,25.0,2005.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,2005.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,1955.0,0.0,0.0,0.0,1.0],[524,0.5,25.0,1949.5,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-8623.0,0.0,0.0,0.0,1.0],[524,0.0,25.0,1905.0,0.0,-1.0,0.0,0.0],[524,0.0,-24.0,1905.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1855.0,0.0,-1.0,0.0,0.0],[524,0.0,-24.0,1855.0,0.0,0.0,0.0,1.0],[524,10.0,10.0,1830.0,0.0,0.0,0.0,1.0],[524,-10.0,10.0,1830.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,1815.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1805.0,0.0,-1.0,0.0,0.0],[524,0.0,-24.0,1805.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1805.0,0.0,0.0,0.0,1.0],[524,10.0,10.0,1780.0,0.0,0.0,0.0,1.0],[524,-10.0,10.0,1780.0,0.0,0.0,0.0,1.0],[524,0.0,-24.0,1755.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,1735.0,0.0,0.0,0.0,1.0],[524,15.0,0.0,1715.0,0.0,0.0,0.0,1.0],[524,-15.0,0.0,1715.0,0.0,0.0,0.0,1.0],[524,0.0,-14.0,1705.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1705.0,0.0,0.0,0.0,1.0],[524,0.0,-14.0,1655.0,0.0,0.0,0.0,1.0],[524,15.0,-30.0,1655.0,0.0,0.0,0.0,1.0],[524,-15.0,-30.0,1655.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,1655.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,1605.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,1605.0,0.0,-1.0,0.0,0.0],[524,0.0,-1.0,1580.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,1575.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,1505.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1505.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,1495.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,1415.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1405.0,0.0,0.0,0.0,1.0],[524,15.0,0.0,1355.0,0.0,-0.70711,0.0,0.70711],[524,13.0,5.0,1355.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,1335.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1305.0,0.0,0.0,0.0,1.0],[524,0.0,-1.0,1280.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,1255.0,0.0,0.0,0.0,1.0],[524,-15.0,0.0,1205.0,0.0,0.70711,0.0,0.70711],[524,-13.0,5.0,1205.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1205.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,1175.0,0.0,0.0,0.0,1.0],[524,0.0,-1.0,1130.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1105.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,1095.0,0.0,0.0,0.0,1.0],[524,-15.0,0.0,1055.0,0.0,0.70711,0.0,0.70711],[524,-13.0,5.0,1055.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,1015.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1005.0,0.0,0.0,0.0,1.0],[524,0.0,-1.0,980.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,975.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,935.0,0.0,0.0,0.0,1.0],[524,15.0,0.0,905.0,0.0,-0.70711,0.0,0.70711],[524,13.0,5.0,905.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,905.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,855.0,0.0,0.0,0.0,1.0],[524,0.0,-1.0,830.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,805.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,775.0,0.0,0.0,0.0,1.0],[524,15.0,0.0,755.0,0.0,-0.70711,0.0,0.70711],[524,13.0,5.0,755.0,0.0,-1.0,0.0,0.0],[524,14.0,25.0,695.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,705.0,0.0,0.0,0.0,1.0],[524,0.0,-1.0,680.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,615.0,0.0,0.0,0.0,1.0],[524,-13.0,5.0,605.0,0.0,0.0,0.0,1.0],[524,-15.0,0.0,605.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,405.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,455.0,0.0,0.0,0.0,1.0],[524,13.0,5.0,455.0,0.0,-1.0,0.0,0.0],[524,15.0,0.0,455.0,0.0,-0.70711,0.0,0.70711],[524,0.0,0.0,505.0,0.0,0.0,0.0,1.0],[524,0.0,-1.0,530.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,535.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,605.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,305.0,0.0,0.0,0.0,1.0],[524,-13.0,5.0,305.0,0.0,0.0,0.0,1.0],[524,-15.0,0.0,305.0,0.0,0.70711,0.0,0.70711],[524,14.0,25.0,375.0,0.0,0.0,0.0,1.0],[524,0.0,-1.0,380.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,295.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,215.0,0.0,0.0,0.0,1.0],[524,0.0,-1.0,230.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,105.0,0.0,0.0,0.0,1.0],[524,14.0,25.0,135.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,205.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5.0,0.0,0.0,0.0,1.0],[524,14.0,-5.0,-10.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-8523.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-95.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-148.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-8423.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-223.0,0.0,-1.0,0.0,0.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-323.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-423.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-498.0,0.0,-1.0,0.0,0.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-554.0,0.0,-1.0,0.0,0.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-653.0,0.0,-1.0,0.0,0.0],[524,0.0,1.0,-654.0,0.0,-1.0,0.0,0.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,2.85,-803.0,0.0,-1.0,0.0,0.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-853.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-903.0,0.0,-1.0,0.0,0.0],[524,19.9,34.05,-910.41,0.0,0.0,0.0,1.0],[524,-20.0,34.05,-939.56,0.0,-1.0,0.0,0.0],[524,19.9,34.05,-950.41,0.0,0.0,0.0,1.0],[524,0.0,0.0,-953.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-953.0,0.0,0.0,0.0,1.0],[524,19.9,34.05,-970.41,0.0,0.0,0.0,1.0],[524,-20.0,34.05,-982.38,0.0,-1.0,0.0,0.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1053.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-1053.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-1153.0,0.0,-1.0,0.0,0.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,2.5,-1203.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1253.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1353.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1453.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1553.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1653.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1753.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1853.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-1953.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-2053.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-2108.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-2153.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,-2253.0,0.0,-1.0,0.0,0.0],[524,0.0,2.5,-2303.0,0.0,-1.0,0.0,0.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2353.0,0.0,0.0,0.0,1.0],[524,0.0,21.5,-2403.5,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2453.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2453.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2553.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2553.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2653.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2653.0,0.0,0.0,0.0,1.0],[524,2.0,8.0,-2673.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-2703.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-2703.0,0.0,-1.0,0.0,0.0],[524,-2.0,8.0,-2728.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2753.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2753.0,0.0,0.0,0.0,1.0],[524,10.78,0.0,-2802.81,0.0,-1.0,0.0,0.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2853.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2853.0,0.0,0.0,0.0,1.0],[524,10.84,31.0,-2853.05,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,12.5,-2903.5,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,10.83,27.81,-2951.77,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2953.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2953.0,0.0,0.0,0.0,1.0],[524,10.78,0.0,-3002.81,0.0,-1.0,0.0,0.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3053.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3053.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3153.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3153.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3253.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3253.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3353.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,-1.5,-3403.0,0.0,0.0,0.0,1.0],[524,-10.0,18.0,-3452.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3453.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3453.0,0.0,0.0,0.0,1.0],[524,-10.0,0.0,-3503.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3553.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3553.0,0.0,0.0,0.0,1.0],[524,1200.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,3.0,-3603.0,0.0,0.0,0.0,1.0],[524,0.0,3.0,-3653.0,0.0,0.0,0.0,1.0],[524,0.0,3.0,-3703.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-3753.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3853.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3853.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3953.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3953.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3978.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-4053.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-4153.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-4253.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-4353.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-4453.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-4553.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-4653.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-4753.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-4853.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-4928.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-4978.0,0.0,-1.0,0.0,0.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-5078.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-5078.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-5178.0,0.0,-1.0,0.0,0.0],[524,0.0,1.0,-5278.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-5378.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-5478.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-5578.0,0.0,0.0,0.0,1.0],[524,-8.99,1.0,-5611.02,0.0,0.0,0.0,1.0],[524,0.0,1.0,-5678.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-5778.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-5838.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-5878.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-5978.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-6116.0,0.0,-1.0,0.0,0.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-6128.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-6140.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-6278.0,0.0,-1.0,0.0,0.0],[524,0.0,1.0,-6378.0,0.0,-1.0,0.0,0.0],[524,-10.0,1.0,-6448.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-6478.0,0.0,-1.0,0.0,0.0],[524,0.0,1.0,-6578.0,0.0,-1.0,0.0,0.0],[524,5.0,1.0,-6613.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-6678.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-6773.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,20.0,34.0,-6843.0,0.0,0.0,0.0,1.0],[524,-19.71,34.0,-6855.95,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-6873.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-6873.0,0.0,0.0,0.0,1.0],[524,-19.71,34.0,-6875.95,0.0,-1.0,0.0,0.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,20.0,34.0,-6886.0,0.0,0.0,0.0,1.0],[524,-19.71,34.0,-6915.95,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-6923.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-6973.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-6973.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-7173.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-7223.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-7298.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-7398.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-7498.0,0.0,0.0,0.0,1.0],[524,0.0,2.85,-7023.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-7598.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-8323.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-7698.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-8223.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-7798.0,0.0,0.0,0.0,1.0],[524,0.0,13.5,-7836.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-7898.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-7998.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-8073.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-8123.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-10223.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-10223.0,0.0,0.0,0.0,1.0],[524,10.0,0.1,-10315.5,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-10323.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-10323.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-10473.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-10473.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-10423.0,0.0,0.0,0.0,1.0],[524,7.0,-9.9,-10693.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-10653.0,0.0,0.0,0.0,1.0],[524,7.0,20.1,-10648.0,0.0,-1.0,0.0,0.0],[524,7.0,7.0,-10642.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-10623.0,0.0,0.0,0.0,1.0],[524,7.0,-9.9,-10603.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-10593.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-10573.0,0.0,0.0,0.0,1.0],[524,10.0,20.1,-10887.7,0.0,-1.0,0.0,0.0],[524,7.0,0.0,-10773.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-10773.0,0.0,0.0,0.0,1.0],[524,-39.0,3.5,-10907.0,0.0,0.70711,0.0,0.70711],[524,10.0,0.1,-11010.2,0.0,0.0,0.0,1.0],[524,0.0,0.0,-10923.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-10923.0,0.0,0.0,0.0,1.0],[524,13.01,0.0,-10909.82,0.0,0.0,0.0,1.0],[524,-3.99,0.0,-10909.82,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11023.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11223.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11223.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11223.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11123.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11123.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11023.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11273.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11348.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11448.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-11523.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-11573.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-11673.0,0.0,0.0,0.0,1.0],[524,-25.0,0.0,-11748.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11773.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11773.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,-11773.0,0.0,0.0,0.0,1.0],[524,-25.0,0.0,-11798.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-11873.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11873.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11973.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11973.0,0.0,0.0,0.0,1.0],[524,25.0,0.0,-12048.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12073.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12073.0,0.0,0.0,0.0,1.0],[524,10.0,1.0,-12073.0,0.0,-1.0,0.0,0.0],[524,25.0,0.0,-12098.0,0.0,-1.0,0.0,0.0],[524,25.0,0.0,-12148.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12173.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12173.0,0.0,0.0,0.0,1.0],[524,10.0,1.0,-12173.0,0.0,-1.0,0.0,0.0],[524,25.0,0.0,-12198.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-12273.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12273.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12373.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12373.0,0.0,0.0,0.0,1.0],[524,8.0,10.0,-12373.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-12473.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12473.0,0.0,0.0,0.0,1.0],[524,64.05,0.06,-12475.62,0.0,-1.0,0.0,0.0],[524,-54.05,0.06,-12510.38,0.0,0.0,0.0,1.0],[524,64.05,0.06,-12525.62,0.0,-1.0,0.0,0.0],[524,-54.05,0.06,-12560.38,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12563.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12663.0,0.0,0.0,0.0,1.0],[524,2.0,10.0,-12663.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12763.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12863.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,-12933.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12963.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,-12988.0,0.0,0.0,0.0,1.0],[524,-5.0,7.0,-13013.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,-13033.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-13063.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-13163.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,-13188.0,0.0,0.0,0.0,1.0],[524,0.0,7.0,-13213.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,-13238.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-13263.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,-13278.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-13363.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-13463.0,0.0,0.0,0.0,1.0],[524,12.0,1.0,-13488.0,0.0,0.0,0.0,1.0],[524,0.0,385.0,0.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-13563.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,22.0,12.0,-13588.0,0.0,0.0,0.0,1.0],[524,30.0,0.0,-13613.0,0.0,0.0,0.0,1.0],[524,15.0,1.0,-13638.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-13663.0,0.0,0.0,0.0,1.0],[524,15.0,1.0,-13673.0,0.0,0.0,0.0,1.0],[524,30.0,0.0,-13703.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-13763.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-13863.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-13963.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-14063.0,0.0,0.0,0.0,1.0],[524,10.0,1.0,-14088.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-14163.0,0.0,0.0,0.0,1.0],[524,-10.0,1.0,-14198.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-14263.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-14338.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-14363.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-14388.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-14463.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-14518.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-14563.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-14588.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-14663.0,0.0,-1.0,0.0,0.0],[524,-98.05,0.06,-14675.38,0.0,0.0,0.0,1.0],[524,-98.05,0.06,-14695.38,0.0,0.0,0.0,1.0],[524,0.0,0.0,-14763.0,0.0,0.0,0.0,1.0],[524,-25.0,0.0,-14778.0,0.0,0.0,0.0,1.0],[524,-4.84,1.0,-14821.25,0.0,-1.0,0.0,0.0],[524,-15.0,5.0,-14783.0,0.0,-1.0,0.0,0.0],[524,-15.0,5.0,-14843.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-14863.0,0.0,0.0,0.0,1.0],[524,-25.0,0.0,-14848.0,0.0,-1.0,0.0,0.0],[524,0.0,1.0,-15063.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-15063.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,-15188.0,0.0,0.0,0.0,1.0],[524,5.0,-8.0,-15298.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,2.85,-7123.0,0.0,-1.0,0.0,0.0],[524,0.0,2.85,-703.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-10023.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-9923.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-9823.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-9723.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-9623.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-9523.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-9423.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-9323.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-9223.0,0.0,0.0,0.0,1.0],[524,0.0,-2.0,-9123.0,0.0,0.0,0.0,1.0]]},{"key":"trough","name":"-- Ares' Armpits --","noart":51,"i":[[524,-55.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,40.0,45.25,3989.98,0.0,0.0,0.0,1.0],[524,50.0,0.0,150.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,120.0,0.0,1.0,0.0,0.0],[524,-55.0,-59.5,3181.0,0.0,1.0,0.0,0.0],[524,-29.74,26.22,5000.0,0.0,0.0,0.0,1.0],[524,50.0,0.0,250.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,220.0,0.0,0.0,0.0,1.0],[524,50.0,0.0,350.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,340.0,0.0,1.0,0.0,0.0],[524,0.0,385.0,5000.0,0.0,-1.0,0.0,0.0],[524,50.0,0.0,450.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,440.0,0.0,0.0,0.0,1.0],[524,50.0,0.0,550.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,560.0,0.0,1.0,0.0,0.0],[524,50.0,0.0,650.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,660.0,0.0,0.0,0.0,1.0],[524,50.0,0.0,750.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,780.0,0.0,1.0,0.0,0.0],[524,50.0,0.0,850.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,5000.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,880.0,0.0,0.0,0.0,1.0],[524,50.0,0.0,950.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,1000.0,0.0,1.0,0.0,0.0],[524,0.0,5.0,5000.0,0.0,0.0,0.0,1.0],[524,50.0,0.0,1050.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,450.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,50.0,0.0,0.0,0.0,1.0],[524,40.0,-99.5,3451.0,0.0,0.0,0.0,1.0],[524,-55.0,-15.0,1306.0,0.0,1.0,0.0,0.0],[524,-10.0,31.0,500.0,0.0,0.0,0.0,1.0],[524,10.02,18.18,5000.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,400.0,0.0,0.0,0.0,1.0],[524,-55.0,-59.5,2781.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,550.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,350.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,5000.0,0.0,0.0,0.0,1.0],[524,-55.0,-35.0,1506.0,0.0,1.0,0.0,0.0],[524,50.0,0.0,-100.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,550.0,0.0,0.0,0.0,1.0],[524,50.0,0.0,-250.0,0.0,0.0,0.0,1.0],[524,30.0,81.0,100.0,0.0,0.70711,0.0,0.70711],[524,-10.0,31.0,450.0,0.0,0.0,0.0,1.0],[524,-30.0,81.0,100.0,0.0,0.70711,0.0,0.70711],[524,0.0,31.0,250.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,300.0,0.0,0.0,0.0,1.0],[524,-30.0,81.0,194.0,0.0,0.70711,0.0,0.70711],[524,90.0,81.0,100.0,0.0,0.70711,0.0,0.70711],[524,-10.0,31.0,350.0,0.0,0.0,0.0,1.0],[524,50.0,0.0,-350.0,0.0,0.0,0.0,1.0],[524,-90.0,81.0,100.0,0.0,0.70711,0.0,0.70711],[524,90.0,81.0,194.0,0.0,0.70711,0.0,0.70711],[524,50.0,0.0,-450.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,150.0,0.0,0.0,0.0,1.0],[524,-90.0,81.0,194.0,0.0,0.70711,0.0,0.70711],[524,1200.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,90.0,81.0,288.0,0.0,0.70711,0.0,0.70711],[524,30.0,81.0,288.0,0.0,0.70711,0.0,0.70711],[524,-30.0,81.0,288.0,0.0,0.70711,0.0,0.70711],[524,50.0,0.0,-550.0,0.0,0.0,0.0,1.0],[524,30.0,81.0,382.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,860.0,0.0,0.70711,0.0,0.70711],[524,50.0,0.0,-650.0,0.0,0.0,0.0,1.0],[524,-30.0,81.0,382.0,0.0,0.70711,0.0,0.70711],[524,0.0,31.0,200.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,-100.0,0.0,0.0,0.0,1.0],[524,90.0,81.0,382.0,0.0,0.70711,0.0,0.70711],[524,50.0,0.0,-750.0,0.0,0.0,0.0,1.0],[524,50.0,0.0,-950.0,0.0,0.0,0.0,1.0],[524,50.0,0.0,-1100.0,0.0,0.0,0.0,1.0],[524,-130.0,35.0,860.0,0.0,0.70711,0.0,0.70711],[524,1.0,49.0,5000.0,0.0,0.0,0.0,1.0],[524,4.98,6.27,5000.0,0.0,0.0,0.0,1.0],[524,1.0,49.0,5000.0,0.0,0.0,0.0,1.0],[524,1.0,49.0,5000.0,0.0,0.0,0.0,1.0],[524,130.0,58.0,100.0,0.0,0.70711,0.0,0.70711],[524,0.0,31.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,8000.0,0.0,0.0,0.0,1.0],[524,-130.0,58.0,385.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,290.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,195.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,100.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,575.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,480.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,670.0,0.0,0.70711,0.0,0.70711],[524,-97.5,67.0,471.5,0.0,0.0,0.0,1.0],[524,-97.5,67.0,661.5,0.0,0.0,0.0,1.0],[524,-97.5,67.0,186.5,0.0,0.0,0.0,1.0],[524,20.0,-99.5,3451.0,0.0,0.0,0.0,1.0],[524,-97.5,67.0,376.5,0.0,0.0,0.0,1.0],[524,-97.5,67.0,281.5,0.0,0.0,0.0,1.0],[524,-97.5,67.0,5000.0,0.0,0.0,0.0,1.0],[524,-97.5,67.0,756.5,0.0,0.0,0.0,1.0],[524,-97.5,67.0,566.5,0.0,0.0,0.0,1.0],[524,5.0,-104.5,3556.0,0.0,0.0,0.0,1.0],[524,-97.5,67.0,851.5,0.0,0.0,0.0,1.0],[524,-130.0,58.0,765.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,100.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,765.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,195.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,100.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,195.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,195.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,290.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,290.0,0.0,0.70711,0.0,0.70711],[524,0.0,5.0,5000.0,0.0,0.0,0.0,1.0],[524,10.83,27.81,5000.0,0.0,0.0,0.0,1.0],[524,130.0,35.0,290.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,385.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,860.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,480.0,0.0,0.70711,0.0,0.70711],[524,50.0,0.0,-750.0,0.0,0.0,0.0,1.0],[524,50.0,0.0,-850.0,0.0,0.0,0.0,1.0],[524,130.0,58.0,385.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,575.0,0.0,0.70711,0.0,0.70711],[524,-14.15,18.18,5000.0,0.0,-1.0,0.0,0.0],[524,130.0,35.0,385.0,0.0,0.70711,0.0,0.70711],[524,50.0,0.0,-950.0,0.0,0.0,0.0,1.0],[524,-130.0,35.0,670.0,0.0,0.70711,0.0,0.70711],[524,-55.0,0.5,1206.0,0.0,1.0,0.0,0.0],[524,-30.0,81.0,476.0,0.0,0.70711,0.0,0.70711],[524,30.0,81.0,476.0,0.0,0.70711,0.0,0.70711],[524,-90.0,81.0,476.0,0.0,0.70711,0.0,0.70711],[524,90.0,81.0,476.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,480.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,480.0,0.0,0.70711,0.0,0.70711],[524,12.51,3.84,5000.0,0.0,0.0,0.0,1.0],[524,130.0,58.0,575.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,575.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,670.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,670.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,765.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,765.0,0.0,0.70711,0.0,0.70711],[524,0.0,5.0,5000.0,0.0,0.0,0.0,1.0],[524,-90.0,81.0,382.0,0.0,0.70711,0.0,0.70711],[524,-90.0,81.0,288.0,0.0,0.70711,0.0,0.70711],[524,0.0,1.0,5000.0,0.0,-1.0,0.0,0.0],[524,130.0,35.0,860.0,0.0,0.70711,0.0,0.70711],[524,90.0,81.0,570.0,0.0,0.70711,0.0,0.70711],[524,-90.0,81.0,570.0,0.0,0.70711,0.0,0.70711],[524,30.0,81.0,570.0,0.0,0.70711,0.0,0.70711],[524,-30.0,81.0,570.0,0.0,0.70711,0.0,0.70711],[524,90.0,81.0,664.0,0.0,0.70711,0.0,0.70711],[524,-90.0,81.0,664.0,0.0,0.70711,0.0,0.70711],[524,30.0,81.0,664.0,0.0,0.70711,0.0,0.70711],[524,-30.0,81.0,664.0,0.0,0.70711,0.0,0.70711],[524,90.0,81.0,758.0,0.0,0.70711,0.0,0.70711],[524,-90.0,81.0,758.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,5000.0,0.0,-1.0,0.0,0.0],[524,10.0,10.0,5000.0,0.0,0.0,0.0,1.0],[524,30.0,81.0,758.0,0.0,0.70711,0.0,0.70711],[524,-30.0,81.0,758.0,0.0,0.70711,0.0,0.70711],[524,-30.0,81.0,852.0,0.0,0.70711,0.0,0.70711],[524,30.0,81.0,852.0,0.0,0.70711,0.0,0.70711],[524,-90.0,81.0,852.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,90.0,81.0,852.0,0.0,0.70711,0.0,0.70711],[524,-97.5,67.0,91.5,0.0,0.0,0.0,1.0],[524,-30.0,81.0,946.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,186.5,0.0,0.0,0.0,1.0],[524,30.0,81.0,946.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,471.5,0.0,0.0,0.0,1.0],[524,-90.0,81.0,946.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,281.5,0.0,0.0,0.0,1.0],[524,90.0,81.0,946.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,566.5,0.0,0.0,0.0,1.0],[524,-30.0,81.0,6.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,376.5,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,30.0,81.0,6.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,661.5,0.0,0.0,0.0,1.0],[524,-90.0,81.0,6.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,756.5,0.0,0.0,0.0,1.0],[524,90.0,81.0,6.0,0.0,0.70711,0.0,0.70711],[524,4.73,6.18,5000.0,0.0,0.0,0.0,1.0],[524,-40.0,0.0,-950.0,0.0,0.0,0.0,1.0],[524,97.5,68.0,851.5,0.0,0.0,0.0,1.0],[524,-55.0,-25.0,1356.0,0.0,0.0,0.0,1.0],[524,97.5,68.0,91.5,0.0,0.0,0.0,1.0],[524,-43.0,-27.5,1256.0,0.0,0.70711,0.0,0.70711],[524,-67.0,-27.5,1256.0,0.0,0.70711,0.0,0.70711],[524,-55.0,-15.0,1256.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,-55.0,0.25,1106.5,0.0,0.0,0.0,1.0],[524,-10.0,31.0,-100.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,250.0,0.0,0.0,0.0,1.0],[524,-55.0,-56.75,1631.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,600.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,200.0,0.0,0.0,0.0,1.0],[524,-55.0,-60.5,2131.0,0.0,-1.0,0.0,0.0],[524,-10.0,31.0,600.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,150.0,0.0,0.0,0.0,1.0],[524,130.0,35.0,955.0,0.0,0.70711,0.0,0.70711],[524,-55.0,-60.5,2031.0,0.0,-1.0,0.0,0.0],[524,0.0,31.0,650.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,2.5,5000.0,0.0,-1.0,0.0,0.0],[524,-55.0,2.5,2031.0,0.0,0.0,-1.0,0.0],[524,-130.0,58.0,955.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,955.0,0.0,0.70711,0.0,0.70711],[524,-10.0,31.0,650.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,50.0,0.0,0.0,0.0,1.0],[524,-55.0,-59.5,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,40.0,88.0,5000.0,0.0,-1.0,0.0,0.0],[524,0.0,31.0,700.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,0.0,0.0,0.0,0.0,1.0],[524,-55.0,2.5,2031.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,700.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,750.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,750.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,800.0,0.0,0.0,0.0,1.0],[524,130.0,58.0,955.0,0.0,0.70711,0.0,0.70711],[524,-10.0,31.0,800.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,850.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,1100.0,0.0,0.0,0.0,1.0],[524,-55.0,-25.0,1406.0,0.0,1.0,0.0,0.0],[524,-55.0,-35.0,1456.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,-220.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,-320.0,0.0,1.0,0.0,0.0],[524,-55.0,0.0,-440.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,-540.0,0.0,1.0,0.0,0.0],[524,90.0,81.0,-88.0,0.0,0.70711,0.0,0.70711],[524,-55.0,0.0,-660.0,0.0,0.0,0.0,1.0],[524,-90.0,81.0,-88.0,0.0,0.70711,0.0,0.70711],[524,30.0,81.0,-88.0,0.0,0.70711,0.0,0.70711],[524,-55.0,0.0,-760.0,0.0,1.0,0.0,0.0],[524,-30.0,81.0,-88.0,0.0,0.70711,0.0,0.70711],[524,-55.0,0.0,-880.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,-980.0,0.0,1.0,0.0,0.0],[524,-30.0,81.0,-182.0,0.0,0.70711,0.0,0.70711],[524,-10.0,31.0,-50.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,-50.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,-150.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,-150.0,0.0,0.0,0.0,1.0],[524,50.0,0.0,50.0,0.0,0.0,0.0,1.0],[524,-55.0,0.0,-100.0,0.0,1.0,0.0,0.0],[524,-10.0,31.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,-200.0,0.0,0.0,0.0,1.0],[524,-55.0,-45.0,1606.0,0.0,1.0,0.0,0.0],[524,-90.0,35.0,5000.0,0.0,-0.70711,0.0,0.70711],[524,90.0,35.0,5000.0,0.0,-0.70711,0.0,0.70711],[524,-90.0,58.0,5000.0,0.0,-0.70711,0.0,0.70711],[524,-55.0,-59.5,1706.0,0.0,0.0,0.0,1.0],[524,-55.0,-59.5,1981.0,0.0,0.0,0.0,1.0],[524,90.0,58.0,5000.0,0.0,-0.70711,0.0,0.70711],[524,-55.0,-59.5,1806.0,0.0,0.0,0.0,1.0],[524,57.5,68.0,5000.0,0.0,0.0,0.0,1.0],[524,-57.5,67.0,5000.0,0.0,0.0,0.0,1.0],[524,-55.0,-145.0,5000.0,0.0,1.0,0.0,0.0],[524,-55.0,-155.0,5000.0,0.0,1.0,0.0,0.0],[524,30.0,81.0,-182.0,0.0,0.70711,0.0,0.70711],[524,-55.0,-45.0,1556.0,0.0,0.0,0.0,1.0],[524,-55.0,-55.0,5000.0,0.0,0.0,0.0,1.0],[524,-55.0,-65.0,5000.0,0.0,0.0,0.0,1.0],[524,-55.0,-75.0,5000.0,0.0,0.0,0.0,1.0],[524,-55.0,-55.25,1656.0,0.0,0.0,0.0,1.0],[524,-90.0,81.0,-182.0,0.0,0.70711,0.0,0.70711],[524,-55.0,-59.5,1906.0,0.0,0.0,0.0,1.0],[524,90.0,60.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,-90.0,60.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,-55.0,-59.5,1806.0,0.0,1.0,0.0,0.0],[524,30.0,60.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,-30.0,60.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,-55.0,-155.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,1000.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,1150.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,1150.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,1200.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,1200.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,1250.0,0.0,0.0,0.0,1.0],[524,-30.0,81.0,-276.0,0.0,0.70711,0.0,0.70711],[524,0.0,31.0,1250.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,1300.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,1300.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,1350.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,1350.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,5000.0,0.0,0.0,0.0,1.0],[524,97.5,68.0,946.5,0.0,0.0,0.0,1.0],[524,-97.5,67.0,946.5,0.0,0.0,0.0,1.0],[524,130.0,35.0,1050.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,1050.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,1050.0,0.0,0.70711,0.0,0.70711],[524,30.0,81.0,-276.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,1050.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,1041.5,0.0,0.0,0.0,1.0],[524,-97.5,67.0,1041.5,0.0,0.0,0.0,1.0],[524,130.0,35.0,1145.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,1145.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,1145.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,1145.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,1136.5,0.0,0.0,0.0,1.0],[524,-90.0,81.0,-276.0,0.0,0.70711,0.0,0.70711],[524,-97.5,67.0,1136.5,0.0,0.0,0.0,1.0],[524,90.0,81.0,-276.0,0.0,0.70711,0.0,0.70711],[524,-97.5,67.0,1231.5,0.0,0.0,0.0,1.0],[524,97.5,68.0,1231.5,0.0,0.0,0.0,1.0],[524,-30.0,81.0,-370.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,1240.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,1240.0,0.0,0.70711,0.0,0.70711],[524,30.0,81.0,-370.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,1240.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,1240.0,0.0,0.70711,0.0,0.70711],[524,-97.5,67.0,1231.5,0.0,0.0,0.0,1.0],[524,-90.0,81.0,-370.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,1231.5,0.0,0.0,0.0,1.0],[524,130.0,58.0,1240.0,0.0,0.70711,0.0,0.70711],[524,90.0,81.0,-370.0,0.0,0.70711,0.0,0.70711],[524,90.0,81.0,-464.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,1240.0,0.0,0.70711,0.0,0.70711],[524,-90.0,81.0,-464.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,1240.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,1240.0,0.0,0.70711,0.0,0.70711],[524,-90.0,-25.0,1981.0,0.0,1.0,0.0,0.0],[524,-55.0,-57.5,2131.0,0.0,0.0,0.0,1.0],[524,-55.0,-40.0,5000.0,0.0,1.0,0.0,0.0],[524,-55.0,-78.25,1981.0,0.0,0.0,0.0,1.0],[524,30.0,81.0,-464.0,0.0,0.70711,0.0,0.70711],[524,-55.0,-78.25,2081.0,0.0,0.0,0.0,1.0],[524,-55.0,-78.25,2181.0,0.0,0.0,0.0,1.0],[524,-55.0,-78.25,2281.0,0.0,0.0,0.0,1.0],[524,-30.0,81.0,-464.0,0.0,0.70711,0.0,0.70711],[524,-90.0,81.0,-558.0,0.0,0.70711,0.0,0.70711],[524,-55.0,-40.0,5000.0,0.70711,0.70711,0.0,0.0],[524,-55.0,-40.0,5000.0,0.70711,0.70711,0.0,0.0],[524,-55.0,-78.25,2681.0,0.0,0.0,0.0,1.0],[524,-55.0,-78.25,2581.0,0.0,0.0,0.0,1.0],[524,-55.0,-78.25,2481.0,0.0,0.0,0.0,1.0],[524,90.0,81.0,-558.0,0.0,0.70711,0.0,0.70711],[524,-55.0,-78.25,2381.0,0.0,0.0,0.0,1.0],[524,-55.0,-59.5,2881.0,0.0,0.0,0.0,1.0],[524,-55.0,-59.5,2981.0,0.0,0.0,0.0,1.0],[524,-30.0,81.0,-558.0,0.0,0.70711,0.0,0.70711],[524,-55.0,-59.5,3081.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,30.0,81.0,-558.0,0.0,0.70711,0.0,0.70711],[524,-30.0,39.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,0.0,-1.5,5000.0,0.0,0.0,0.0,1.0],[524,30.0,39.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,-90.0,39.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,90.0,39.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,90.0,18.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,-90.0,18.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,30.0,18.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,-30.0,18.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,90.0,-3.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,-90.0,-3.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,30.0,-3.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,-30.0,-3.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,-250.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,-250.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,-300.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,-350.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,-350.0,0.0,0.0,0.0,1.0],[524,-55.0,2.5,2131.0,-1.0,0.0,0.0,0.0],[524,-55.0,2.5,2131.0,0.0,0.0,-1.0,0.0],[524,-90.0,81.0,-652.0,0.0,0.70711,0.0,0.70711],[524,-55.0,-60.5,2131.0,0.0,-1.0,0.0,0.0],[524,-55.0,-60.5,2231.0,0.0,-1.0,0.0,0.0],[524,-55.0,-59.0,2025.0,0.0,0.0,0.0,1.0],[524,-55.0,3.0,2231.0,-1.0,0.0,0.0,0.0],[524,-30.0,81.0,-652.0,0.0,0.70711,0.0,0.70711],[524,-55.0,-60.5,5000.0,0.0,-1.0,0.0,0.0],[524,30.0,81.0,-652.0,0.0,0.70711,0.0,0.70711],[524,-55.0,-60.5,2331.0,0.0,-1.0,0.0,0.0],[524,-55.0,2.5,2331.0,0.0,0.0,-1.0,0.0],[524,-55.0,3.0,2331.0,-1.0,0.0,0.0,0.0],[524,-55.0,-60.5,2431.0,0.0,-1.0,0.0,0.0],[524,90.0,81.0,-652.0,0.0,0.70711,0.0,0.70711],[524,-55.0,-60.5,2431.0,0.0,-1.0,0.0,0.0],[524,-55.0,2.5,2431.0,0.0,0.0,-1.0,0.0],[524,-55.0,2.5,2431.0,-1.0,0.0,0.0,0.0],[524,-55.0,2.5,2531.0,-1.0,0.0,0.0,0.0],[524,-55.0,2.5,2531.0,0.0,0.0,-1.0,0.0],[524,-55.0,-60.5,2531.0,0.0,-1.0,0.0,0.0],[524,-55.0,-60.5,2531.0,0.0,-1.0,0.0,0.0],[524,-55.0,-60.5,2631.0,0.0,-1.0,0.0,0.0],[524,-55.0,-60.5,2631.0,0.0,-1.0,0.0,0.0],[524,-90.0,81.0,-746.0,0.0,0.70711,0.0,0.70711],[524,90.0,81.0,-746.0,0.0,0.70711,0.0,0.70711],[524,-30.0,81.0,-746.0,0.0,0.70711,0.0,0.70711],[524,-55.0,2.5,2631.0,0.0,0.0,-1.0,0.0],[524,-55.0,2.5,2631.0,-1.0,0.0,0.0,0.0],[524,-55.0,2.5,2731.0,0.0,0.0,-1.0,0.0],[524,-55.0,-59.5,2706.0,0.0,1.0,0.0,0.0],[524,30.0,81.0,-746.0,0.0,0.70711,0.0,0.70711],[524,-90.0,-23.0,2676.0,0.0,1.0,0.0,0.0],[524,-15.0,-104.5,3556.0,0.0,-1.0,0.0,0.0],[524,-15.0,-59.5,3226.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,-90.0,81.0,-840.0,0.0,0.70711,0.0,0.70711],[524,90.0,81.0,-840.0,0.0,0.70711,0.0,0.70711],[524,-30.0,-24.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,30.0,-24.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,-90.0,-24.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,90.0,-24.0,-1042.0,0.0,-0.70711,0.0,0.70711],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,-30.0,81.0,-840.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,30.0,81.0,-840.0,0.0,0.70711,0.0,0.70711],[524,90.0,81.0,-934.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,-90.0,81.0,-934.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,30.0,81.0,-934.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,-30.0,81.0,-934.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,5.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,5.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,5.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,5.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,-3.5,0.0,0.0,0.0,1.0],[524,-97.5,67.0,-3.5,0.0,0.0,0.0,1.0],[524,130.0,35.0,-90.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,-90.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,-90.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,-90.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,-98.5,0.0,0.0,0.0,1.0],[524,-97.5,67.0,-98.5,0.0,0.0,0.0,1.0],[524,130.0,35.0,-185.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,-185.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,-185.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,-185.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,-193.5,0.0,0.0,0.0,1.0],[524,-97.5,67.0,-193.5,0.0,0.0,0.0,1.0],[524,130.0,35.0,-280.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,-280.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,-280.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,-280.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,-288.5,0.0,0.0,0.0,1.0],[524,-97.5,67.0,-288.5,0.0,0.0,0.0,1.0],[524,-130.0,35.0,-375.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,-375.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,-375.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,-375.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,-383.5,0.0,0.0,0.0,1.0],[524,-97.5,67.0,-383.5,0.0,0.0,0.0,1.0],[524,-130.0,35.0,-470.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,-470.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,-470.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,-470.0,0.0,0.70711,0.0,0.70711],[524,97.5,68.0,-478.5,0.0,0.0,0.0,1.0],[524,-97.5,67.0,-478.5,0.0,0.0,0.0,1.0],[524,-97.5,67.0,5000.0,0.0,0.0,0.0,1.0],[524,97.5,68.0,5000.0,0.0,0.0,0.0,1.0],[524,130.0,58.0,-1040.0,0.0,0.70711,0.0,0.70711],[524,-130.0,58.0,-1040.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,-1040.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,-1040.0,0.0,0.70711,0.0,0.70711],[524,-97.5,67.0,-953.5,0.0,0.0,0.0,1.0],[524,97.5,68.0,-953.5,0.0,0.0,0.0,1.0],[524,-130.0,58.0,-945.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,-945.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,-945.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,-945.0,0.0,0.70711,0.0,0.70711],[524,-97.5,67.0,-858.5,0.0,0.0,0.0,1.0],[524,97.5,68.0,-858.5,0.0,0.0,0.0,1.0],[524,-130.0,58.0,-850.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,-850.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,-850.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,-850.0,0.0,0.70711,0.0,0.70711],[524,-97.5,67.0,-763.5,0.0,0.0,0.0,1.0],[524,97.5,68.0,-763.5,0.0,0.0,0.0,1.0],[524,-130.0,58.0,-755.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,-755.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,-755.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,-755.0,0.0,0.70711,0.0,0.70711],[524,-97.5,67.0,-668.5,0.0,0.0,0.0,1.0],[524,97.5,68.0,-668.5,0.0,0.0,0.0,1.0],[524,-130.0,58.0,-660.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,-660.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,-660.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,-660.0,0.0,0.70711,0.0,0.70711],[524,-97.5,67.0,-573.5,0.0,0.0,0.0,1.0],[524,97.5,68.0,-573.5,0.0,0.0,0.0,1.0],[524,-130.0,58.0,-565.0,0.0,0.70711,0.0,0.70711],[524,-130.0,35.0,-565.0,0.0,0.70711,0.0,0.70711],[524,130.0,58.0,-565.0,0.0,0.70711,0.0,0.70711],[524,130.0,35.0,-565.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,30.0,81.0,-1028.0,0.0,0.70711,0.0,0.70711],[524,-30.0,81.0,-1028.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,90.0,81.0,-1028.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,-90.0,81.0,-1028.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,-30.0,81.0,-1122.0,0.0,0.70711,0.0,0.70711],[524,30.0,81.0,-1122.0,0.0,0.70711,0.0,0.70711],[524,-90.0,81.0,-1122.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,90.0,81.0,-1122.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,8000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,5.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,10.78,0.0,5000.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,-8.15,18.18,5000.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,26.92,25.16,5000.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,5000.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,1050.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,1050.0,0.0,0.0,0.0,1.0],[524,0.0,31.0,1100.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,5000.0,0.0,0.0,0.0,1.0],[524,-10.0,31.0,1100.0,0.0,0.0,0.0,1.0]]},{"key":"demoderb","name":"-- Arena (Large) --","noart":17,"i":[[524,-1000.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,-1000.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,-900.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,-900.0,0.0,0.0,0.0,1.0],[524,700.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,-800.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,900.0,0.0,0.0,0.0,1.0],[524,300.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,1200.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,-400.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,800.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,900.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,1000.0,0.0,800.0,0.0,0.70711,0.0,0.70711],[524,-1000.0,0.0,900.0,0.0,0.70711,0.0,0.70711],[524,-900.0,0.0,900.0,0.0,0.70711,0.0,0.70711],[524,-800.0,0.0,900.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,900.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,900.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,900.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,900.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,900.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,900.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,900.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,900.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,900.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,900.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,900.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,900.0,0.0,0.70711,0.0,0.70711]]},{"key":"arena","name":"-- Arena (Small) --","noart":17,"i":[[524,700.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-700.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-600.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-500.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-400.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-300.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-200.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,-100.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,0.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,100.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,200.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,300.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,400.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,500.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,600.0,0.0,0.70711,0.0,0.70711],[524,700.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,600.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,500.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,400.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,300.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,200.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,100.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-100.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-200.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-300.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-500.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-600.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-700.0,0.0,700.0,0.0,0.70711,0.0,0.70711],[524,-700.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,-700.0,0.0,0.0,0.0,1.0],[524,-700.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,-600.0,0.0,0.0,0.0,1.0],[524,-700.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,-500.0,0.0,0.0,0.0,1.0],[524,-700.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,-400.0,0.0,0.0,0.0,1.0],[524,-700.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,-300.0,0.0,0.0,0.0,1.0],[524,-700.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,-200.0,0.0,0.0,0.0,1.0],[524,-700.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,-100.0,0.0,0.0,0.0,1.0],[524,-700.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,0.0,0.0,0.0,0.0,1.0],[524,-700.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,100.0,0.0,0.0,0.0,1.0],[524,-700.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,200.0,0.0,0.0,0.0,1.0],[524,-700.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,300.0,0.0,0.0,0.0,1.0],[524,-700.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,400.0,0.0,0.0,0.0,1.0],[524,-700.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,500.0,0.0,0.0,0.0,1.0],[524,-700.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,600.0,0.0,0.0,0.0,1.0],[524,-700.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,-600.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,-500.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,-400.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,-300.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,-200.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,-100.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,0.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,100.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,200.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,300.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,400.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,500.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,600.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,700.0,55.0,700.0,0.0,0.0,0.0,1.0],[524,-775.0,8.0,-730.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,-730.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,-730.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,-730.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,-643.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,-643.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,-635.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,-635.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,-635.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,-635.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,-548.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,-548.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,-540.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,-540.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,-540.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,-540.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,-453.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,-453.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,-445.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,-445.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,-445.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,-445.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,-358.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,-358.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,-350.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,-350.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,-350.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,-350.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,-263.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,-263.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,-255.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,-255.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,-255.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,-255.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,-168.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,-168.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,-160.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,-160.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,-160.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,-160.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,-73.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,-73.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,-65.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,-65.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,-65.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,-65.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,21.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,21.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,30.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,30.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,30.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,30.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,116.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,116.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,125.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,125.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,125.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,125.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,211.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,211.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,220.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,220.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,220.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,220.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,306.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,306.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,315.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,315.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,315.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,315.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,401.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,401.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,410.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,410.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,410.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,410.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,496.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,496.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,505.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,505.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,505.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,505.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,591.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,591.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,600.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,600.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,600.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,600.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,686.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,686.5,0.0,0.0,0.0,1.0],[524,-775.0,8.0,695.0,0.0,0.70711,0.0,0.70711],[524,-775.0,31.0,695.0,0.0,0.70711,0.0,0.70711],[524,775.0,8.0,695.0,0.0,0.70711,0.0,0.70711],[524,775.0,31.0,695.0,0.0,0.70711,0.0,0.70711],[524,741.75,45.0,781.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,781.5,0.0,0.0,0.0,1.0],[524,-755.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,-755.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,-660.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,-660.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,-565.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,-565.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,-470.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,-470.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,-375.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,-375.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,-280.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,-280.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,-185.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,-185.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,-90.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,-90.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,90.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,90.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,185.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,185.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,280.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,280.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,375.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,375.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,470.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,470.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,565.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,565.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,660.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,660.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,1000.0,31.0,1000.0,0.0,1.0,0.0,0.0],[524,1000.0,8.0,1000.0,0.0,1.0,0.0,0.0],[524,-5.0,8.0,-750.0,0.0,1.0,0.0,0.0],[524,-5.0,31.0,-750.0,0.0,1.0,0.0,0.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,81.5,45.0,-716.5,0.0,0.0,0.0,1.0],[524,176.5,45.0,-716.5,0.0,0.0,0.0,1.0],[524,271.5,45.0,-716.5,0.0,0.0,0.0,1.0],[524,366.5,45.0,-716.5,0.0,0.0,0.0,1.0],[524,461.5,45.0,-716.5,0.0,0.0,0.0,1.0],[524,556.5,45.0,-716.5,0.0,0.0,0.0,1.0],[524,651.5,45.0,-716.5,0.0,0.0,0.0,1.0],[524,741.75,45.0,-716.5,0.0,0.0,0.0,1.0],[524,-97.5,45.0,-716.5,0.0,0.0,0.0,1.0],[524,-192.5,45.0,-716.5,0.0,0.0,0.0,1.0],[524,-287.5,45.0,-716.5,0.0,0.0,0.0,1.0],[524,-382.5,45.0,-716.5,0.0,0.0,0.0,1.0],[524,-477.5,45.0,-716.5,0.0,0.0,0.0,1.0],[524,-572.5,45.0,-716.5,0.0,0.0,0.0,1.0],[524,-667.5,45.0,-716.5,0.0,0.0,0.0,1.0],[524,-741.75,45.0,-716.5,0.0,0.0,0.0,1.0],[524,-10.0,50.5,-716.0,0.0,0.0,0.0,1.0],[524,-10.0,21.0,-716.0,0.0,0.0,0.0,1.0],[524,0.0,50.5,-716.0,0.0,0.0,0.0,1.0],[524,0.0,21.0,-716.0,0.0,0.0,0.0,1.0],[524,10.0,50.5,-716.0,0.0,0.0,0.0,1.0],[524,10.0,21.0,-716.0,0.0,0.0,0.0,1.0],[524,10.0,21.0,716.0,0.0,0.0,0.0,1.0],[524,10.0,50.5,716.0,0.0,0.0,0.0,1.0],[524,0.0,21.0,716.0,0.0,0.0,0.0,1.0],[524,0.0,50.5,716.0,0.0,0.0,0.0,1.0],[524,-10.0,21.0,716.0,0.0,0.0,0.0,1.0],[524,-10.0,50.5,716.0,0.0,0.0,0.0,1.0],[524,-741.75,45.0,716.5,0.0,0.0,0.0,1.0],[524,-667.5,45.0,716.5,0.0,0.0,0.0,1.0],[524,-572.5,45.0,716.5,0.0,0.0,0.0,1.0],[524,-477.5,45.0,716.5,0.0,0.0,0.0,1.0],[524,-382.5,45.0,716.5,0.0,0.0,0.0,1.0],[524,-287.5,45.0,716.5,0.0,0.0,0.0,1.0],[524,-192.5,45.0,716.5,0.0,0.0,0.0,1.0],[524,-97.5,45.0,716.5,0.0,0.0,0.0,1.0],[524,741.75,45.0,716.5,0.0,0.0,0.0,1.0],[524,651.5,45.0,716.5,0.0,0.0,0.0,1.0],[524,556.5,45.0,716.5,0.0,0.0,0.0,1.0],[524,461.5,45.0,716.5,0.0,0.0,0.0,1.0],[524,366.5,45.0,716.5,0.0,0.0,0.0,1.0],[524,271.5,45.0,716.5,0.0,0.0,0.0,1.0],[524,176.5,45.0,716.5,0.0,0.0,0.0,1.0],[524,81.5,45.0,716.5,0.0,0.0,0.0,1.0],[524,-5.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,-5.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,660.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,660.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,565.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,565.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,470.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,470.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,375.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,375.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,280.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,280.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,185.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,185.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,90.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,90.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,-90.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,-90.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,-185.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,-185.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,-280.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,-280.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,-375.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,-375.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,-470.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,-470.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,-565.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,-565.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,-660.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,-660.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,-755.0,31.0,750.0,0.0,1.0,0.0,0.0],[524,-755.0,8.0,750.0,0.0,1.0,0.0,0.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,1000.0,0.0,1000.0,0.0,0.0,0.0,1.0]]},{"key":"rpweekend2014","name":"-- Zaxxis --","noart":17,"i":[[524,0.0,2.0,-2330.0,0.0,0.0,0.0,1.0],[524,-51.0,72.0,-2293.0,0.65328,0.2706,-0.2706,0.65328],[524,-51.0,122.0,-2293.0,0.65328,0.2706,-0.2706,0.65328],[524,51.0,72.0,-2293.0,0.65328,-0.2706,0.2706,0.65328],[524,51.0,122.0,-2293.0,0.65328,-0.2706,0.2706,0.65328],[524,0.0,72.0,-2270.0,-0.70711,0.0,0.0,0.70711],[524,100.0,2.0,-2230.0,0.0,0.0,0.0,1.0],[524,-100.0,2.0,-2230.0,0.0,0.0,0.0,1.0],[524,0.0,2.0,-2230.0,0.0,0.0,0.0,1.0],[524,0.0,22.0,-2230.0,0.0,0.0,0.0,1.0],[524,-92.8,72.0,-2222.8,-0.65328,0.2706,0.2706,0.65328],[524,92.8,72.0,-2222.8,0.2706,0.65328,-0.65328,0.2706],[524,163.0,72.0,-2181.0,0.65328,-0.2706,0.2706,0.65328],[524,163.0,122.0,-2181.0,0.65328,-0.2706,0.2706,0.65328],[524,-163.0,72.0,-2181.0,0.65328,0.2706,-0.2706,0.65328],[524,-163.0,122.0,-2181.0,0.65328,0.2706,-0.2706,0.65328],[524,0.0,22.0,-2145.0,0.0,0.70711,0.0,0.70711],[524,-15.0,22.0,-2130.0,0.0,-1.0,0.0,0.0],[524,15.0,22.0,-2130.0,0.0,0.0,0.0,1.0],[524,200.0,2.0,-2130.0,0.0,0.0,0.0,1.0],[524,-300.0,2.0,-2130.0,0.0,0.0,0.0,1.0],[524,-200.0,2.0,-2130.0,0.0,0.0,0.0,1.0],[524,100.0,2.0,-2130.0,0.0,0.0,0.0,1.0],[524,-100.0,2.0,-2130.0,0.0,0.0,0.0,1.0],[524,0.0,2.0,-2130.0,0.0,0.0,0.0,1.0],[524,0.0,22.0,-2130.0,0.0,0.0,0.0,1.0],[524,0.0,57.0,-2130.0,0.0,0.0,0.0,1.0],[524,0.0,22.0,-2130.0,0.0,-1.0,0.0,0.0],[524,140.0,72.0,-2130.0,0.5,0.5,-0.5,0.5],[524,-140.0,72.0,-2130.0,-0.5,0.5,0.5,0.5],[524,0.0,22.0,-2115.0,0.0,-0.70711,0.0,0.70711],[524,163.0,72.0,-2079.0,-0.65328,0.2706,0.2706,0.65328],[524,163.0,22.0,-2079.0,-0.65328,0.2706,0.2706,0.65328],[524,-163.0,72.0,-2079.0,-0.65328,-0.2706,-0.2706,0.65328],[524,-163.0,22.0,-2079.0,-0.65328,-0.2706,-0.2706,0.65328],[524,-92.8,72.0,-2037.2,-0.2706,0.65328,0.65328,0.2706],[524,92.8,72.0,-2037.2,0.65328,0.2706,-0.2706,0.65328],[524,100.0,2.0,-2030.0,0.0,0.0,0.0,1.0],[524,-100.0,2.0,-2030.0,0.0,0.0,0.0,1.0],[524,0.0,2.0,-2030.0,0.0,0.0,0.0,1.0],[524,45.0,26.0,-1995.0,0.0,0.0,0.0,1.0],[524,-45.0,26.0,-1995.0,0.0,0.0,0.0,1.0],[524,45.0,21.0,-1995.0,0.0,-1.0,0.0,0.0],[524,-45.0,21.0,-1995.0,0.0,-1.0,0.0,0.0],[524,-72.0,37.5,-1994.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-72.0,93.5,-1994.2,-0.2706,-0.65328,-0.65328,0.2706],[524,72.0,37.5,-1994.2,0.65328,-0.2706,0.2706,0.65328],[524,72.0,93.5,-1994.2,0.65328,-0.2706,0.2706,0.65328],[524,0.0,82.0,-1990.0,0.5,0.5,0.5,0.5],[524,-65.0,37.5,-1987.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-65.0,93.5,-1987.2,-0.2706,-0.65328,-0.65328,0.2706],[524,65.0,37.5,-1987.2,0.65328,-0.2706,0.2706,0.65328],[524,65.0,93.5,-1987.2,0.65328,-0.2706,0.2706,0.65328],[524,-58.0,37.5,-1980.2,-0.2706,-0.65328,-0.65328,0.2706],[524,-58.0,93.5,-1980.2,-0.2706,-0.65328,-0.65328,0.2706],[524,58.0,37.5,-1980.2,0.65328,-0.2706,0.2706,0.65328],[524,58.0,93.5,-1980.2,0.65328,-0.2706,0.2706,0.65328],[524,-70.0,-18.0,-1960.0,-0.70711,0.0,0.0,0.70711],[524,70.0,-18.0,-1960.0,-0.70711,0.0,0.0,0.70711],[524,0.0,1.0,-1930.0,0.0,0.0,0.0,1.0],[524,0.0,22.0,-1880.0,0.0,0.0,0.0,1.0],[524,0.0,20.0,-1805.0,0.0,0.0,0.0,1.0],[524,0.0,19.5,-1755.0,0.0,0.0,0.0,1.0],[524,0.0,16.0,-1720.0,0.0,0.0,0.0,1.0],[524,0.0,16.0,-1620.0,0.0,0.0,0.0,1.0],[524,0.0,16.9,-1575.0,0.0,0.0,0.0,1.0],[524,0.0,16.0,-1545.0,0.0,0.0,0.0,1.0],[524,0.0,16.9,-1475.0,0.0,0.0,0.0,1.0],[524,0.0,17.0,-1475.0,0.0,-1.0,0.0,0.0],[524,0.0,16.9,-1375.0,0.0,0.0,0.0,1.0],[524,0.0,17.0,-1375.0,0.0,0.0,0.0,1.0],[524,0.0,16.0,-1250.0,0.0,0.0,0.0,1.0],[524,0.0,17.0,-1250.0,0.0,0.0,0.0,1.0],[524,0.0,16.0,-1150.0,0.0,0.0,0.0,1.0],[524,0.0,16.0,-1100.0,0.0,-1.0,0.0,0.0],[524,0.0,16.0,-1100.0,0.0,0.0,0.0,1.0],[524,0.0,18.0,-1050.0,0.0,-1.0,0.0,0.0],[524,25.0,18.0,-1015.0,0.0,-1.0,0.0,0.0],[524,-25.0,18.0,-1015.0,0.0,0.0,0.0,1.0],[524,0.0,18.0,-950.0,0.0,0.0,0.0,1.0],[524,12.0,18.0,-910.0,0.0,0.0,0.0,1.0],[524,-12.0,18.0,-910.0,0.0,0.0,0.0,1.0],[524,10.0,18.0,-890.0,0.0,0.0,0.0,1.0],[524,-10.0,18.0,-890.0,0.0,0.0,0.0,1.0],[524,-20.0,18.0,-860.0,0.0,0.0,0.0,1.0],[524,-20.0,18.0,-860.0,0.0,0.0,0.0,1.0],[524,0.0,18.0,-850.0,0.0,0.0,0.0,1.0],[524,18.0,18.0,-800.0,0.0,0.0,0.0,1.0],[524,-18.0,18.0,-800.0,0.0,0.0,0.0,1.0],[524,0.0,18.0,-750.0,0.0,0.0,0.0,1.0],[524,0.0,18.0,-650.0,0.0,0.0,0.0,1.0],[524,0.0,-8.0,-600.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,-600.0,0.0,0.0,0.0,1.0],[524,35.0,18.0,-570.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,-570.0,0.0,0.0,0.0,1.0],[524,12.0,-15.0,-550.0,0.0,0.0,0.0,1.0],[524,-22.0,-15.0,-550.0,0.0,-1.0,0.0,0.0],[524,-5.0,-12.0,-530.0,0.0,-1.0,0.0,0.0],[524,0.0,-8.0,-500.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,-500.0,0.0,0.0,0.0,1.0],[524,35.0,18.0,-490.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,-490.0,0.0,0.0,0.0,1.0],[524,35.0,18.0,-410.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,-410.0,0.0,0.0,0.0,1.0],[524,0.0,-8.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,-400.0,0.0,0.0,0.0,1.0],[524,17.0,-5.0,-350.0,0.0,-1.0,0.0,0.0],[524,35.0,18.0,-330.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,-330.0,0.0,0.0,0.0,1.0],[524,0.0,-8.0,-300.0,0.0,0.0,0.0,1.0],[524,-22.0,-5.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,-300.0,0.0,0.0,0.0,1.0],[524,17.0,-5.0,-250.0,0.0,-1.0,0.0,0.0],[524,35.0,18.0,-250.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,-250.0,0.0,0.0,0.0,1.0],[524,0.0,-8.0,-200.0,0.0,0.0,0.0,1.0],[524,-22.0,-5.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,-200.0,0.0,0.0,0.0,1.0],[524,35.0,18.0,-170.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,-170.0,0.0,0.0,0.0,1.0],[524,17.0,-5.0,-150.0,0.0,-1.0,0.0,0.0],[524,0.0,-8.0,-100.0,0.0,0.0,0.0,1.0],[524,-22.0,-5.0,-100.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,-100.0,0.0,0.0,0.0,1.0],[524,35.0,18.0,-90.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,-90.0,0.0,0.0,0.0,1.0],[524,35.0,18.0,-10.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,-10.0,0.0,0.0,0.0,1.0],[524,0.0,-8.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,0.0,0.0,0.0,0.0,1.0],[524,35.0,18.0,70.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,70.0,0.0,0.0,0.0,1.0],[524,0.0,-8.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,100.0,0.0,0.0,0.0,1.0],[524,35.0,18.0,150.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,150.0,0.0,0.0,0.0,1.0],[524,0.0,-8.0,200.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,200.0,0.0,0.0,0.0,1.0],[524,35.0,18.0,230.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,230.0,0.0,0.0,0.0,1.0],[524,0.0,-8.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,300.0,0.0,0.0,0.0,1.0],[524,35.0,18.0,310.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,310.0,0.0,0.0,0.0,1.0],[524,35.0,18.0,390.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,390.0,0.0,0.0,0.0,1.0],[524,0.0,-8.0,400.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,400.0,0.0,0.0,0.0,1.0],[524,63.0,-12.0,430.0,0.0,-0.70711,0.0,0.70711],[524,35.0,18.0,470.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,470.0,0.0,0.0,0.0,1.0],[524,63.0,-12.0,490.0,0.0,-0.70711,0.0,0.70711],[524,0.0,-8.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,500.0,0.0,0.0,0.0,1.0],[524,6.0,-20.0,530.0,0.0,0.0,0.0,1.0],[524,-12.0,-20.0,530.0,0.0,0.0,0.0,1.0],[524,63.0,-12.0,550.0,0.0,-0.70711,0.0,0.70711],[524,35.0,18.0,550.0,0.0,0.0,0.0,1.0],[524,25.0,18.0,550.0,0.0,0.0,0.0,1.0],[524,30.0,19.0,595.0,0.0,0.0,0.0,1.0],[524,0.0,-8.0,600.0,0.0,0.0,0.0,1.0],[524,0.0,-25.0,600.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,650.0,0.0,-1.0,0.0,0.0],[524,-25.0,10.0,685.0,0.0,0.0,0.0,1.0],[524,25.0,10.0,685.0,0.0,-1.0,0.0,0.0],[524,0.0,10.0,750.0,0.0,0.0,0.0,1.0],[524,6.0,10.0,775.0,0.0,0.0,0.0,1.0],[524,-13.0,10.0,795.0,0.0,0.0,0.0,1.0],[524,7.0,10.0,795.0,0.0,0.0,0.0,1.0],[524,-12.0,10.0,815.0,0.0,0.0,0.0,1.0],[524,8.0,10.0,815.0,0.0,0.0,0.0,1.0],[524,-11.0,10.0,835.0,0.0,0.0,0.0,1.0],[524,9.0,10.0,835.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,850.0,0.0,0.0,0.0,1.0],[524,-10.0,10.0,855.0,0.0,0.0,0.0,1.0],[524,10.0,10.0,855.0,0.0,0.0,0.0,1.0],[524,-9.0,10.0,875.0,0.0,0.0,0.0,1.0],[524,11.0,10.0,875.0,0.0,0.0,0.0,1.0],[524,-8.0,10.0,895.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,950.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,1000.0,0.0,0.0,-1.0,0.0],[524,25.0,10.0,1015.0,0.0,-1.0,0.0,0.0],[524,-25.0,10.0,1015.0,0.0,0.0,0.0,1.0],[524,0.0,10.0,1050.0,0.0,0.0,0.0,1.0],[524,0.0,7.5,1100.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,1100.0,0.0,0.0,-1.0,0.0],[524,0.0,4.0,1150.0,0.0,0.0,0.0,1.0],[524,0.0,8.0,1150.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,1200.0,0.0,0.0,-1.0,0.0],[524,0.0,4.0,1250.0,0.0,0.0,0.0,1.0],[524,0.0,4.0,1250.0,0.0,0.0,0.0,1.0],[524,0.0,5.5,1300.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,1300.0,0.0,0.0,-1.0,0.0],[524,0.0,4.0,1350.0,0.0,0.0,0.0,1.0],[524,0.0,4.0,1350.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,1400.0,0.0,0.0,-1.0,0.0],[524,-14.0,-4.0,1425.0,0.0,0.0,0.0,1.0],[524,0.0,4.0,1450.0,0.0,0.0,0.0,1.0],[524,0.0,4.0,1450.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,1500.0,0.0,0.0,-1.0,0.0],[524,0.0,4.0,1550.0,0.0,0.0,0.0,1.0],[524,0.0,4.0,1550.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,1600.0,0.0,0.0,-1.0,0.0],[524,0.0,6.0,1650.0,0.0,0.0,0.0,1.0],[524,0.0,4.0,1650.0,0.0,0.0,0.0,1.0],[524,0.0,6.0,1700.0,0.0,-1.0,0.0,0.0],[524,0.0,61.0,1700.0,0.0,0.0,-1.0,0.0],[524,0.0,61.0,1800.0,0.0,0.0,-1.0,0.0],[524,0.0,6.0,1800.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,1900.0,0.0,0.0,-1.0,0.0],[524,0.0,6.0,2000.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,2000.0,0.0,0.0,-1.0,0.0],[524,0.0,61.0,2100.0,0.0,0.0,-1.0,0.0],[524,0.0,6.0,2200.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,2200.0,0.0,0.0,-1.0,0.0],[524,0.0,6.2,2250.0,0.0,0.0,0.0,1.0],[524,0.0,6.0,2300.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,2300.0,0.0,0.0,-1.0,0.0],[524,0.0,6.2,2350.0,0.0,0.0,0.0,1.0],[524,0.0,6.0,2350.0,0.0,0.0,0.0,1.0],[524,15.0,-15.0,2400.0,0.0,-1.0,0.0,0.0],[524,10.0,12.0,2400.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,2400.0,0.0,0.0,-1.0,0.0],[524,0.0,6.2,2450.0,0.0,0.0,0.0,1.0],[524,0.0,6.0,2450.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,2500.0,0.0,0.0,-1.0,0.0],[524,0.0,6.2,2550.0,0.0,0.0,0.0,1.0],[524,0.0,6.0,2550.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,2600.0,0.0,0.0,-1.0,0.0],[524,0.0,6.0,2650.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,2700.0,0.0,0.0,-1.0,0.0],[524,0.0,6.0,2750.0,0.0,0.0,0.0,1.0],[524,0.0,61.0,2800.0,0.0,0.0,-1.0,0.0],[524,0.0,57.0,2900.0,-1.0,0.0,0.0,0.0],[524,0.0,61.0,2900.0,0.0,0.0,-1.0,0.0],[524,0.0,6.0,2950.0,0.0,-1.0,0.0,0.0],[524,0.0,7.0,2950.0,0.0,0.0,0.0,1.0],[524,0.0,7.0,3050.0,0.0,0.0,0.0,1.0],[524,0.0,7.0,3150.0,0.0,-1.0,0.0,0.0],[524,0.0,7.0,3250.0,0.0,0.0,0.0,1.0],[524,0.0,7.0,3350.0,0.0,0.0,0.0,1.0],[524,0.0,7.0,3585.0,0.0,0.0,0.0,1.0],[524,0.0,7.0,3475.0,0.0,-1.0,0.0,0.0],[524,-20.0,-26.0,25.0,0.0,0.0,0.0,1.0],[524,90.0,240.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,3000.0,0.0,0.0,0.0,0.0,0.0,1.0]]}],"palette":["#000000","#00bfbf","#4f4f4f","#0000bf","#00bf00","#bf6b6b","#9700bf","#bf0000","#bfbfbf","#cbab00","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#000087","#433323","#870700","#234b23","#730700","#272727","#3b3b3b","#272727","#730700","#232377","#000000","#000000","#000000","#000000","#000000","#000000","#000000","#000000","#000000","#4b8753","#1b1b1b","#002323","#5b5b5b","#8f83ff","#878787","#131313","#4b3f37","#ff0000","#00afaf","#4b4b4b","#004700","#000000","#9f9f9f","#8f8f8f","#bf9300","#a70b00","#3b3bc3","#1f3773","#535353","#071323","#232323","#000000","#000000","#00ffff","#afafaf","#0000ff","#00ff00","#ff8f8f","#cb00ff","#ff0000","#ffffff","#f7ff00","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ffffc7","#bf0000","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#d70000","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#000000","#00bfbf","#4f4f4f","#0000bf","#00bf00","#bf6b6b","#9700bf","#bf0000","#bfbfbf","#cbab00","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#7f0000","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff0000","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#000000","#007f7f","#434343","#00007f","#007f00","#7f4747","#67007f","#7f0000","#7f7f7f","#977f00","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#bf0000","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#d70000","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ffffff"],"staticColor":60,"background":0,"screen":[448,416]}</script>
|
|
<script>'use strict';
|
|
const DATA = JSON.parse(document.getElementById('data').textContent);
|
|
const cv = document.getElementById('view');
|
|
const ctx = cv.getContext('2d');
|
|
|
|
// ---------------------------------------------------------------- state
|
|
const S = {
|
|
track: 0,
|
|
cx: 0, cz: 0, // view centre, world units
|
|
mpp: 10, // meters per pixel - the engine's own scale term
|
|
gps: false, // false = NavDisplay (LOD follows zoom), true = GPS
|
|
yaw: 0, // map heading, radians. NavDisplay takes the
|
|
// vehicle's; 0 is the map with +Z straight up.
|
|
stats: {},
|
|
};
|
|
|
|
// The engine's own projection, and it is not the obvious one.
|
|
// L4GaugeImagePrimitive::Draw plots MoveToAbsolute(dest->x, dest->z) - so
|
|
// the screen axes are view-space X and Z - and the graphics view puts its
|
|
// origin at the bottom left with Y increasing UP (BackgroundLine draws
|
|
// bottomLeft -> topRight, and the port's zero-degree blit is documented
|
|
// with the origin at the bottom left corner). So on the map +X runs RIGHT
|
|
// and +Z runs UP. Canvas y grows downward, hence the single negation.
|
|
//
|
|
// NavDisplay also inverts the viewer's transform before scaling, taking
|
|
// yaw only unless rockAndRoll is set - the map turns with the vehicle and
|
|
// is centred on it. Free panning with yaw 0 is the north-up case.
|
|
function toScreen(x, z, w, h) {
|
|
const dx = x - S.cx, dz = z - S.cz;
|
|
const c = Math.cos(S.yaw), s = Math.sin(S.yaw);
|
|
return [w / 2 + (dx * c - dz * s) / S.mpp,
|
|
h / 2 - (dx * s + dz * c) / S.mpp];
|
|
}
|
|
|
|
// Quaternion (x,y,z,w) applied to a point - MUNGA's own convention.
|
|
function rotate(q, p) {
|
|
const [qx, qy, qz, qw] = q, [x, y, z] = p;
|
|
const tx = 2 * (qy * z - qz * y);
|
|
const ty = 2 * (qz * x - qx * z);
|
|
const tz = 2 * (qx * y - qy * x);
|
|
return [x + qw * tx + qy * tz - qz * ty,
|
|
y + qw * ty + qz * tx - qx * tz,
|
|
z + qw * tz + qx * ty - qy * tx];
|
|
}
|
|
|
|
// The map screen is not a phosphor display. Primitives carry palette
|
|
// indices and the palette is the one the port was configured with -
|
|
// secpal.pcc for the pod's secondary screen, where the nav display lives.
|
|
// Walls (index 51) are grey. L4GaugeImage::Draw only overrides the colour
|
|
// when it is non-zero, so 0 means "keep what is set", which is the
|
|
// display's own staticColor (0x3C).
|
|
function ink(c) {
|
|
return DATA.palette[c ? c : DATA.staticColor] || '#535353';
|
|
}
|
|
|
|
// ------------------------------------------------------------- bounds
|
|
function bounds(list) {
|
|
let x0 = Infinity, x1 = -Infinity, z0 = Infinity, z1 = -Infinity;
|
|
for (const r of list) {
|
|
if (r[1] < x0) x0 = r[1];
|
|
if (r[1] > x1) x1 = r[1];
|
|
if (r[3] < z0) z0 = r[3];
|
|
if (r[3] > z1) z1 = r[3];
|
|
}
|
|
return list.length ? {x0, x1, z0, z1} : {x0: -1, x1: 1, z0: -1, z1: 1};
|
|
}
|
|
|
|
// Fourteen tracks park a single piece far off the course; fitting to
|
|
// everything squeezes the track into a sliver, so "fit" ignores loners
|
|
// and "fit all" (A) is there when you want the literal extent.
|
|
function course(t) {
|
|
if (t._course) return t._course;
|
|
const keep = t.i.filter(a =>
|
|
t.i.some(b => b !== a && (b[1] - a[1]) ** 2 + (b[3] - a[3]) ** 2 < 200 * 200));
|
|
return (t._course = keep.length ? keep : t.i);
|
|
}
|
|
|
|
function fit(all) {
|
|
const t = DATA.tracks[S.track];
|
|
const b = bounds(all ? t.i : course(t));
|
|
S.cx = (b.x0 + b.x1) / 2;
|
|
S.cz = (b.z0 + b.z1) / 2;
|
|
const w = cv.clientWidth || 800, h = cv.clientHeight || 600;
|
|
// The GPS gauge allows 1.2x "for large objects at edges of map"
|
|
// (RPL4GAUG.cpp:2060); same here so nothing clips at the border.
|
|
S.mpp = Math.max((b.x1 - b.x0) / w, (b.z1 - b.z0) / h, 1e-4) * 1.2;
|
|
draw();
|
|
}
|
|
|
|
// -------------------------------------------------------------- render
|
|
function draw() {
|
|
const dpr = window.devicePixelRatio || 1;
|
|
const w = cv.clientWidth, h = cv.clientHeight;
|
|
if (cv.width !== Math.round(w * dpr) || cv.height !== Math.round(h * dpr)) {
|
|
cv.width = Math.round(w * dpr);
|
|
cv.height = Math.round(h * dpr);
|
|
}
|
|
ctx.setTransform(dpr, 0, 0, dpr, 0, 0);
|
|
ctx.clearRect(0, 0, w, h);
|
|
|
|
const t = DATA.tracks[S.track];
|
|
// NavDisplay sets LODIndex = metersPerPixel every time it recalculates
|
|
// bounds. The GPS gauge takes its LOD from the config and never moves it.
|
|
const lodValue = S.gps ? 1.0 : S.mpp;
|
|
let drawn = 0, culled = 0, prims = 0;
|
|
|
|
ctx.lineWidth = 1;
|
|
ctx.lineJoin = 'round';
|
|
for (const r of t.i) {
|
|
const img = DATA.images[r[0]];
|
|
if (!img) { culled++; continue; }
|
|
|
|
// L4GaugeImage::Draw - scales ascend, so index 0 is the FINEST, and
|
|
// running past the largest means the object is not drawn at all.
|
|
let k = 0;
|
|
while (k < img.l.length && lodValue > img.l[k].s) k++;
|
|
if (k >= img.l.length) { culled++; continue; }
|
|
drawn++;
|
|
|
|
const q = [r[4], r[5], r[6], r[7]];
|
|
for (const p of img.l[k].p) {
|
|
ctx.strokeStyle = ink(p.c);
|
|
ctx.beginPath();
|
|
for (let n = 0; n < p.i.length; n++) {
|
|
let v = img.v[p.i[n]];
|
|
if (!v) continue;
|
|
// attributeUnscaled: pre-multiply by the scale factor so the
|
|
// primitive keeps a constant size on screen (L4GAUIMA.cpp:1599).
|
|
if (p.a & 1) v = [v[0] * S.mpp, v[1] * S.mpp, v[2] * S.mpp];
|
|
const g = rotate(q, v);
|
|
const [sx, sy] = toScreen(g[0] + r[1], g[2] + r[3], w, h);
|
|
n ? ctx.lineTo(sx, sy) : ctx.moveTo(sx, sy);
|
|
}
|
|
ctx.stroke();
|
|
prims++;
|
|
}
|
|
}
|
|
S.stats = {drawn, culled, prims, lodValue};
|
|
hud();
|
|
}
|
|
|
|
// ----------------------------------------------------------------- hud
|
|
function hud() {
|
|
const t = DATA.tracks[S.track];
|
|
const s = S.stats;
|
|
const px = 1 / S.mpp;
|
|
document.getElementById('name').textContent = t.name;
|
|
document.getElementById('key').textContent =
|
|
t.key + ' ' + (S.track + 1) + '/' + DATA.tracks.length;
|
|
const rows = [
|
|
['mode', S.gps ? 'GPS (LOD pinned 1.0)' : 'NavDisplay (LOD = m/px)'],
|
|
['metersPerPixel', S.mpp.toFixed(3)],
|
|
['pixelsPerMeter', px.toFixed(4)],
|
|
['LOD value', s.lodValue.toFixed(3)],
|
|
['centre X / Z', S.cx.toFixed(0) + ' / ' + S.cz.toFixed(0)],
|
|
['heading', (((S.yaw * 180 / Math.PI) % 360 + 360) % 360).toFixed(0) + '°'],
|
|
['objects drawn', s.drawn],
|
|
['dropped by LOD', s.culled],
|
|
['primitives', s.prims],
|
|
['no map art', t.noart],
|
|
];
|
|
document.getElementById('stats').innerHTML = rows.map(
|
|
r => '<dt>' + r[0] + '</dt><dd>' + r[1] + '</dd>').join('');
|
|
|
|
// Scale bar: a round number of meters, whatever fits under 160px.
|
|
let m = Math.pow(10, Math.floor(Math.log10(160 * S.mpp)));
|
|
for (const f of [5, 2, 1]) if (m * f <= 160 * S.mpp) { m *= f; break; }
|
|
document.getElementById('barline').style.width = (m / S.mpp) + 'px';
|
|
document.getElementById('bartext').textContent = m + ' m';
|
|
}
|
|
|
|
// ------------------------------------------------------------ controls
|
|
// Pan in what you see, not in world axes: with the map turned, "up" has
|
|
// to stay up. Screen delta rotated back out through the heading.
|
|
function pan(sx, sy) {
|
|
const step = 0.1 * Math.min(cv.clientWidth, cv.clientHeight) * S.mpp;
|
|
const c = Math.cos(S.yaw), s = Math.sin(S.yaw);
|
|
S.cx += (sx * c + sy * s) * step;
|
|
S.cz += (-sx * s + sy * c) * step;
|
|
draw();
|
|
}
|
|
|
|
function zoom(f) {
|
|
S.mpp = Math.max(0.02, Math.min(4000, S.mpp * f));
|
|
draw();
|
|
}
|
|
|
|
function pick(n) {
|
|
S.track = (n + DATA.tracks.length) % DATA.tracks.length;
|
|
document.getElementById('track').value = S.track;
|
|
fit(false);
|
|
}
|
|
|
|
addEventListener('keydown', e => {
|
|
if (e.target.tagName === 'SELECT') return;
|
|
const k = e.key;
|
|
// Screen directions: right is +X and up is +Z when the heading is zero.
|
|
if (k === 'ArrowUp') pan(0, 1);
|
|
else if (k === 'ArrowDown') pan(0, -1);
|
|
else if (k === 'ArrowLeft') pan(-1, 0);
|
|
else if (k === 'ArrowRight') pan(1, 0);
|
|
else if (k === 'q' || k === 'Q') { S.yaw -= Math.PI / 12; draw(); }
|
|
else if (k === 'e' || k === 'E') { S.yaw += Math.PI / 12; draw(); }
|
|
else if (k === 'r' || k === 'R') { S.yaw = 0; draw(); }
|
|
else if (k === '+' || k === '=') zoom(1 / 1.25);
|
|
else if (k === '-' || k === '_') zoom(1.25);
|
|
else if (k === '[') pick(S.track - 1);
|
|
else if (k === ']') pick(S.track + 1);
|
|
else if (k === 'f' || k === 'F') fit(false);
|
|
else if (k === 'a' || k === 'A') fit(true);
|
|
else if (k === 'g' || k === 'G') { S.gps = !S.gps; draw(); }
|
|
else return;
|
|
e.preventDefault();
|
|
});
|
|
|
|
let drag = null;
|
|
cv.addEventListener('pointerdown', e => {
|
|
drag = {x: e.clientX, y: e.clientY};
|
|
cv.setPointerCapture(e.pointerId);
|
|
});
|
|
cv.addEventListener('pointermove', e => {
|
|
if (!drag) return;
|
|
const dx = (e.clientX - drag.x) * S.mpp, dy = (e.clientY - drag.y) * S.mpp;
|
|
const c = Math.cos(S.yaw), s = Math.sin(S.yaw);
|
|
S.cx -= dx * c - dy * s;
|
|
S.cz -= -dx * s - dy * c;
|
|
drag = {x: e.clientX, y: e.clientY};
|
|
draw();
|
|
});
|
|
cv.addEventListener('pointerup', () => { drag = null; });
|
|
cv.addEventListener('wheel', e => {
|
|
e.preventDefault();
|
|
zoom(e.deltaY > 0 ? 1.1 : 1 / 1.1);
|
|
}, {passive: false});
|
|
|
|
const sel = document.getElementById('track');
|
|
sel.innerHTML = DATA.tracks.map(
|
|
(t, i) => '<option value="' + i + '">' + t.name + '</option>').join('');
|
|
sel.addEventListener('change', () => pick(+sel.value));
|
|
addEventListener('resize', draw);
|
|
pick(0);
|
|
</script>
|
|
</body>
|
|
</html>
|